More docs updates
authorWim Taymans <wim.taymans@gmail.com>
Sun, 22 Oct 2000 16:30:25 +0000 (16:30 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Sun, 22 Oct 2000 16:30:25 +0000 (16:30 +0000)
Original commit message from CVS:
More docs updates

23 files changed:
docs/gst/tmpl/audioraw.sgml
docs/gst/tmpl/cothreads.sgml
docs/gst/tmpl/gstasyncdisksrc.sgml
docs/gst/tmpl/gstaudiosink.sgml
docs/gst/tmpl/gstbuffer.sgml
docs/gst/tmpl/gstbufferpool.sgml
docs/gst/tmpl/gstclock.sgml
docs/gst/tmpl/gstcpu.sgml
docs/gst/tmpl/gstdisksrc.sgml
docs/gst/tmpl/gstelement.sgml
docs/gst/tmpl/gstextratypes.sgml [new file with mode: 0644]
docs/gst/tmpl/gstmeta.sgml
docs/gst/tmpl/gstpad.sgml
docs/gst/tmpl/gstplugin.sgml
docs/gst/tmpl/gstreamer-unused.sgml
docs/gst/tmpl/gstsrc.sgml
docs/gst/tmpl/gstthread.sgml
docs/gst/tmpl/gsttrace.sgml
docs/gst/tmpl/gsttype.sgml
docs/gst/tmpl/gsttypefind.sgml [new file with mode: 0644]
docs/gst/tmpl/gstxml.sgml
docs/gst/tmpl/spectrum.sgml
docs/gst/tmpl/videoraw.sgml

index d3ef062716175f2564ea605a8dcaf5c174d1b477..df16e49c9216c9b67a0c6e972d33c9173d119fe2 100644 (file)
@@ -19,4 +19,9 @@ Information about audio buffers.
 
 </para>
 
+@meta: 
+@format: 
+@channels: 
+@frequency: 
+@bps: 
 
index 8c1326fd23d069af2eab68afcbde338c4f16c318..fee77b9b356337dec88e91379cb21526117102a4 100644 (file)
@@ -47,12 +47,25 @@ cothreads
 
 </para>
 
+@ctx: 
+@threadnum: 
+@func: 
+@argc: 
+@argv: 
+@flags: 
+@sp: 
+@top_sp: 
+@pc: 
+@jmp: 
 
 <!-- ##### STRUCT cothread_context ##### -->
 <para>
 
 </para>
 
+@threads: 
+@nthreads: 
+@current: 
 
 <!-- ##### USER_FUNCTION cothread_func ##### -->
 <para>
index 1e3fea6fd8915ee707636c79880836d68ced33a2..1179a56213e54b9998b58f18bc93578a0f9cf445 100644 (file)
@@ -29,6 +29,7 @@ the offset.
 
 </para>
 
+@GST_ASYNCDISKSRC_OPEN: 
 
 <!-- ##### ARG GstAsyncDiskSrc:location ##### -->
 <para>
@@ -40,13 +41,13 @@ Specify the location of the file to read.
 Specify how many bytes to read at a time.
 </para>
 
-<!-- ##### ARG GstAsyncDiskSrc:length ##### -->
+<!-- ##### ARG GstAsyncDiskSrc:offset ##### -->
 <para>
-Get the size of the current file.
+Specify the current offset in the file.
 </para>
 
-<!-- ##### ARG GstAsyncDiskSrc:offset ##### -->
+<!-- ##### ARG GstAsyncDiskSrc:size ##### -->
 <para>
-Specify the current offset in the file.
+
 </para>
 
index e96a50dcd3339fbe6b8d9ccdf7ddda7d7112ee20..87e51aa4d378a916565c41282be9e5ff9e9b116d 100644 (file)
@@ -20,6 +20,7 @@ The buffer is sent to the sound card.
 </para>
 
 @gstaudiosink: the object which received the signal.
+<!-- # Unused Parameters # -->
 @arg1: the audiosink.
 
 <!-- ##### ARG GstAudioSink:mute ##### -->
index cc4dbdf3564edcba2fc396c7cb60ed43f7072e35..3360012670d8c4170cd1c24924b541e1e5365077 100644 (file)
@@ -167,12 +167,28 @@ used when data in a stream has been skipped</entry>
 
 </para>
 
+@GST_BUFFER_READONLY: 
+@GST_BUFFER_EOS: 
+@GST_BUFFER_ORIGINAL: 
+@GST_BUFFER_DONTFREE: 
+@GST_BUFFER_FLUSH: 
 
 <!-- ##### STRUCT GstBuffer ##### -->
 <para>
 
 </para>
 
+@lock: 
+@flags: 
+@data: 
+@size: 
+@maxsize: 
+@offset: 
+@timestamp: 
+@maxage: 
+@metas: 
+@parent: 
+@pool: 
 
 <!-- ##### FUNCTION gst_buffer_new ##### -->
 <para>
index 0b09f7638a5e6b4d11af8ddac22d8d33ca57b98b..91ea2318660ec8d0b84d6f56699b4b1cc7c65ad0 100644 (file)
@@ -1,32 +1,37 @@
 <!-- ##### SECTION Title ##### -->
-gstbufferpool
+GstBufferPool
 
 <!-- ##### SECTION Short_Description ##### -->
-
+Create buffers from a pool
 
 <!-- ##### SECTION Long_Description ##### -->
 <para>
-
+A bufferpool is used to create buffers in an efficient way. En element
+can maintain a bufferpool with a fixed number of buffers. This will reduce
+the g_malloc and g_free overhead.
 </para>
 
-<!-- ##### SECTION See_Also ##### -->
 <para>
-
+A bufferpool can also be used to implement direct access. A bufferpool can be
+sent from one element to another so that the latter can directly write into
+the memory of the element that maintains the bufferpool. This can greatly reduce
+the number of memcpy operations.
 </para>
 
-<!-- ##### MACRO GST_BUFFER_POOL ##### -->
+<!-- ##### SECTION See_Also ##### -->
 <para>
 
 </para>
 
-@buf: 
-
-
 <!-- ##### STRUCT GstBufferPool ##### -->
 <para>
 
 </para>
 
+@new_buffer: 
+@new_user_data: 
+@destroy_user_data: 
+@destroy_buffer: 
 
 <!-- ##### USER_FUNCTION GstBufferPoolCreateFunction ##### -->
 <para>
index 37e640cd45f6eaa3f7642d12718e5128ab642319..888a957daabc1177ec68488bb9033e62b17fadd2 100644 (file)
@@ -40,6 +40,16 @@ gstclock
 
 </para>
 
+@name: 
+@start_time: 
+@current_time: 
+@adjust: 
+@locking: 
+@sinkobjects: 
+@num: 
+@num_locked: 
+@sinkmutex: 
+@lock: 
 
 <!-- ##### FUNCTION gst_clock_new ##### -->
 <para>
index f1c65a621b4f8c7d79164eb46a90474315ba87b4..265ecbb5bb94f57e1ece3b0d24bce92f50437cbe 100644 (file)
@@ -18,19 +18,13 @@ features of the CPU.
 
 </para>
 
-<!-- ##### MACRO GST_CPU_FLAG_MMX ##### -->
+<!-- ##### ENUM GstCPUFlags ##### -->
 <para>
-A flag indicating that MMX instructions are supported.
-</para>
-
-
 
-<!-- ##### MACRO GST_CPU_FLAG_SSE ##### -->
-<para>
-A flag indicating that SSE instructions are supported.
 </para>
 
-
+@GST_CPU_FLAG_MMX: 
+@GST_CPU_FLAG_SSE: 
 
 <!-- ##### FUNCTION gst_cpu_get_flags ##### -->
 <para>
index 89d7e63eb9d5706240be81535cc6e9923ac49c4c..63bc83a0f839569e9afb2fc474bbc66d0bff23cc 100644 (file)
@@ -30,6 +30,7 @@ with seeking capabilities use a <classname>GstAsynDiskSrc</classname> instead.
 
 </para>
 
+@GST_DISKSRC_OPEN: 
 
 <!-- ##### ARG GstDiskSrc:location ##### -->
 <para>
index 00096e007310daeebeecba025a8ad2b0adab2b99..7ec802185d45db1bab1931c6f03abd4f4ce72a21 100644 (file)
@@ -69,6 +69,11 @@ temporary stops the data flow.
 </tbody></tgroup></informaltable>
 </para>
 
+@GST_STATE_NONE_PENDING: 
+@GST_STATE_NULL: 
+@GST_STATE_READY: 
+@GST_STATE_PLAYING: 
+@GST_STATE_PAUSED: 
 
 <!-- ##### ENUM GstElementStateReturn ##### -->
 <para>
@@ -98,6 +103,9 @@ can return after a state change.
 
 </para>
 
+@GST_STATE_FAILURE: 
+@GST_STATE_SUCCESS: 
+@GST_STATE_ASYNC: 
 
 <!-- ##### MACRO GST_STATE ##### -->
 <para>
@@ -132,6 +140,8 @@ may have.
 
 </para>
 
+@GST_ELEMENT_MULTI_IN: 
+@GST_ELEMENT_THREAD_SUGGESTED: 
 
 <!-- ##### MACRO GST_ELEMENT_IS_MULTI_IN ##### -->
 <para>
@@ -142,6 +152,14 @@ Query whether this object has multiple input pads.
 @obj: Element to query for multiple input pads.
 
 
+<!-- ##### MACRO GST_ELEMENT_IS_THREAD_SUGGESTED ##### -->
+<para>
+
+</para>
+
+@obj: 
+
+
 <!-- ##### STRUCT GstElement ##### -->
 <para>
 
@@ -154,6 +172,12 @@ This struct is used to define public information about the element.  It
 describes the element, mostly for the benefit of editors.
 </para>
 
+@longname: 
+@class: 
+@description: 
+@version: 
+@author: 
+@copyright: 
 
 <!-- ##### STRUCT GstElementFactory ##### -->
 <para>
@@ -162,6 +186,11 @@ of the element, the GtkType value for it, as well as a pointer to the
 GstElementDetails struct for the element.
 </para>
 
+@name: 
+@type: 
+@details: 
+@src_types: 
+@sink_types: 
 
 <!-- ##### USER_FUNCTION GstElementLoopFunction ##### -->
 <para>
@@ -320,6 +349,16 @@ circumstances.
 @Returns: 
 
 
+<!-- ##### FUNCTION gst_element_load_thyself ##### -->
+<para>
+
+</para>
+
+@parent: 
+@elements: 
+@Returns: 
+
+
 <!-- ##### FUNCTION gst_elementfactory_new ##### -->
 <para>
 
diff --git a/docs/gst/tmpl/gstextratypes.sgml b/docs/gst/tmpl/gstextratypes.sgml
new file mode 100644 (file)
index 0000000..af34d4b
--- /dev/null
@@ -0,0 +1,31 @@
+<!-- ##### SECTION Title ##### -->
+GstExtraTypes
+
+<!-- ##### SECTION Short_Description ##### -->
+
+
+<!-- ##### SECTION Long_Description ##### -->
+<para>
+
+</para>
+
+<!-- ##### SECTION See_Also ##### -->
+<para>
+
+</para>
+
+<!-- ##### MACRO GST_TYPE_FILENAME ##### -->
+<para>
+
+</para>
+
+
+
+<!-- ##### FUNCTION gst_extra_get_filename_type ##### -->
+<para>
+
+</para>
+
+@Returns: 
+
+
index 184eebc49bf1f9f23dc6459f625adf0632da9fc0..70a5fe412272482d7151a3b2d5bfff762326e5de 100644 (file)
@@ -112,6 +112,8 @@ it, is there?
 
 </para>
 
+@meta: 
+<!-- # Unused Parameters # -->
 @buf: 
 
 
@@ -147,12 +149,17 @@ it, is there?
 
 </para>
 
+@GST_META_FREEABLE: 
 
 <!-- ##### STRUCT GstMeta ##### -->
 <para>
 
 </para>
 
+@lock: 
+@flags: 
+@data: 
+@size: 
 
 <!-- ##### FUNCTION gst_meta_new_size ##### -->
 <para>
index 843124012a1bb6db90cbd12b8454090a97d06746..ab7d4af19e13aee8ed75398968026ade8d28f7b7 100644 (file)
@@ -78,6 +78,9 @@ the function that will be called when a QoS message is sent.
 
 </para>
 
+@GST_PAD_UNKNOWN: 
+@GST_PAD_SRC: 
+@GST_PAD_SINK: 
 
 <!-- ##### FUNCTION gst_pad_new ##### -->
 <para>
@@ -278,3 +281,13 @@ the function that will be called when a QoS message is sent.
 @Returns: 
 
 
+<!-- ##### FUNCTION gst_pad_load_and_connect ##### -->
+<para>
+
+</para>
+
+@parent: 
+@element: 
+@elements: 
+
+
index acf6798acfe0f4a2f3f6ca7480705f493488d015..724d9838dc9bc51997297f51b3f2a8eafe02a070 100644 (file)
@@ -20,6 +20,12 @@ GStreamer is extensible so <classname>GstElements</classname> can be loaded at r
 
 </para>
 
+@name: 
+@longname: 
+@filename: 
+@types: 
+@elements: 
+@loaded: 
 
 <!-- ##### STRUCT GstPluginElement ##### -->
 <para>
index 7639eba64716ec67b58071f5f9b1d1259bd3409a..2243adc417d5b2568d0e7f896f2eb63cbb0f65d1 100644 (file)
 </para>
 
 
-<!-- ##### FUNCTION gst_fakesrc_push ##### -->
+<!-- ##### FUNCTION gst_tee_get_type ##### -->
 <para>
 
 </para>
 
-@src
+@Returns
 
-<!-- ##### FUNCTION gst_tee_get_type ##### -->
+<!-- ##### FUNCTION gst_fakesrc_push ##### -->
 <para>
 
 </para>
 
-@Returns
+@src
 
 <!-- ##### MACRO GST_FAKESRC ##### -->
 <para>
 
 @obj: 
 
-<!-- ##### FUNCTION gst_fdsink_new ##### -->
+<!-- ##### STRUCT GstAsyncDiskSrcClass ##### -->
 <para>
 
 </para>
 
-@name: 
-@Returns: 
 
-<!-- ##### STRUCT GstAsyncDiskSrcClass ##### -->
+<!-- ##### FUNCTION gst_fdsink_new ##### -->
 <para>
 
 </para>
 
+@name: 
+@Returns: 
 
 <!-- ##### MACRO GST_IS_FILTER_CLASS ##### -->
 <para>
 </para>
 
 
+<!-- ##### SECTION ./tmpl/gstgetbits.sgml:Short_Description ##### -->
+
+
+
 <!-- ##### MACRO GST_PAD_CLASS ##### -->
 <para>
 
 
 @Returns: 
 
-<!-- ##### FUNCTION gst_object_get_type ##### -->
+<!-- ##### MACRO GST_SINESRC ##### -->
 <para>
 
 </para>
 
-@Returns
+@obj
 
-<!-- ##### MACRO GST_SINESRC ##### -->
+<!-- ##### FUNCTION gst_object_get_type ##### -->
 <para>
 
 </para>
 
-@obj
+@Returns
 
 <!-- ##### SECTION ./tmpl/plugin.sgml:Long_Description ##### -->
 <para>
 </para>
 
 
-<!-- ##### FUNCTION gst_audiosrc_get_type ##### -->
+<!-- ##### MACRO GST_QUEUE_CLASS ##### -->
 <para>
 
 </para>
 
-@Returns: 
+@klass: 
 
-<!-- ##### MACRO GST_QUEUE_CLASS ##### -->
+<!-- ##### FUNCTION gst_audiosrc_get_type ##### -->
 <para>
 
 </para>
 
-@klass: 
+@Returns: 
 
 <!-- ##### MACRO GST_IS_QUEUE ##### -->
 <para>
 @name: 
 @Returns: 
 
+<!-- ##### SECTION ./tmpl/gstgetbits.sgml:See_Also ##### -->
+<para>
+
+</para>
+
+
 <!-- ##### MACRO GST_IS_SRC ##### -->
 <para>
 
 
 @klass: 
 
+<!-- ##### FUNCTION gst_thread_main_loop ##### -->
+<para>
+
+</para>
+
+@arg: 
+
 <!-- ##### MACRO GST_TYPE_BIN ##### -->
 <para>
 
 </para>
 
 
-<!-- ##### STRUCT GstFakeSink ##### -->
+<!-- ##### MACRO GST_THREAD_CLASS ##### -->
 <para>
 
 </para>
 
+@klass: 
 
-<!-- ##### MACRO GST_THREAD_CLASS ##### -->
+<!-- ##### STRUCT GstFakeSink ##### -->
 <para>
 
 </para>
 
-@klass: 
 
 <!-- ##### MACRO GST_BIN_CLASS ##### -->
 <para>
 </para>
 
 
+<!-- ##### SECTION ./tmpl/gstcolorspace.sgml:Title ##### -->
+GstColorSpace
+
+
 <!-- ##### MACRO GST_PAD ##### -->
 <para>
 
 @name: 
 @Returns: 
 
+<!-- ##### SECTION ./tmpl/gstcolorspace.sgml:Long_Description ##### -->
+<para>
+
+</para>
+
+
 <!-- ##### FUNCTION gst_audiosrc_new ##### -->
 <para>
 
 
 @obj: 
 
+<!-- ##### SECTION ./tmpl/gstgetbits.sgml:Title ##### -->
+GstGetbits
+
+
 <!-- ##### MACRO GST_FILTER_CLASS ##### -->
 <para>
 
@@ -668,14 +699,18 @@ This macro unsets the given state on the element.
 </para>
 
 
-<!-- ##### MACRO GST_ASYNCDISKSRC_CLASS ##### -->
+<!-- ##### SECTION ./tmpl/gstcolorspace.sgml:Short_Description ##### -->
+
+
+
+<!-- ##### MACRO GST_ESDSINK_CLASS ##### -->
 <para>
 
 </para>
 
 @klass: 
 
-<!-- ##### MACRO GST_ESDSINK_CLASS ##### -->
+<!-- ##### MACRO GST_ASYNCDISKSRC_CLASS ##### -->
 <para>
 
 </para>
@@ -715,6 +750,12 @@ This macro unsets the given state on the element.
 </para>
 
 
+<!-- ##### SECTION ./tmpl/gstcolorspace.sgml:See_Also ##### -->
+<para>
+
+</para>
+
+
 <!-- ##### STRUCT GstHttpSrc ##### -->
 <para>
 
@@ -891,6 +932,12 @@ plugin
 
 @obj: 
 
+<!-- ##### MACRO GST_CPU_FLAG_SSE ##### -->
+<para>
+A flag indicating that SSE instructions are supported.
+</para>
+
+
 <!-- ##### STRUCT GstAudioSrcClass ##### -->
 <para>
 
@@ -1087,6 +1134,12 @@ This macro checks to see if the given state is set.
 
 
 
+<!-- ##### SECTION ./tmpl/gstgetbits.sgml:Long_Description ##### -->
+<para>
+
+</para>
+
+
 <!-- ##### FUNCTION gst_fakesink_get_type ##### -->
 <para>
 
@@ -1143,6 +1196,12 @@ This macro checks to see if the given state is set.
 @esdsink: 
 @frequency: 
 
+<!-- ##### ARG GstAsyncDiskSrc:length ##### -->
+<para>
+Get the size of the current file.
+</para>
+
+
 <!-- ##### MACRO GST_TYPE_PIPELINE ##### -->
 <para>
 
@@ -1177,6 +1236,13 @@ This macro checks to see if the given state is set.
 </para>
 
 
+<!-- ##### FUNCTION gst_thread_iterate ##### -->
+<para>
+
+</para>
+
+@thread: 
+
 <!-- ##### MACRO GST_AUDIOSINK ##### -->
 <para>
 
@@ -1300,19 +1366,19 @@ This macro checks to see if the given state is set.
 </para>
 
 
-<!-- ##### MACRO GST_META ##### -->
+<!-- ##### FUNCTION gst_audiosink_get_type ##### -->
 <para>
 
 </para>
 
-@meta
+@Returns
 
-<!-- ##### FUNCTION gst_audiosink_get_type ##### -->
+<!-- ##### MACRO GST_META ##### -->
 <para>
 
 </para>
 
-@Returns
+@meta
 
 <!-- ##### FUNCTION gst_httpsrc_get_type ##### -->
 <para>
@@ -1355,18 +1421,18 @@ This macro checks to see if the given state is set.
 </para>
 
 
-<!-- ##### MACRO GST_IS_SINESRC_CLASS ##### -->
+<!-- ##### MACRO GST_TYPE_FILTER ##### -->
 <para>
 
 </para>
 
-@obj: 
 
-<!-- ##### MACRO GST_TYPE_FILTER ##### -->
+<!-- ##### MACRO GST_IS_SINESRC_CLASS ##### -->
 <para>
 
 </para>
 
+@obj: 
 
 <!-- ##### MACRO GST_IS_AUDIOSRC_CLASS ##### -->
 <para>
@@ -1445,6 +1511,10 @@ GstElement
 
 @obj: 
 
+<!-- ##### SECTION ./tmpl/plugin.sgml:Short_Description ##### -->
+
+
+
 <!-- ##### FUNCTION gst_audiosrc_push ##### -->
 <para>
 
@@ -1452,10 +1522,6 @@ GstElement
 
 @src: 
 
-<!-- ##### SECTION ./tmpl/plugin.sgml:Short_Description ##### -->
-
-
-
 <!-- ##### MACRO GST_HTTPSRC_CLASS ##### -->
 <para>
 
@@ -1506,6 +1572,13 @@ GstElement
 @fd: 
 @Returns: 
 
+<!-- ##### MACRO GST_BUFFER_POOL ##### -->
+<para>
+
+</para>
+
+@buf: 
+
 <!-- ##### FUNCTION gst_audiosink_set_format ##### -->
 <para>
 
@@ -1570,3 +1643,9 @@ GstElement
 </para>
 
 
+<!-- ##### MACRO GST_CPU_FLAG_MMX ##### -->
+<para>
+A flag indicating that MMX instructions are supported.
+</para>
+
+
index 7cd79db42200008abdfdaea2b9da55e378657c0e..cf087070ac685ad9f211b86548ac38cc35034c2e 100644 (file)
@@ -30,6 +30,7 @@ audio source. It provides data for the next element in the graph.
 </tbody></tgroup></informaltable>
 </para>
 
+@GST_SRC_ASYNC: 
 
 <!-- ##### MACRO GST_SRC_FLAGS ##### -->
 <para>
index 85226c9fd0fb8d9de61e242c7c3d16c2a80b9440..68d88530e60d28c5f7677ff512f5eb8205f1aa87 100644 (file)
@@ -43,6 +43,9 @@ to be dealt with in the separate thread.
 
 </para>
 
+@GST_THREAD_CREATE: 
+@GST_THREAD_STATE_SPINNING: 
+@GST_THREAD_STATE_REAPING: 
 
 <!-- ##### STRUCT GstThread ##### -->
 <para>
@@ -59,22 +62,6 @@ to be dealt with in the separate thread.
 @Returns: 
 
 
-<!-- ##### FUNCTION gst_thread_main_loop ##### -->
-<para>
-
-</para>
-
-@arg: 
-
-
-<!-- ##### FUNCTION gst_thread_iterate ##### -->
-<para>
-
-</para>
-
-@thread: 
-
-
 <!-- ##### ARG GstThread:create_thread ##### -->
 <para>
 TRUE if the thread should be created.
index e93cd039f20380c2ec41ca46eaac9110fc181b3c..cb36b953806a3799d3e68130f550762f9bf6c684 100644 (file)
@@ -27,12 +27,21 @@ Tracing functionality
 
 </para>
 
+@filename: 
+@fd: 
+@buf: 
+@bufsize: 
+@bufoffset: 
 
 <!-- ##### STRUCT GstTraceEntry ##### -->
 <para>
 
 </para>
 
+@timestamp: 
+@sequence: 
+@data: 
+@message: 
 
 <!-- ##### FUNCTION gst_trace_new ##### -->
 <para>
index 6e4c742861e6cbd888cc79716fd74964649bc1a7..a1428b126753ba72494ea71a700ec2623bb35e79 100644 (file)
@@ -69,12 +69,22 @@ valid mp3 decoder, and thus the whole point of the type system.
 
 </para>
 
+@id: 
+@mime: 
+@exts: 
+@typefindfunc: 
+@srcs: 
+@sinks: 
+@converters: 
 
 <!-- ##### STRUCT GstTypeFactory ##### -->
 <para>
 
 </para>
 
+@mime: 
+@exts: 
+@typefindfunc: 
 
 <!-- ##### FUNCTION gst_type_register ##### -->
 <para>
diff --git a/docs/gst/tmpl/gsttypefind.sgml b/docs/gst/tmpl/gsttypefind.sgml
new file mode 100644 (file)
index 0000000..b02705b
--- /dev/null
@@ -0,0 +1,30 @@
+<!-- ##### SECTION Title ##### -->
+GstTypeFind
+
+<!-- ##### SECTION Short_Description ##### -->
+Detect the mime type of a media stream
+
+<!-- ##### SECTION Long_Description ##### -->
+<para>
+This element can be added to the pipeline and will notify the listener of
+the detected mime type of the stream. It is used in autoplugging.
+</para>
+
+<!-- ##### SECTION See_Also ##### -->
+<para>
+
+</para>
+
+<!-- ##### SIGNAL GstTypeFind::have-type ##### -->
+<para>
+The signal to indicate the mime type was detected.
+</para>
+
+@gsttypefind: the object which received the signal.
+@arg1: The mime type that was detected
+
+<!-- ##### ARG GstTypeFind:type ##### -->
+<para>
+Query the element for the current mime type
+</para>
+
index ee985b4c549afd23815b06faa684537add710d27..c543a8d283b0cba10810e45520520bac29bd4e54 100644 (file)
@@ -15,6 +15,24 @@ All GstElements can be serialized to an XML presentation
 
 </para>
 
+<!-- ##### STRUCT GstXML ##### -->
+<para>
+
+</para>
+
+@object: 
+@elements: 
+
+<!-- ##### FUNCTION gst_xml_new ##### -->
+<para>
+
+</para>
+
+@fname: 
+@root: 
+@Returns: 
+
+
 <!-- ##### FUNCTION gst_xml_write ##### -->
 <para>
 
@@ -24,3 +42,13 @@ All GstElements can be serialized to an XML presentation
 @Returns: 
 
 
+<!-- ##### FUNCTION gst_xml_get_element ##### -->
+<para>
+
+</para>
+
+@xml: 
+@name: 
+@Returns: 
+
+
index 9835398babe563d8f69c56b5d2137f81f33283cc..556d71bd39940c3f4e6cc8cdd665ae2f11a06dfd 100644 (file)
@@ -20,4 +20,11 @@ Frequencies of a spectrum analysis.
 
 </para>
 
+@meta: 
+@bands: 
+@channels: 
+@interleaved: 
+@lowfreq: 
+@highfreq: 
+@steps: 
 
index 080d0fce293fdb2d27d944d728a686537cc2bfe8..d2518506fc592f7b18a0d41a4ad7c70ef11d8d09 100644 (file)
@@ -19,6 +19,10 @@ Information about video buffers.
 
 </para>
 
+@meta: 
+@format: 
+@visual: 
+@height: 
 
 <!-- ##### STRUCT MetaDGA ##### -->
 <para>
@@ -31,10 +35,18 @@ Information about video buffers.
 
 </para>
 
+@width: 
+@height: 
+@did_overlay: 
+@fully_obscured: 
 
 <!-- ##### STRUCT OverlayClip ##### -->
 <para>
 
 </para>
 
+@x1: 
+@x2: 
+@y1: 
+@y2: