Uses of Class
org.gstreamer.Bin

Packages that use Bin
org.gstreamer   
org.gstreamer.elements   
org.gstreamer.lowlevel   
 

Uses of Bin in org.gstreamer
 

Subclasses of Bin in org.gstreamer
 class Pipeline
          A Pipeline is a special Bin used as the toplevel container for the filter graph.
 

Methods in org.gstreamer with parameters of type Bin
 void Bin.ELEMENT_ADDED.elementAdded(Bin bin, Element element)
          Called when an Element is added to a Bin
 void Bin.ELEMENT_REMOVED.elementRemoved(Bin bin, Element element)
          Called when an Element is removed from a Bin
 

Uses of Bin in org.gstreamer.elements
 

Subclasses of Bin in org.gstreamer.elements
 class DecodeBin
          Utility Element to automatically identify media stream types and hook up elements.
 class PlayBin
          Playbin provides a stand-alone everything-in-one abstraction for an audio and/or video player.
 class PlayBin2
           
 class RGBDataAppSink
           
 class RGBDataFileSink
          This bin encapsulates a pipeline that allows to encode RGB buffers into a video file.
 class RGBDataSink
           
 

Uses of Bin in org.gstreamer.lowlevel
 

Methods in org.gstreamer.lowlevel that return Bin
 Bin GstBinAPI.gst_bin_new(java.lang.String name)
           
 

Methods in org.gstreamer.lowlevel with parameters of type Bin
 void GstBinAPI.gst_bin_add_many(Bin bin, Element... elements)
           
 boolean GstBinAPI.gst_bin_add(Bin bin, Element element)
           
 Element GstBinAPI.gst_bin_get_by_interface(Bin bin, GType iface)
           
 Element GstBinAPI.gst_bin_get_by_name_recurse_up(Bin bin, java.lang.String name)
           
 Element GstBinAPI.gst_bin_get_by_name(Bin bin, java.lang.String name)
           
 com.sun.jna.Pointer GstBinAPI.gst_bin_iterate_all_by_interface(Bin bin, GType iface)
           
 com.sun.jna.Pointer GstBinAPI.gst_bin_iterate_elements(Bin bin)
           
 com.sun.jna.Pointer GstBinAPI.gst_bin_iterate_recurse(Bin bin)
           
 com.sun.jna.Pointer GstBinAPI.gst_bin_iterate_sinks(Bin bin)
           
 com.sun.jna.Pointer GstBinAPI.gst_bin_iterate_sorted(Bin bin)
           
 com.sun.jna.Pointer GstBinAPI.gst_bin_iterate_sources(Bin bin)
           
 void GstBinAPI.gst_bin_remove_many(Bin bin, Element... elements)
           
 boolean GstBinAPI.gst_bin_remove(Bin bin, Element element)