Tabnine Logo
Processor.getTrackControls
Code IndexAdd Tabnine to your IDE (free)

How to use
getTrackControls
method
in
javax.media.Processor

Best Java code snippets using javax.media.Processor.getTrackControls (Showing top 17 results out of 315)

origin: igniterealtime/Smack

TrackControl[] tracks = processor.getTrackControls();
origin: jitsi/libjitsi

TrackControl[] trackControls = processor.getTrackControls();
origin: jitsi/libjitsi

TrackControl[] tcs = player.getTrackControls();
origin: jitsi/libjitsi

for (TrackControl trackControl : processor.getTrackControls())
origin: jitsi/libjitsi

TrackControl tcs[] = processor.getTrackControls();
origin: jitsi/libjitsi

for (TrackControl track : processor.getTrackControls())
origin: jitsi/libjitsi

TrackControl tcs[] = player.getTrackControls();
origin: jitsi/libjitsi

/**
 * Gets the JMF <tt>Format</tt> in which this instance captures media.
 *
 * @return the JMF <tt>Format</tt> in which this instance captures media.
 */
public Format getProcessorFormat()
{
  Processor processor = getProcessor();
  if ((processor != null)
      && (this.processor == processor)
      && !processorIsPrematurelyClosed)
  {
    MediaType mediaType = getMediaType();
    for (TrackControl trackControl : processor.getTrackControls())
    {
      if (!trackControl.isEnabled())
        continue;
      Format jmfFormat = trackControl.getFormat();
      MediaType type
        = (jmfFormat instanceof VideoFormat)
          ? MediaType.VIDEO
          : MediaType.AUDIO;
      if (mediaType.equals(type))
        return jmfFormat;
    }
  }
  return null;
}
origin: jitsi/libjitsi

  throw new IOException("Couldn't configure transcoding processor.");
TrackControl[] trackControls = processor.getTrackControls();
origin: jitsi/libjitsi

TrackControl[] trackControls = player.getTrackControls();
SwScale playerScaler = null;
origin: jitsi/libjitsi

TrackControl[] trackControls = player.getTrackControls();
origin: jitsi/libjitsi

if (p != null)
  for (TrackControl tc : p.getTrackControls())
origin: org.igniterealtime.smack/smack-jingle

TrackControl[] tracks = processor.getTrackControls();
origin: org.igniterealtime.smack/smackx-jingle

TrackControl[] tracks = processor.getTrackControls();
origin: jitsi/libjitsi

for (TrackControl track : processor.getTrackControls())
origin: jitsi/libjitsi

  MediaFormatImpl<? extends Format> mediaFormat)
TrackControl[] trackControls = processor.getTrackControls();
MediaType mediaType = getMediaType();
Format format = mediaFormat.getFormat();
origin: jitsi/libjitsi

TrackControl[] trackControls = player.getTrackControls();
javax.mediaProcessorgetTrackControls

Popular methods of Processor

  • getDataOutput
  • addControllerListener
  • close
  • configure
  • getState
  • realize
  • setContentDescriptor
  • start
  • stop
  • getControl
  • deallocate
  • removeControllerListener
  • deallocate,
  • removeControllerListener

Popular in Java

  • Parsing JSON documents to java classes using gson
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • putExtra (Intent)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • Runner (org.openjdk.jmh.runner)
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now