Uses of Class
org.gstreamer.Structure

Packages that use Structure
org.gstreamer   
org.gstreamer.event   
org.gstreamer.interfaces   
org.gstreamer.lowlevel   
org.gstreamer.query   
 

Uses of Structure in org.gstreamer
 

Subclasses of Structure in org.gstreamer
 class TagList
          List of tags and values used to describe media metadata.
 

Methods in org.gstreamer that return Structure
 Structure Structure.copy()
           
static Structure Structure.fromString(java.lang.String data)
          Creates a Structure from a string representation.
 Structure Event.getStructure()
          Gets the structure containing the data in this event.
 Structure Message.getStructure()
          Gets the structure containing the data in this message.
 Structure Query.getStructure()
          Get the structure of this query.
 Structure Caps.getStructure(int index)
          Get a Structure contained in this caps.
static Structure Structure.objectFor(com.sun.jna.Pointer ptr, boolean needRef, boolean ownsHandle)
           
 

Methods in org.gstreamer with parameters of type Structure
 void Caps.append(Structure struct)
          Append structure to this caps.
 void Caps.merge(Structure structure)
          Append a structure to this caps.
 

Uses of Structure in org.gstreamer.event
 

Constructors in org.gstreamer.event with parameters of type Structure
NavigationEvent(Structure structure)
          Creates a new navigation event from the given description.
 

Uses of Structure in org.gstreamer.interfaces
 

Methods in org.gstreamer.interfaces with parameters of type Structure
 void Navigation.sendEvent(Structure structure)
           
 

Uses of Structure in org.gstreamer.lowlevel
 

Methods in org.gstreamer.lowlevel that return Structure
 Structure GstCapsAPI.gst_caps_get_structure(Caps caps, int index)
           
 Structure GstCapsAPI.gst_caps_steal_structure(Caps caps, int index)
           
 Structure GstEventAPI.gst_event_get_structure(Event event)
           
 Structure GstMessageAPI.gst_message_get_structure(Message message)
           
 Structure GstQueryAPI.gst_query_get_structure(Query query)
           
 Structure GstStructureAPI.gst_structure_copy(Structure src)
           
 Structure GstStructureAPI.gst_structure_empty_new(java.lang.String name)
           
 Structure GstStructureAPI.gst_structure_from_string(java.lang.String data, com.sun.jna.ptr.PointerByReference end)
           
 Structure GstStructureAPI.gst_structure_new(java.lang.String name, java.lang.String firstField, java.lang.Object... args)
           
 

Methods in org.gstreamer.lowlevel with parameters of type Structure
 void GstCapsAPI.gst_caps_append_structure(Caps caps, Structure structure)
           
 void GstCapsAPI.gst_caps_merge_structure(Caps caps, Structure structure)
           
 Caps GstCapsAPI.gst_caps_new_full(Structure... data)
           
 Event GstEventAPI.gst_event_new_custom(EventType type, Structure structure)
           
 Event GstEventAPI.gst_event_new_navigation(Structure structure)
           
 Message GstMessageAPI.gst_message_new_application(GstObject src, Structure structure)
           
 Message GstMessageAPI.gst_message_new_custom(MessageType type, GstObject src, Structure structure)
           
 Message GstMessageAPI.gst_message_new_element(GstObject src, Structure structure)
           
 void GstNavigationAPI.gst_navigation_send_event(Navigation navigation, Structure structure)
           
 Query GstQueryAPI.gst_query_new_application(QueryType type, Structure structure)
           
 Structure GstStructureAPI.gst_structure_copy(Structure src)
           
 boolean GstStructureAPI.gst_structure_fixate_field_nearest_int(Structure structure, java.lang.String field, int target)
           
 boolean GstStructureAPI.gst_structure_get_boolean(Structure structure, java.lang.String fieldname, int[] value)
           
 boolean GstStructureAPI.gst_structure_get_date(Structure structure, java.lang.String fieldname, com.sun.jna.Pointer[] value)
           
 boolean GstStructureAPI.gst_structure_get_date(Structure structure, java.lang.String fieldname, com.sun.jna.ptr.PointerByReference value)
           
 boolean GstStructureAPI.gst_structure_get_double(Structure structure, java.lang.String fieldname, double[] value)
           
 boolean GstStructureAPI.gst_structure_get_enum(Structure structure, java.lang.String fieldname, GType enumtype, int[] value)
           
 boolean GstStructureAPI.gst_structure_get_fourcc(Structure structure, java.lang.String fieldname, int[] value)
           
 boolean GstStructureAPI.gst_structure_get_fraction(Structure structure, java.lang.String fieldname, int[] value_numerator, int[] value_denominator)
           
 boolean GstStructureAPI.gst_structure_get_int(Structure structure, java.lang.String fieldname, int[] value)
           
 boolean GstStructureAPI.gst_structure_get_int(Structure structure, java.lang.String fieldname, com.sun.jna.ptr.IntByReference value)
           
 java.lang.String GstStructureAPI.gst_structure_get_name(Structure structure)
           
 java.lang.String GstStructureAPI.gst_structure_get_string(Structure structure, java.lang.String fieldname)
           
 boolean GstStructureAPI.gst_structure_get_uint(Structure structure, java.lang.String fieldname, int[] value)
           
 GValueAPI.GValue GstStructureAPI.gst_structure_get_value(Structure structure, java.lang.String fieldname)
           
 boolean GstStructureAPI.gst_structure_has_field_typed(Structure structure, java.lang.String fieldname, GType type)
           
 boolean GstStructureAPI.gst_structure_has_field(Structure structure, java.lang.String fieldname)
           
 boolean GstStructureAPI.gst_structure_has_name(Structure structure, java.lang.String name)
           
 int GstStructureAPI.gst_structure_n_fields(Structure structure)
           
 java.lang.String GstStructureAPI.gst_structure_nth_field_name(Structure structure, int index)
           
 void GstStructureAPI.gst_structure_remove_all_fields(Structure structure)
           
 void GstStructureAPI.gst_structure_remove_field(Structure structure, java.lang.String fieldName)
           
 void GstStructureAPI.gst_structure_remove_fields(Structure structure, java.lang.String... fieldNames)
           
 void GstStructureAPI.gst_structure_set_name(Structure structure, java.lang.String name)
           
 void GstStructureAPI.gst_structure_set(Structure structure, java.lang.String fieldname, java.lang.Object... args)
           
 java.lang.String GstStructureAPI.gst_structure_to_string(Structure structure)
           
 com.sun.jna.Pointer GstCapsAPI.ptr_gst_caps_new_full(Structure... data)
           
 

Uses of Structure in org.gstreamer.query
 

Constructors in org.gstreamer.query with parameters of type Structure
ApplicationQuery(QueryType type, Structure structure)
          Constructs a new custom application query object.