1 <!-- ##### SECTION ./tmpl/GstElement.sgml:Long_Description ##### -->
7 <!-- ##### SECTION ./tmpl/GstElement.sgml:See_Also ##### -->
13 <!-- ##### SECTION ./tmpl/GstElement.sgml:Short_Description ##### -->
17 <!-- ##### SECTION ./tmpl/GstElement.sgml:Title ##### -->
21 <!-- ##### SECTION ./tmpl/audioraw.sgml:Long_Description ##### -->
23 Information about audio buffers.
27 <!-- ##### SECTION ./tmpl/audioraw.sgml:See_Also ##### -->
33 <!-- ##### SECTION ./tmpl/audioraw.sgml:Short_Description ##### -->
34 Information about audio buffers.
37 <!-- ##### SECTION ./tmpl/audioraw.sgml:Title ##### -->
41 <!-- ##### SECTION ./tmpl/gobject2gtk.sgml:Long_Description ##### -->
47 <!-- ##### SECTION ./tmpl/gobject2gtk.sgml:See_Also ##### -->
53 <!-- ##### SECTION ./tmpl/gobject2gtk.sgml:Short_Description ##### -->
57 <!-- ##### SECTION ./tmpl/gobject2gtk.sgml:Title ##### -->
61 <!-- ##### SECTION ./tmpl/gstasyncdisksrc.sgml:Long_Description ##### -->
63 Reads data from a file. You can seek to a specific location by setting
68 <!-- ##### SECTION ./tmpl/gstasyncdisksrc.sgml:See_Also ##### -->
74 <!-- ##### SECTION ./tmpl/gstasyncdisksrc.sgml:Title ##### -->
78 <!-- ##### SECTION ./tmpl/gstaudiosink.sgml:Long_Description ##### -->
84 <!-- ##### SECTION ./tmpl/gstaudiosink.sgml:See_Also ##### -->
90 <!-- ##### SECTION ./tmpl/gstaudiosink.sgml:Short_Description ##### -->
94 <!-- ##### SECTION ./tmpl/gstaudiosink.sgml:Title ##### -->
98 <!-- ##### SECTION ./tmpl/gstaudiosrc.sgml:Long_Description ##### -->
104 <!-- ##### SECTION ./tmpl/gstaudiosrc.sgml:See_Also ##### -->
110 <!-- ##### SECTION ./tmpl/gstaudiosrc.sgml:Short_Description ##### -->
114 <!-- ##### SECTION ./tmpl/gstaudiosrc.sgml:Title ##### -->
118 <!-- ##### SECTION ./tmpl/gstcolorspace.sgml:Long_Description ##### -->
124 <!-- ##### SECTION ./tmpl/gstcolorspace.sgml:See_Also ##### -->
130 <!-- ##### SECTION ./tmpl/gstcolorspace.sgml:Short_Description ##### -->
134 <!-- ##### SECTION ./tmpl/gstcolorspace.sgml:Title ##### -->
138 <!-- ##### SECTION ./tmpl/gstconnection.sgml:Long_Description ##### -->
140 A connection is a bas class for a generic connection between
141 elements. A connection is typically a bas class for queues.
146 <!-- ##### SECTION ./tmpl/gstconnection.sgml:See_Also ##### -->
152 <!-- ##### SECTION ./tmpl/gstconnection.sgml:Short_Description ##### -->
153 Generic connection between elements.
156 <!-- ##### SECTION ./tmpl/gstconnection.sgml:Title ##### -->
160 <!-- ##### SECTION ./tmpl/gstdisksrc.sgml:Long_Description ##### -->
162 Asynchonously read buffers from a file.
167 <!-- ##### SECTION ./tmpl/gstdisksrc.sgml:See_Also ##### -->
173 <!-- ##### SECTION ./tmpl/gstdisksrc.sgml:Short_Description ##### -->
174 Asynchronous read from a file (disksrc)
177 <!-- ##### SECTION ./tmpl/gstdisksrc.sgml:Title ##### -->
181 <!-- ##### SECTION ./tmpl/gstesdsink.sgml:Long_Description ##### -->
187 <!-- ##### SECTION ./tmpl/gstesdsink.sgml:See_Also ##### -->
193 <!-- ##### SECTION ./tmpl/gstesdsink.sgml:Short_Description ##### -->
197 <!-- ##### SECTION ./tmpl/gstesdsink.sgml:Title ##### -->
201 <!-- ##### SECTION ./tmpl/gstfilter.sgml:Long_Description ##### -->
203 Filters take data in and spit data out. They are the main Element in a filter graph.
204 Filters have zero or more inputs and zero or more outputs. Filters are connected
205 together to form filter graphs. A GstFilter is the base class and is not very usefull
210 <!-- ##### SECTION ./tmpl/gstfilter.sgml:See_Also ##### -->
216 <!-- ##### SECTION ./tmpl/gstfilter.sgml:Short_Description ##### -->
217 Take data in and spit data out
220 <!-- ##### SECTION ./tmpl/gstfilter.sgml:Title ##### -->
224 <!-- ##### SECTION ./tmpl/gstgetbits.sgml:Long_Description ##### -->
230 <!-- ##### SECTION ./tmpl/gstgetbits.sgml:See_Also ##### -->
236 <!-- ##### SECTION ./tmpl/gstgetbits.sgml:Short_Description ##### -->
240 <!-- ##### SECTION ./tmpl/gstgetbits.sgml:Title ##### -->
244 <!-- ##### SECTION ./tmpl/gsthttpsrc.sgml:Long_Description ##### -->
246 Reads data from a URL.
250 <!-- ##### SECTION ./tmpl/gsthttpsrc.sgml:See_Also ##### -->
256 <!-- ##### SECTION ./tmpl/gsthttpsrc.sgml:Short_Description ##### -->
257 Reads data from a URL. (httpsrc)
260 <!-- ##### SECTION ./tmpl/gsthttpsrc.sgml:Title ##### -->
264 <!-- ##### SECTION ./tmpl/gstmeta.sgml:Long_Description ##### -->
266 The point of the metadata is to provide some context for each buffer. In
267 the case of audio data, for instance, it would provide the samplerate, bit
268 depth, and channel count.
272 The trick is that there may be multiple types of metadata ganged onto a
273 single buffer. This is why they're going to be a GList. This does mean
274 extra overhead in all cases, but I think it's minimal. The GList type
275 uses a chunk allocater so we're not wasting too much memory or time when
280 The trick is dealing with these structs as they pass through a pipeline,
281 since they have potentially different mutability properties. For
282 instance, if you've got a mp3 decoder connected to a tee, which sends the
283 buffers off to both the decoder and a spectrum analyzer (and then a
284 visualization element). The preferred setup would be where every time a
285 audio/raw metadata comes down the pipe (indicating a potential change in
286 audio format), the audiosink and spectrum would just save off pointers.
290 So when exactly does this metadata go away (deallocated)? Well, that
291 means metadata has to be refcounted. But that gets rather hairy. OK, in
292 the simple case you create a metadata struct, it comes with refcount set
293 to 1. You pass it through, it stays one, eventually someone drops the
294 last reference on the buffer it's tied to, you free the metadata too.
295 Easy. What if you tee? You could go through and for every metadata in
296 the buffer, increment the refcount by the same as the buffer. So in the
297 above case (tee'd), the audiosink and spectrum would get the buffer with a
298 refcount of 2, and it'd have a metadata with refcount 2. Do they ref it
299 each themselves, then unref the buffer? Or do they remove the metadata?
300 Removing the metadata would require a buffer CoW, which would suck, so
301 yes, they'd just ref the metadata.
305 But.... what if they're all in different threads? Then we're off into
306 the magical world of mutexes. Everything with a refcount in a threaded
307 world must be mutexed, else you can do atomic increment and atomic
308 dec and test. Can this be done from C easily? Perhaps it needs to be found
309 from kernel includes via autoconf?
313 The goal in designing the way metadata will be defined and used is to keep
314 it as simple as possible. The basis for accomplishing this is the fact
315 that in order to actually use (rather than just pass) the metadata, you
316 have to know what the fields are, which means you have to have compiled in
317 support for that metadata at build time. Therefore, if you're using
318 metadata, you must have build-time access to the necessary include file
323 So, given that you've got an include file, it would be nice if the whole
324 thing could be contained there. This would limit the need to be linked
325 against something, or have load-time requirements as to that has to be
326 loaded before you are.
330 Given that really all metadata is is a region of memory of a given size
331 with a certain signature, this isn't all that hard. First you lay out the
332 struct that defines the metadata. Then you set up #defines that expand to
333 the size of the struct in question, as well as the four-cc code that
338 The work is done by a few #defines, a la the #defines used in all Gtk
339 objects. The first is a NEW() method that allocates the memory for the
340 metadata and fills in all the normal fields (type, size, utility
341 functions). Because of the way it's defined (as a #define, no less),
342 you'll have to invoke it as META_NEW(meta), since it can't return()
347 Another #define will check to make sure a meta is indeed that type by
348 verifying the type code and size. Theoretically, meta types can overlap
349 with the same fourcc code, as long as they have different sizes. But I
350 probably ought to have a global public registry so people writing things
351 don't conflict. MSFT got that right, at least.
355 So, a hairy problem is what to do when there are utility functions
356 associated with one of these things. One option is to not bother with
357 them. This is very likely a possible solution, since metadata is supposed
358 to be flat memory of a given size. Not much to do to either free or copy
363 <!-- ##### SECTION ./tmpl/gstmeta.sgml:See_Also ##### -->
369 <!-- ##### SECTION ./tmpl/gstmeta.sgml:Short_Description ##### -->
370 Provide context for buffers
373 <!-- ##### SECTION ./tmpl/gstmeta.sgml:Title ##### -->
377 <!-- ##### SECTION ./tmpl/gstsinesrc.sgml:Long_Description ##### -->
379 Create a sine wave of a given frequency and volume.
383 <!-- ##### SECTION ./tmpl/gstsinesrc.sgml:See_Also ##### -->
389 <!-- ##### SECTION ./tmpl/gstsinesrc.sgml:Short_Description ##### -->
390 Create a sine wave of a given frequency and volume. (sinesrc)
393 <!-- ##### SECTION ./tmpl/gstsinesrc.sgml:Title ##### -->
397 <!-- ##### SECTION ./tmpl/gstsink.sgml:Long_Description ##### -->
399 The sink is the end of the filter graph. A typical sink would be an audio
405 <!-- ##### SECTION ./tmpl/gstsink.sgml:See_Also ##### -->
411 <!-- ##### SECTION ./tmpl/gstsink.sgml:Short_Description ##### -->
412 The end point of a filter graph
415 <!-- ##### SECTION ./tmpl/gstsink.sgml:Title ##### -->
419 <!-- ##### SECTION ./tmpl/gstsrc.sgml:Long_Description ##### -->
421 A GstSrc is the start of a filter graph. It typically is a file or an
422 audio source. It provides data for the next element in the graph.
427 <!-- ##### SECTION ./tmpl/gstsrc.sgml:See_Also ##### -->
433 <!-- ##### SECTION ./tmpl/gstsrc.sgml:Short_Description ##### -->
434 The start point of a filter graph
437 <!-- ##### SECTION ./tmpl/gstsrc.sgml:Title ##### -->
441 <!-- ##### SECTION ./tmpl/plugin.sgml:Long_Description ##### -->
447 <!-- ##### SECTION ./tmpl/plugin.sgml:See_Also ##### -->
453 <!-- ##### SECTION ./tmpl/plugin.sgml:Short_Description ##### -->
457 <!-- ##### SECTION ./tmpl/plugin.sgml:Title ##### -->
461 <!-- ##### SECTION ./tmpl/spectrum.sgml:Long_Description ##### -->
463 Frequencies of a spectrum analysis.
468 <!-- ##### SECTION ./tmpl/spectrum.sgml:See_Also ##### -->
474 <!-- ##### SECTION ./tmpl/spectrum.sgml:Short_Description ##### -->
475 Frequencies of a spectrum analysis.
478 <!-- ##### SECTION ./tmpl/spectrum.sgml:Title ##### -->
482 <!-- ##### SECTION ./tmpl/videoraw.sgml:Long_Description ##### -->
484 Information about video buffers.
488 <!-- ##### SECTION ./tmpl/videoraw.sgml:See_Also ##### -->
494 <!-- ##### SECTION ./tmpl/videoraw.sgml:Short_Description ##### -->
495 Information about video buffers.
498 <!-- ##### SECTION ./tmpl/videoraw.sgml:Title ##### -->
502 <!-- ##### MACRO COTHREAD_MAXTHREADS ##### -->
504 The maximum number of cothreads we are going to support.
508 <!-- ##### MACRO COTHREAD_STACKSIZE ##### -->
510 The default stack size of a cothread.
514 <!-- ##### MACRO DEBUG ##### -->
516 Use this macro to show debugging info. This is only usefull when developing new
518 If you #define DEBUG_ENABLED before including gst/gst.h, this macro will produce
522 @format: the format specification as in g_print
525 <!-- ##### MACRO DEBUG_ENTER ##### -->
533 <!-- ##### MACRO DEBUG_ENTER_STRING ##### -->
539 <!-- ##### MACRO DEBUG_LEAVE ##### -->
547 <!-- ##### MACRO DEBUG_LEAVE_STRING ##### -->
553 <!-- ##### MACRO DEBUG_NOPREFIX ##### -->
561 <!-- ##### MACRO DEBUG_SET_STRING ##### -->
569 <!-- ##### MACRO ERROR ##### -->
578 <!-- ##### MACRO ERROR_OBJECT ##### -->
588 <!-- ##### MACRO GBaseInitFunc ##### -->
594 <!-- ##### MACRO GCallback ##### -->
600 <!-- ##### MACRO GClassInitFunc ##### -->
606 <!-- ##### MACRO GEnumValue ##### -->
612 <!-- ##### MACRO GInstanceInitFunc ##### -->
618 <!-- ##### STRUCT GObject ##### -->
624 <!-- ##### MACRO GParamFlags ##### -->
630 <!-- ##### STRUCT GParamSpec ##### -->
639 <!-- ##### MACRO GST_ASYNCDISKSRC ##### -->
646 <!-- ##### MACRO GST_ASYNCDISKSRC_CLASS ##### -->
653 <!-- ##### MACRO GST_AUDIOSINK ##### -->
660 <!-- ##### MACRO GST_AUDIOSINK_CLASS ##### -->
667 <!-- ##### MACRO GST_AUDIOSRC ##### -->
674 <!-- ##### MACRO GST_AUDIOSRC_CLASS ##### -->
681 <!-- ##### MACRO GST_BIN ##### -->
688 <!-- ##### MACRO GST_BIN_CLASS ##### -->
695 <!-- ##### MACRO GST_BUFFER_POOL ##### -->
702 <!-- ##### MACRO GST_BUFFER_TYPE ##### -->
704 Retrieves the type id of the data in the buffer.
709 <!-- ##### MACRO GST_CAPS_LOCK ##### -->
711 Lock the caps structure
714 @caps: The caps structure to lock
716 <!-- ##### MACRO GST_CAPS_TRYLOCK ##### -->
718 Try to lock the caps structure
721 @caps: The caps structure to try to lock
723 <!-- ##### MACRO GST_CAPS_UNLOCK ##### -->
725 Unlock the caps structure
728 @caps: The caps structure to unlock
730 <!-- ##### MACRO GST_CONNECTION ##### -->
737 <!-- ##### MACRO GST_CONNECTION_CLASS ##### -->
744 <!-- ##### MACRO GST_CPU_FLAG_MMX ##### -->
746 A flag indicating that MMX instructions are supported.
750 <!-- ##### MACRO GST_CPU_FLAG_SSE ##### -->
752 A flag indicating that SSE instructions are supported.
756 <!-- ##### MACRO GST_DATA ##### -->
763 <!-- ##### MACRO GST_DATA_TYPE ##### -->
770 <!-- ##### MACRO GST_DEBUG_CHAR_MODE ##### -->
776 <!-- ##### MACRO GST_DEBUG_ENABLED ##### -->
782 <!-- ##### MACRO GST_DEBUG_ENABLE_CATEGORIES ##### -->
788 <!-- ##### MACRO GST_DEBUG_ENTER_STRING ##### -->
790 Combine #GST_DEBUG_ENTER and #GST_DEBUG_SET_STRING.
794 <!-- ##### MACRO GST_DEBUG_LEAVE_STRING ##### -->
800 <!-- ##### MACRO GST_DEBUG_NOPREFIX ##### -->
809 <!-- ##### MACRO GST_DEBUG_PREFIX ##### -->
818 <!-- ##### MACRO GST_DEBUG_SET_STRING ##### -->
820 Set the debug string for the current function, typically containing the arguments
821 to the current function, i.e. "('element')"
824 @format: printf-style format string
825 @args...: printf arguments
827 <!-- ##### MACRO GST_DISKSRC ##### -->
834 <!-- ##### MACRO GST_DISKSRC_CLASS ##### -->
841 <!-- ##### MACRO GST_ELEMENT ##### -->
848 <!-- ##### MACRO GST_ELEMENT_CLASS ##### -->
855 <!-- ##### MACRO GST_ELEMENT_IS_COTHREAD_STOPPING ##### -->
857 Queries whether the cothread holding this element needs to be stopped.
860 @obj: The element to query
862 <!-- ##### MACRO GST_ELEMENT_IS_MULTI_IN ##### -->
864 Query whether this object has multiple input pads.
868 @obj: Element to query for multiple input pads.
870 <!-- ##### MACRO GST_ESDSINK ##### -->
877 <!-- ##### MACRO GST_ESDSINK_CLASS ##### -->
882 @klass: <<<<<<< gstreamer-unused.sgml
884 <!-- ##### MACRO GST_FAKESINK ##### -->
891 <!-- ##### MACRO GST_FAKESINK_CLASS ##### -->
898 <!-- ##### MACRO GST_FAKESRC ##### -->
905 <!-- ##### MACRO GST_FAKESRC_CLASS ##### -->
912 <!-- ##### MACRO GST_FDSINK ##### -->
919 <!-- ##### MACRO GST_FDSINK_CLASS ##### -->
926 <!-- ##### MACRO GST_FDSRC ##### -->
933 <!-- ##### MACRO GST_FDSRC_CLASS ##### -->
940 <!-- ##### MACRO GST_FILTER ##### -->
947 <!-- ##### MACRO GST_FILTER_CLASS ##### -->
954 <!-- ##### MACRO GST_FILTER_FLAG_LAST ##### -->
956 subclass use this to start their flag enumeration
960 <!-- ##### MACRO GST_HTTPSRC ##### -->
968 <!-- ##### MACRO GST_HTTPSRC_CLASS ##### -->
975 <!-- ##### MACRO GST_IDENTITY ##### -->
982 <!-- ##### MACRO GST_IDENTITY_CLASS ##### -->
989 <!-- ##### MACRO GST_IS_ASYNCDISKSRC ##### -->
996 <!-- ##### MACRO GST_IS_ASYNCDISKSRC_CLASS ##### -->
1003 <!-- ##### MACRO GST_IS_AUDIOSINK ##### -->
1010 <!-- ##### MACRO GST_IS_AUDIOSINK_CLASS ##### -->
1017 <!-- ##### MACRO GST_IS_AUDIOSRC ##### -->
1024 <!-- ##### MACRO GST_IS_AUDIOSRC_CLASS ##### -->
1031 <!-- ##### MACRO GST_IS_BIN ##### -->
1038 <!-- ##### MACRO GST_IS_BIN_CLASS ##### -->
1045 <!-- ##### MACRO GST_IS_CONNECTION ##### -->
1052 <!-- ##### MACRO GST_IS_CONNECTION_CLASS ##### -->
1059 <!-- ##### MACRO GST_IS_DISKSRC ##### -->
1066 <!-- ##### MACRO GST_IS_DISKSRC_CLASS ##### -->
1073 <!-- ##### MACRO GST_IS_ELEMENT ##### -->
1080 <!-- ##### MACRO GST_IS_ELEMENT_CLASS ##### -->
1087 <!-- ##### MACRO GST_IS_ESDSINK ##### -->
1094 <!-- ##### MACRO GST_IS_ESDSINK_CLASS ##### -->
1101 <!-- ##### MACRO GST_IS_FAKESINK ##### -->
1108 <!-- ##### MACRO GST_IS_FAKESINK_CLASS ##### -->
1115 <!-- ##### MACRO GST_IS_FAKESRC ##### -->
1122 <!-- ##### MACRO GST_IS_FAKESRC_CLASS ##### -->
1129 <!-- ##### MACRO GST_IS_FDSINK ##### -->
1136 <!-- ##### MACRO GST_IS_FDSINK_CLASS ##### -->
1143 <!-- ##### MACRO GST_IS_FDSRC ##### -->
1150 <!-- ##### MACRO GST_IS_FDSRC_CLASS ##### -->
1157 <!-- ##### MACRO GST_IS_FILTER ##### -->
1164 <!-- ##### MACRO GST_IS_FILTER_CLASS ##### -->
1171 <!-- ##### MACRO GST_IS_HTTPSRC ##### -->
1178 <!-- ##### MACRO GST_IS_HTTPSRC_CLASS ##### -->
1185 <!-- ##### MACRO GST_IS_IDENTITY ##### -->
1192 <!-- ##### MACRO GST_IS_IDENTITY_CLASS ##### -->
1199 <!-- ##### MACRO GST_IS_OBJECT ##### -->
1206 <!-- ##### MACRO GST_IS_OBJECT_CLASS ##### -->
1213 <!-- ##### MACRO GST_IS_PAD ##### -->
1220 <!-- ##### MACRO GST_IS_PAD_CLASS ##### -->
1227 <!-- ##### MACRO GST_IS_PIPELINE ##### -->
1234 <!-- ##### MACRO GST_IS_PIPELINE_CLASS ##### -->
1241 <!-- ##### MACRO GST_IS_QUEUE ##### -->
1248 <!-- ##### MACRO GST_IS_QUEUE_CLASS ##### -->
1255 <!-- ##### MACRO GST_IS_SINESRC ##### -->
1262 <!-- ##### MACRO GST_IS_SINESRC_CLASS ##### -->
1269 <!-- ##### MACRO GST_IS_SINK ##### -->
1276 <!-- ##### MACRO GST_IS_SINK_CLASS ##### -->
1283 <!-- ##### MACRO GST_IS_SRC ##### -->
1290 <!-- ##### MACRO GST_IS_SRC_CLASS ##### -->
1297 <!-- ##### MACRO GST_IS_TEE ##### -->
1304 <!-- ##### MACRO GST_IS_TEE_CLASS ##### -->
1311 <!-- ##### MACRO GST_IS_THREAD ##### -->
1318 <!-- ##### MACRO GST_IS_THREAD_CLASS ##### -->
1325 <!-- ##### MACRO GST_META ##### -->
1332 <!-- ##### MACRO GST_META_FLAGS ##### -->
1334 Retrieve the flags of the given meta information.
1337 @meta: the meta information
1339 <!-- ##### MACRO GST_META_FLAG_IS_SET ##### -->
1341 Check if a given flag is set.
1344 @meta: the meta data to test
1345 @flag: the flag to test
1347 <!-- ##### MACRO GST_META_FLAG_SET ##### -->
1349 Set a flag in the meta data.
1352 @meta: the meta data
1353 @flag: the flag to set
1355 <!-- ##### MACRO GST_META_FLAG_UNSET ##### -->
1357 Clear a flag in the meta data.
1360 @meta: the meta data
1361 @flag: the flag to clear
1363 <!-- ##### MACRO GST_OBJECT ##### -->
1370 <!-- ##### MACRO GST_OBJECT_CLASS ##### -->
1377 <!-- ##### MACRO GST_OBJECT_FLAG_LAST ##### -->
1379 subclasses can use this value to start the enumeration of their flags
1383 <!-- ##### MACRO GST_PAD ##### -->
1390 <!-- ##### MACRO GST_PAD_CLASS ##### -->
1397 <!-- ##### MACRO GST_PAD_CONNECTED ##### -->
1399 Is this pad connected.
1402 @pad: the pad to check
1404 <!-- ##### MACRO GST_PAD_FACTORY_ALWAYS ##### -->
1406 Indicate that this pad will always be available.
1407 Use this in the factory definition.
1411 <!-- ##### MACRO GST_PAD_FACTORY_CAPS ##### -->
1413 Starts the declaration of a the capabilities for this padtemplate.
1416 @a...: a capability factory
1418 <!-- ##### MACRO GST_PAD_FACTORY_REQUEST ##### -->
1420 Indicates that this pad will be available on request. Use
1421 this in the factory definition.
1425 <!-- ##### MACRO GST_PAD_FACTORY_SINK ##### -->
1427 Indicates a sinkpad for the padfactory.
1431 <!-- ##### MACRO GST_PAD_FACTORY_SOMETIMES ##### -->
1433 Indicate that this pad will become available depending
1434 on the media type. Use this in the factory definition.
1438 <!-- ##### MACRO GST_PAD_FACTORY_SRC ##### -->
1440 Indicates a srcpad for the padfactory.
1444 <!-- ##### MACRO GST_PIPELINE ##### -->
1451 <!-- ##### MACRO GST_PIPELINE_CLASS ##### -->
1458 <!-- ##### MACRO GST_PROPS_BOOL_ID ##### -->
1464 <!-- ##### MACRO GST_PROPS_ENTRY_IS_VARIABLE ##### -->
1471 <!-- ##### MACRO GST_PROPS_FLOAT_RANGE_STRING ##### -->
1479 <!-- ##### MACRO GST_PROPS_FLOAT_STRING ##### -->
1486 <!-- ##### MACRO GST_PROPS_FOURCC_ID ##### -->
1492 <!-- ##### MACRO GST_PROPS_FOURCC_INT ##### -->
1494 Create a fourcc property out of an integer value.
1497 @a: the integer value
1499 <!-- ##### MACRO GST_PROPS_INT_ID ##### -->
1505 <!-- ##### MACRO GST_PROPS_INT_RANGE_ID ##### -->
1511 <!-- ##### MACRO GST_PROPS_LIST_ID ##### -->
1517 <!-- ##### MACRO GST_QUEUE ##### -->
1524 <!-- ##### MACRO GST_QUEUE_CLASS ##### -->
1531 <!-- ##### MACRO GST_RPAD_EOSFUNC ##### -->
1533 Get the EOS function of the real pad.
1536 @pad: the real pad to query.
1538 <!-- ##### MACRO GST_RPAD_NEGOTIATEFUNC ##### -->
1540 Get the negotiate function from the real pad.
1543 @pad: the real pad to query.
1545 <!-- ##### MACRO GST_RPAD_NEWCAPSFUNC ##### -->
1547 Get the newcaps function from the real pad.
1550 @pad: the real pad to query.
1552 <!-- ##### MACRO GST_RPAD_PULLFUNC ##### -->
1554 Get the pullfunction of the real pad.
1557 @pad: the real pad to query.
1559 <!-- ##### MACRO GST_RPAD_PUSHFUNC ##### -->
1561 Get the pushfunction of the real pad.
1564 @pad: the real pad to query.
1566 <!-- ##### MACRO GST_RPAD_QOSFUNC ##### -->
1568 Get the QoS function of the real pad.
1571 @pad: the real pad to query.
1573 <!-- ##### MACRO GST_SCHEDULE_ADD_ELEMENT ##### -->
1575 Fast macro to add an element to the scheduler.
1578 @sched: The scheduler to add the element to.
1579 @element: The element to add to the scheduler.
1581 <!-- ##### MACRO GST_SCHEDULE_DISABLE_ELEMENT ##### -->
1583 Fast macro to disable the element.
1586 @sched: The scheduler.
1587 @element: The element to disable.
1589 <!-- ##### MACRO GST_SCHEDULE_ENABLE_ELEMENT ##### -->
1591 Fast macro to enable the element in the scheduler.
1594 @sched: The scheduler.
1595 @element: The element to activate.
1597 <!-- ##### MACRO GST_SCHEDULE_ITERATE ##### -->
1599 Fast macro to perform one iteration of the scheduler.
1602 @sched: The scheduler to iterate.
1604 <!-- ##### MACRO GST_SCHEDULE_LOCK_ELEMENT ##### -->
1606 Fast macro to lock a given element.
1609 @sched: The scheduler.
1610 @element: The element to lock.
1612 <!-- ##### MACRO GST_SCHEDULE_PAD_CONNECT ##### -->
1614 Fast macro to connect two pads.
1617 @sched: The scheduler.
1618 @srcpad: The source pad.
1619 @sinkpad: The sink pad.
1621 <!-- ##### MACRO GST_SCHEDULE_PAD_DISCONNECT ##### -->
1623 Fast macro to disconnect two pads.
1626 @sched: The scheduler.
1627 @srcpad: The source pad.
1628 @sinkpad: The sink pad.
1630 <!-- ##### MACRO GST_SCHEDULE_REMOVE_ELEMENT ##### -->
1632 Fast macro to remove an element from the scheduler.
1635 @sched: The scheduler to remove the element from.
1636 @element: The element to remove from the scheduler.
1638 <!-- ##### MACRO GST_SCHEDULE_SAFETY ##### -->
1640 Handy macro to check for a non NULL scheduler. The next block of statements
1641 will only be axecuted if the scheduler is not NULL.
1644 @sched: the scheduler to query.
1646 <!-- ##### MACRO GST_SCHEDULE_UNLOCK_ELEMENT ##### -->
1648 Fast macro to unlock a given element.
1651 @sched: The scheduler.
1652 @element: The element to unlock.
1654 <!-- ##### MACRO GST_SCHED_PARENT ##### -->
1656 Get the parent #GstElement of this scheduler.
1660 @sched: the scheduler to query.
1662 <!-- ##### MACRO GST_SHOW_INFO ##### -->
1668 <!-- ##### MACRO GST_SINESRC ##### -->
1675 <!-- ##### MACRO GST_SINESRC_CLASS ##### -->
1682 <!-- ##### MACRO GST_SINK ##### -->
1689 <!-- ##### MACRO GST_SINK_CLASS ##### -->
1696 <!-- ##### MACRO GST_SINK_FLAG_LAST ##### -->
1702 <!-- ##### MACRO GST_SRC ##### -->
1709 <!-- ##### MACRO GST_SRC_ASYNC ##### -->
1711 This macro checks to see if the GST_SRC_ASYNC flag is set.
1714 @obj: GstSrc to check for flag in.
1716 <!-- ##### MACRO GST_SRC_CLASS ##### -->
1723 <!-- ##### MACRO GST_SRC_FLAGS ##### -->
1725 This macro returns the entire set of flags for the object.
1728 @obj: GstSrc to return flags for.
1730 <!-- ##### MACRO GST_SRC_IS_ASYNC ##### -->
1732 Query a GstSrc for the ASYNC flag
1735 @obj: The GstSrc to query
1737 <!-- ##### MACRO GST_SRC_SET_FLAGS ##### -->
1739 This macro sets the given flags.
1743 @flag: Flag to set, can by any number of bits in guint32.
1744 @obj: GstSrc to set flag in.
1746 <!-- ##### MACRO GST_SRC_UNSET_FLAGS ##### -->
1748 This macro usets the given flags.
1752 @flag: Flag to set, must be a single bit in guint32.
1753 @obj: GstSrc to unset flag in.
1755 <!-- ##### MACRO GST_STATE_IS_SET ##### -->
1757 This macro checks to see if the given state is set.
1760 @obj: Element to check for state.
1761 @flag: State to check for, must be a single bit in guint32.
1763 <!-- ##### MACRO GST_STATE_PLAYING_TO_READY ##### -->
1765 The Element is going from the PLAYING state to the READY state.
1769 <!-- ##### MACRO GST_STATE_READY_TO_PLAYING ##### -->
1771 The Element is going from the READY state to the PLAYING state.
1775 <!-- ##### MACRO GST_STATE_SET ##### -->
1777 This macro sets the given state on the element.
1780 @obj: Element to set state of.
1781 @flag: State to set, can be any number of bits in guint32.
1783 <!-- ##### MACRO GST_STATE_UNSET ##### -->
1785 This macro unsets the given state on the element.
1788 @obj: Element to unset state of.
1789 @flag: State to unset, can be any number of bits in guint32.
1791 <!-- ##### MACRO GST_TEE ##### -->
1798 <!-- ##### MACRO GST_TEE_CLASS ##### -->
1805 <!-- ##### MACRO GST_THREAD ##### -->
1812 <!-- ##### MACRO GST_THREAD_CLASS ##### -->
1819 <!-- ##### MACRO GST_TYPE_ASYNCDISKSRC ##### -->
1826 <!-- ##### MACRO GST_TYPE_AUDIOSINK ##### -->
1832 <!-- ##### MACRO GST_TYPE_AUDIOSRC ##### -->
1838 <!-- ##### MACRO GST_TYPE_BIN ##### -->
1844 <!-- ##### MACRO GST_TYPE_CONNECTION ##### -->
1850 <!-- ##### MACRO GST_TYPE_DISKSRC ##### -->
1856 <!-- ##### MACRO GST_TYPE_ELEMENT ##### -->
1862 <!-- ##### MACRO GST_TYPE_ESDSINK ##### -->
1868 <!-- ##### MACRO GST_TYPE_FAKESINK ##### -->
1874 <!-- ##### MACRO GST_TYPE_FAKESRC ##### -->
1880 <!-- ##### MACRO GST_TYPE_FDSINK ##### -->
1886 <!-- ##### MACRO GST_TYPE_FDSRC ##### -->
1892 <!-- ##### MACRO GST_TYPE_FILTER ##### -->
1898 <!-- ##### MACRO GST_TYPE_HTTPSRC ##### -->
1904 <!-- ##### MACRO GST_TYPE_IDENTITY ##### -->
1910 <!-- ##### MACRO GST_TYPE_OBJECT ##### -->
1916 <!-- ##### MACRO GST_TYPE_PAD ##### -->
1922 <!-- ##### MACRO GST_TYPE_PIPELINE ##### -->
1928 <!-- ##### MACRO GST_TYPE_QUEUE ##### -->
1934 <!-- ##### MACRO GST_TYPE_SINESRC ##### -->
1940 <!-- ##### MACRO GST_TYPE_SINK ##### -->
1946 <!-- ##### MACRO GST_TYPE_SRC ##### -->
1952 <!-- ##### MACRO GST_TYPE_TEE ##### -->
1958 <!-- ##### MACRO GST_TYPE_THREAD ##### -->
1964 <!-- ##### MACRO GType ##### -->
1970 <!-- ##### MACRO GTypeFlags ##### -->
1976 <!-- ##### STRUCT GTypeInfo ##### -->
1992 <!-- ##### MACRO GValue ##### -->
1998 <!-- ##### MACRO G_BEGIN_DECLS ##### -->
2004 <!-- ##### MACRO G_CALLBACK ##### -->
2011 <!-- ##### MACRO G_E ##### -->
2017 <!-- ##### MACRO G_END_DECLS ##### -->
2023 <!-- ##### MACRO G_IS_PARAM_SPEC_ENUM ##### -->
2030 <!-- ##### MACRO G_LN10 ##### -->
2036 <!-- ##### MACRO G_LN2 ##### -->
2042 <!-- ##### MACRO G_MAXUINT ##### -->
2048 <!-- ##### MACRO G_MAXULONG ##### -->
2054 <!-- ##### MACRO G_OBJECT ##### -->
2061 <!-- ##### MACRO G_OBJECT_CLASS_TYPE ##### -->
2068 <!-- ##### MACRO G_OBJECT_TYPE ##### -->
2074 <!-- ##### MACRO G_OBJECT_WARN_INVALID_PROPERTY_ID ##### -->
2083 <!-- ##### MACRO G_PARAM_READABLE ##### -->
2089 <!-- ##### MACRO G_PARAM_READWRITE ##### -->
2095 <!-- ##### MACRO G_PARAM_WRITABLE ##### -->
2101 <!-- ##### MACRO G_PI ##### -->
2107 <!-- ##### MACRO G_PI_2 ##### -->
2113 <!-- ##### MACRO G_PI_4 ##### -->
2119 <!-- ##### MACRO G_SIGNAL_NO_HOOKS ##### -->
2125 <!-- ##### MACRO G_SIGNAL_NO_RECURSE ##### -->
2131 <!-- ##### MACRO G_SIGNAL_RUN_CLEANUP ##### -->
2137 <!-- ##### MACRO G_SIGNAL_RUN_FIRST ##### -->
2143 <!-- ##### MACRO G_SIGNAL_RUN_LAST ##### -->
2149 <!-- ##### MACRO G_SQRT2 ##### -->
2155 <!-- ##### MACRO G_TYPE_BOOLEAN ##### -->
2161 <!-- ##### MACRO G_TYPE_BOXED ##### -->
2167 <!-- ##### MACRO G_TYPE_CHAR ##### -->
2173 <!-- ##### MACRO G_TYPE_CHECK_CLASS_CAST ##### -->
2179 <!-- ##### MACRO G_TYPE_CHECK_CLASS_TYPE ##### -->
2185 <!-- ##### MACRO G_TYPE_CHECK_INSTANCE_CAST ##### -->
2191 <!-- ##### MACRO G_TYPE_CHECK_INSTANCE_TYPE ##### -->
2197 <!-- ##### MACRO G_TYPE_DOUBLE ##### -->
2203 <!-- ##### MACRO G_TYPE_ENUM ##### -->
2209 <!-- ##### MACRO G_TYPE_FLAGS ##### -->
2215 <!-- ##### MACRO G_TYPE_FLAG_ABSTRACT ##### -->
2221 <!-- ##### MACRO G_TYPE_FLOAT ##### -->
2227 <!-- ##### MACRO G_TYPE_FROM_CLASS ##### -->
2234 <!-- ##### MACRO G_TYPE_INSTANCE_GET_CLASS ##### -->
2243 <!-- ##### MACRO G_TYPE_INT ##### -->
2249 <!-- ##### MACRO G_TYPE_LONG ##### -->
2255 <!-- ##### MACRO G_TYPE_NONE ##### -->
2261 <!-- ##### MACRO G_TYPE_PARAM ##### -->
2267 <!-- ##### MACRO G_TYPE_POINTER ##### -->
2273 <!-- ##### MACRO G_TYPE_STRING ##### -->
2279 <!-- ##### MACRO G_TYPE_UCHAR ##### -->
2285 <!-- ##### MACRO G_TYPE_UINT ##### -->
2291 <!-- ##### MACRO G_TYPE_ULONG ##### -->
2297 <!-- ##### MACRO G_VALUE_HOLDS_BOOLEAN ##### -->
2304 <!-- ##### MACRO G_VALUE_HOLDS_CHAR ##### -->
2311 <!-- ##### MACRO G_VALUE_HOLDS_DOUBLE ##### -->
2318 <!-- ##### MACRO G_VALUE_HOLDS_FLOAT ##### -->
2325 <!-- ##### MACRO G_VALUE_HOLDS_INT ##### -->
2332 <!-- ##### MACRO G_VALUE_HOLDS_LONG ##### -->
2339 <!-- ##### MACRO G_VALUE_HOLDS_POINTER ##### -->
2346 <!-- ##### MACRO G_VALUE_HOLDS_STRING ##### -->
2353 <!-- ##### MACRO G_VALUE_HOLDS_UCHAR ##### -->
2360 <!-- ##### MACRO G_VALUE_HOLDS_UINT ##### -->
2367 <!-- ##### MACRO G_VALUE_HOLDS_ULONG ##### -->
2374 <!-- ##### MACRO G_VALUE_TYPE ##### -->
2381 <!-- ##### STRUCT GstAsyncDiskSrc ##### -->
2387 <!-- ##### ARG GstAsyncDiskSrc:bytesperread ##### -->
2389 Specify how many bytes to read at a time.
2393 <!-- ##### ARG GstAsyncDiskSrc:length ##### -->
2395 Get the size of the current file.
2399 <!-- ##### ARG GstAsyncDiskSrc:location ##### -->
2401 Specify the location of the file to read.
2405 <!-- ##### ARG GstAsyncDiskSrc:offset ##### -->
2407 Specify the current offset in the file.
2411 <!-- ##### ARG GstAsyncDiskSrc:size ##### -->
2417 <!-- ##### STRUCT GstAsyncDiskSrcClass ##### -->
2423 <!-- ##### ENUM GstAsyncDiskSrcFlags ##### -->
2425 <informaltable pgwide=1 frame="none" role="enum">
2426 <tgroup cols="2"><colspec colwidth="2*"><colspec colwidth="8*">
2429 <entry>GST_ASYNCDISKSRC_OPEN</entry>
2430 <entry>the asyncdisksrc is open for reading</entry>
2433 </tbody></tgroup></informaltable>
2437 @GST_ASYNCDISKSRC_OPEN:
2438 @GST_ASYNCDISKSRC_FLAG_LAST:
2440 <!-- ##### STRUCT GstAudioSink ##### -->
2446 <!-- ##### SIGNAL GstAudioSink::handoff ##### -->
2448 The buffer is sent to the sound card.
2451 @gstaudiosink: the object which received the signal.
2452 @arg1: the audiosink.
2454 <!-- ##### ARG GstAudioSink:channels ##### -->
2460 <!-- ##### ARG GstAudioSink:format ##### -->
2466 <!-- ##### ARG GstAudioSink:frequency ##### -->
2472 <!-- ##### ARG GstAudioSink:mute ##### -->
2478 <!-- ##### STRUCT GstAudioSinkClass ##### -->
2484 <!-- ##### STRUCT GstAudioSrc ##### -->
2490 <!-- ##### ARG GstAudioSrc:bytes-per-read ##### -->
2492 The number of bytes per read.
2496 <!-- ##### ARG GstAudioSrc:channels ##### -->
2498 The number of channels (mono, stereo, ...)
2502 <!-- ##### ARG GstAudioSrc:curoffset ##### -->
2504 Get the current number of bytes read.
2508 <!-- ##### ARG GstAudioSrc:format ##### -->
2510 The audio format as defined in soundcard.h
2514 <!-- ##### ARG GstAudioSrc:frequency ##### -->
2520 <!-- ##### STRUCT GstAudioSrcClass ##### -->
2526 <!-- ##### STRUCT GstBinClass ##### -->
2532 <!-- ##### USER_FUNCTION GstBufferPoolCreateFunction ##### -->
2534 The function called when a buffer has to be created for this pool.
2537 @pool: the pool from which to create the buffer
2538 @user_data: any user data
2539 @Returns: a new buffer from the pool
2541 <!-- ##### USER_FUNCTION GstBufferPoolDestroyFunction ##### -->
2543 This function will be called when the given buffer has to be returned to
2547 @pool: the pool to return the buffer to
2548 @buffer: the buffer to return
2549 @user_data: any user data
2551 <!-- ##### ENUM GstCapsDefinition ##### -->
2559 <!-- ##### TYPEDEF GstCapsFactory ##### -->
2565 <!-- ##### TYPEDEF GstCapsFactoryEntry ##### -->
2571 <!-- ##### TYPEDEF GstCapsFactory[] ##### -->
2577 <!-- ##### STRUCT GstConnection ##### -->
2583 <!-- ##### STRUCT GstConnectionClass ##### -->
2589 <!-- ##### ARG GstDiskSink:closed ##### -->
2595 <!-- ##### ENUM GstDiskSinkFlags ##### -->
2601 @GST_DISKSINK_FLAG_LAST:
2603 <!-- ##### STRUCT GstDiskSrc ##### -->
2609 <!-- ##### ARG GstDiskSrc:bytesperread ##### -->
2611 Specify how many bytes to read at a time.
2615 <!-- ##### ARG GstDiskSrc:filesize ##### -->
2621 <!-- ##### ARG GstDiskSrc:location ##### -->
2623 Specify the location of the file to read.
2627 <!-- ##### ARG GstDiskSrc:offset ##### -->
2629 Get/set the current offset in the file.
2633 <!-- ##### ARG GstDiskSrc:size ##### -->
2635 Get the size of the file.
2639 <!-- ##### STRUCT GstDiskSrcClass ##### -->
2645 <!-- ##### ENUM GstDiskSrcFlags ##### -->
2647 <informaltable pgwide=1 frame="none" role="enum">
2648 <tgroup cols="2"><colspec colwidth="2*"><colspec colwidth="8*">
2651 <entry>GST_DISKSRC_OPEN</entry>
2652 <entry>the disksrc is open for reading</entry>
2655 </tbody></tgroup></informaltable>
2660 @GST_DISKSRC_FLAG_LAST:
2662 <!-- ##### SIGNAL GstElement::event ##### -->
2667 @gstelement: the object which received the signal.
2670 <!-- ##### SIGNAL GstElement::ghost-pad-removed ##### -->
2675 @gstelement: the object which received the signal.
2676 @arg1: The ghost pad that was removed.
2678 <!-- ##### SIGNAL GstElement::new-ghost-pad ##### -->
2681 Is trigered whenever a new ghost pad is added to an element
2684 @gstelement: the object which received the signal.
2685 @arg1: the new ghost pad that was added
2687 <!-- ##### STRUCT GstElementClass ##### -->
2693 <!-- ##### STRUCT GstElementFactory ##### -->
2695 This factory is used when registering the element, and contains the name
2696 of the element, the GtkType value for it, as well as a pointer to the
2697 GstElementDetails struct for the element.
2701 <!-- ##### STRUCT GstEsdSink ##### -->
2707 <!-- ##### STRUCT GstEsdSinkClass ##### -->
2713 <!-- ##### STRUCT GstFakeSink ##### -->
2719 <!-- ##### ARG GstFakeSink:num-sources ##### -->
2725 <!-- ##### STRUCT GstFakeSinkClass ##### -->
2731 <!-- ##### STRUCT GstFakeSrc ##### -->
2737 <!-- ##### ARG GstFakeSrc:patern ##### -->
2743 <!-- ##### STRUCT GstFakeSrcClass ##### -->
2749 <!-- ##### STRUCT GstFdSink ##### -->
2755 <!-- ##### STRUCT GstFdSinkClass ##### -->
2761 <!-- ##### STRUCT GstFdSrc ##### -->
2767 <!-- ##### STRUCT GstFdSrcClass ##### -->
2773 <!-- ##### STRUCT GstFilter ##### -->
2779 <!-- ##### STRUCT GstFilterClass ##### -->
2785 <!-- ##### STRUCT GstHttpSrc ##### -->
2791 <!-- ##### ARG GstHttpSrc:bytesperread ##### -->
2793 Specify how many bytes to read at a time.
2798 <!-- ##### ARG GstHttpSrc:location ##### -->
2800 Specify the location of the file. The location must be a fully qualified URL.
2804 <!-- ##### STRUCT GstHttpSrcClass ##### -->
2810 <!-- ##### STRUCT GstIdentity ##### -->
2816 <!-- ##### ARG GstIdentity:control ##### -->
2822 <!-- ##### STRUCT GstIdentityClass ##### -->
2828 <!-- ##### STRUCT GstMeta ##### -->
2833 @lock: for locking purposes
2834 @flags: the flags of the meta data
2835 @data: the meta data
2836 @size: the size of the meta data
2838 <!-- ##### ENUM GstMetaFlags ##### -->
2840 Flags indicating properties about the meta data.
2843 @GST_META_FREEABLE: the meta data can be freed
2845 <!-- ##### STRUCT GstObjectClass ##### -->
2851 <!-- ##### ARG GstPad:active ##### -->
2853 Indicates this pad is active
2857 <!-- ##### STRUCT GstPadClass ##### -->
2863 <<<<<<< gstreamer-unused.sgml
2866 <!-- ##### USER_FUNCTION GstPadEOSFunction ##### -->
2868 The function that will be called in an EOS case.
2871 @pad: the pad that needs to be set to EOS state
2872 @Returns: TRUE if EOS was successful, FALSE otherwise
2874 <!-- ##### TYPEDEF GstPadFactoryEntry ##### -->
2876 Defines an entry for a padfactory.
2880 <!-- ##### TYPEDEF GstPadFactory[] ##### -->
2886 <!-- ##### USER_FUNCTION GstPadNegotiateFunction ##### -->
2888 The function that will be called when negotiating.
2891 @pad: The pad that is being negotiated
2892 @caps: The current caps that are being negotiated
2893 @data: A generic gpointer that can be used to store user_data
2894 @Returns: The result of the negotiation process
2896 <!-- ##### ENUM GstPadNegotiateReturn ##### -->
2898 The possible results from padnegotiation.
2901 @GST_PAD_NEGOTIATE_FAIL: The pads could not agree about the media type.
2902 @GST_PAD_NEGOTIATE_AGREE: The pads agreed about the media type.
2903 @GST_PAD_NEGOTIATE_TRY: The pad did not agree and suggests another media type.
2905 <!-- ##### USER_FUNCTION GstPadNewCapsFunction ##### -->
2907 The function that will be called when the caps of the pad has
2911 @pad: The pad that has its caps changed
2912 @caps: the new caps of the pad
2914 <!-- ##### USER_FUNCTION GstPadPullFunction ##### -->
2916 The function that will be called when pulling buffers.
2919 @pad: the pad to pull
2920 @Returns: a GstBuffer
2922 <!-- ##### USER_FUNCTION GstPadPushFunction ##### -->
2925 The function that will be called when pushing a buffers.
2928 @pad: the pad to push
2929 @buf: a GstBuffer to push
2931 <!-- ##### USER_FUNCTION GstPadQoSFunction ##### -->
2933 The function that will be called when a QoS message is sent.
2936 @pad: the pad that sent the QoS message
2937 @qos_message: the message
2939 <!-- ##### STRUCT GstPipelineClass ##### -->
2945 <!-- ##### STRUCT GstPluginElement ##### -->
2951 <!-- ##### TYPEDEF GstPropsFactoryEntry ##### -->
2957 <!-- ##### TYPEDEF GstPropsFactory[] ##### -->
2963 <!-- ##### ENUM GstPropsId ##### -->
2968 @GST_PROPS_END_ID_NUM:
2969 @GST_PROPS_LIST_ID_NUM:
2970 @GST_PROPS_INT_ID_NUM:
2971 @GST_PROPS_INT_RANGE_ID_NUM:
2972 @GST_PROPS_FOURCC_ID_NUM:
2973 @GST_PROPS_BOOL_ID_NUM:
2975 <!-- ##### TYPEDEF GstPropsListFactory[] ##### -->
2981 <!-- ##### STRUCT GstQueue ##### -->
2987 <!-- ##### ARG GstQueue:block ##### -->
2989 Specify wether the queue blocks or not.
2993 <!-- ##### ARG GstQueue:timeout ##### -->
2999 <!-- ##### STRUCT GstQueueClass ##### -->
3005 <!-- ##### STRUCT GstScheduleChain ##### -->
3015 @cothreaded_elements:
3018 <!-- ##### STRUCT GstSineSrc ##### -->
3024 <!-- ##### ARG GstSineSrc:buffersize ##### -->
3030 <!-- ##### ARG GstSineSrc:channels ##### -->
3032 The number of channels.
3036 <!-- ##### ARG GstSineSrc:format ##### -->
3038 The format ad defined in soundcard.h
3042 <!-- ##### ARG GstSineSrc:freq ##### -->
3048 <!-- ##### ARG GstSineSrc:frequency ##### -->
3054 <!-- ##### ARG GstSineSrc:samplerate ##### -->
3060 <!-- ##### ARG GstSineSrc:tablesize ##### -->
3066 <!-- ##### ARG GstSineSrc:volume ##### -->
3068 The volume as a double 0.0 is silent, 1.0 is loudest.
3072 <!-- ##### STRUCT GstSineSrcClass ##### -->
3078 <!-- ##### STRUCT GstSink ##### -->
3084 <!-- ##### STRUCT GstSinkClass ##### -->
3090 <!-- ##### STRUCT GstSrc ##### -->
3096 <!-- ##### SIGNAL GstSrc::eos ##### -->
3098 An eos signal is triggered whenever the GstSrc has reached the end of
3103 @gstsrc: the object which received the signal.
3104 @arg1: the object which received the signal
3106 <!-- ##### STRUCT GstSrcClass ##### -->
3112 <!-- ##### ENUM GstSrcFlags ##### -->
3114 Flags for the GstSrc element
3117 @GST_SRC_ASYNC: Indicates that this src is asynchronous
3118 @GST_SRC_FLAG_LAST: subclasses can use this to number their flags
3120 <!-- ##### STRUCT GstTee ##### -->
3126 <!-- ##### STRUCT GstTeeClass ##### -->
3132 <!-- ##### ARG GstThread:create-thread ##### -->
3134 TRUE if the thread should be created.
3139 <!-- ##### STRUCT GstThreadClass ##### -->
3145 <!-- ##### STRUCT GstTrace ##### -->
3156 <!-- ##### STRUCT GstTraceEntry ##### -->
3166 <!-- ##### ARG GstTypeFind:type ##### -->
3168 Query the element for the current mime type
3172 <!-- ##### STRUCT GstXML ##### -->
3178 <!-- ##### SIGNAL GstXml::object-loaded ##### -->
3183 @gstxml: the object which received the signal.
3187 <!-- ##### MACRO INFO ##### -->
3196 <!-- ##### MACRO INFO_ELEMENT ##### -->
3206 <!-- ##### STRUCT MetaAudioRaw ##### -->
3217 <!-- ##### STRUCT MetaAudioSpectrum ##### -->
3230 <!-- ##### STRUCT MetaDGA ##### -->
3240 <!-- ##### STRUCT MetaOverlay ##### -->
3255 <!-- ##### STRUCT MetaVideoRaw ##### -->
3268 <!-- ##### STRUCT OverlayClip ##### -->
3278 <!-- ##### MACRO STACK_SIZE ##### -->
3284 <!-- ##### MACRO TRACE_ENABLE ##### -->
3286 must be defined to activate the tracing functionality.
3290 <!-- ##### FUNCTION cothread_get_data ##### -->
3299 <!-- ##### FUNCTION cothread_getcurrent ##### -->
3306 <!-- ##### FUNCTION cothread_init ##### -->
3312 <!-- ##### FUNCTION cothread_set_data ##### -->
3321 <!-- ##### FUNCTION g2g_object_class_find_property ##### -->
3330 <!-- ##### FUNCTION g2g_object_class_install_property ##### -->
3339 <!-- ##### FUNCTION g2g_object_class_list_properties ##### -->
3348 <!-- ##### FUNCTION g2g_object_new ##### -->
3354 @blah_varargs_stuff:
3357 <!-- ##### FUNCTION g2g_object_run_dispose ##### -->
3364 <!-- ##### FUNCTION g2g_param_spec_boolean ##### -->
3376 <!-- ##### FUNCTION g2g_param_spec_double ##### -->
3390 <!-- ##### FUNCTION g2g_param_spec_enum ##### -->
3403 <!-- ##### FUNCTION g2g_param_spec_float ##### -->
3417 <!-- ##### FUNCTION g2g_param_spec_int ##### -->
3431 <!-- ##### FUNCTION g2g_param_spec_long ##### -->
3445 <!-- ##### FUNCTION g2g_param_spec_pointer ##### -->
3456 <!-- ##### FUNCTION g2g_param_spec_string ##### -->
3468 <!-- ##### FUNCTION g2g_param_spec_uint ##### -->
3482 <!-- ##### FUNCTION g2g_param_spec_ulong ##### -->
3496 <!-- ##### FUNCTION g2g_signal_new ##### -->
3508 <!-- ##### FUNCTION g2g_type_register_static ##### -->
3519 <!-- ##### MACRO g_cclosure_marshal_STRING__OBJECT_POINTER ##### -->
3525 <!-- ##### MACRO g_cclosure_marshal_VOID__BOOLEAN ##### -->
3531 <!-- ##### MACRO g_cclosure_marshal_VOID__BOXED ##### -->
3537 <!-- ##### MACRO g_cclosure_marshal_VOID__CHAR ##### -->
3543 <!-- ##### MACRO g_cclosure_marshal_VOID__DOUBLE ##### -->
3549 <!-- ##### MACRO g_cclosure_marshal_VOID__ENUM ##### -->
3555 <!-- ##### MACRO g_cclosure_marshal_VOID__FLAGS ##### -->
3561 <!-- ##### MACRO g_cclosure_marshal_VOID__FLOAT ##### -->
3567 <!-- ##### MACRO g_cclosure_marshal_VOID__INT ##### -->
3573 <!-- ##### MACRO g_cclosure_marshal_VOID__LONG ##### -->
3579 <!-- ##### MACRO g_cclosure_marshal_VOID__PARAM ##### -->
3585 <!-- ##### MACRO g_cclosure_marshal_VOID__POINTER ##### -->
3591 <!-- ##### MACRO g_cclosure_marshal_VOID__STRING ##### -->
3597 <!-- ##### MACRO g_cclosure_marshal_VOID__UCHAR ##### -->
3603 <!-- ##### MACRO g_cclosure_marshal_VOID__UINT ##### -->
3609 <!-- ##### MACRO g_cclosure_marshal_VOID__UINT_POINTER ##### -->
3615 <!-- ##### MACRO g_cclosure_marshal_VOID__ULONG ##### -->
3621 <!-- ##### MACRO g_cclosure_marshal_VOID__VOID ##### -->
3627 <!-- ##### MACRO g_enum_register_static ##### -->
3633 <!-- ##### FUNCTION g_list_delete_link ##### -->
3642 <!-- ##### MACRO g_object_class_find_property ##### -->
3648 <!-- ##### MACRO g_object_class_install_property ##### -->
3654 <!-- ##### MACRO g_object_class_list_properties ##### -->
3660 <!-- ##### MACRO g_object_get_property ##### -->
3669 <!-- ##### FUNCTION g_object_get_type ##### -->
3676 <!-- ##### MACRO g_object_new ##### -->
3682 <!-- ##### MACRO g_object_ref ##### -->
3689 <!-- ##### MACRO g_object_run_dispose ##### -->
3695 <!-- ##### MACRO g_object_set ##### -->
3703 <!-- ##### MACRO g_object_unref ##### -->
3710 <!-- ##### MACRO g_param_spec_boolean ##### -->
3716 <!-- ##### MACRO g_param_spec_double ##### -->
3722 <!-- ##### MACRO g_param_spec_enum ##### -->
3728 <!-- ##### MACRO g_param_spec_float ##### -->
3734 <!-- ##### MACRO g_param_spec_int ##### -->
3740 <!-- ##### MACRO g_param_spec_long ##### -->
3746 <!-- ##### MACRO g_param_spec_pointer ##### -->
3752 <!-- ##### MACRO g_param_spec_string ##### -->
3758 <!-- ##### MACRO g_param_spec_uint ##### -->
3764 <!-- ##### MACRO g_param_spec_ulong ##### -->
3770 <!-- ##### MACRO g_signal_handler_block ##### -->
3778 <!-- ##### MACRO g_signal_handler_unblock ##### -->
3786 <!-- ##### MACRO g_signal_handlers_destroy ##### -->
3793 <!-- ##### FUNCTION g_signal_list_ids ##### -->
3802 <!-- ##### MACRO g_signal_lookup ##### -->
3808 <!-- ##### MACRO g_signal_new ##### -->
3814 <!-- ##### FUNCTION g_slist_delete_link ##### -->
3823 <!-- ##### MACRO g_string_printf ##### -->
3829 <!-- ##### MACRO g_string_printfa ##### -->
3835 <!-- ##### MACRO g_type_class_peek_parent ##### -->
3842 <!-- ##### MACRO g_type_class_ref ##### -->
3848 <!-- ##### MACRO g_type_class_unref ##### -->
3855 <!-- ##### MACRO g_type_from_name ##### -->
3862 <!-- ##### MACRO g_type_init ##### -->
3868 <!-- ##### MACRO g_type_is_a ##### -->
3874 <!-- ##### MACRO g_type_name ##### -->
3881 <!-- ##### MACRO g_type_parent ##### -->
3888 <!-- ##### MACRO g_type_register_static ##### -->
3894 <!-- ##### MACRO g_value_copy ##### -->
3902 <!-- ##### MACRO g_value_get_boolean ##### -->
3909 <!-- ##### MACRO g_value_get_char ##### -->
3916 <!-- ##### MACRO g_value_get_double ##### -->
3923 <!-- ##### MACRO g_value_get_enum ##### -->
3930 <!-- ##### MACRO g_value_get_float ##### -->
3937 <!-- ##### MACRO g_value_get_int ##### -->
3944 <!-- ##### MACRO g_value_get_long ##### -->
3951 <!-- ##### MACRO g_value_get_pointer ##### -->
3958 <!-- ##### MACRO g_value_get_string ##### -->
3965 <!-- ##### MACRO g_value_get_uchar ##### -->
3972 <!-- ##### MACRO g_value_get_uint ##### -->
3979 <!-- ##### MACRO g_value_get_ulong ##### -->
3986 <!-- ##### MACRO g_value_init ##### -->
3994 <!-- ##### MACRO g_value_set_boolean ##### -->
4002 <!-- ##### MACRO g_value_set_char ##### -->
4010 <!-- ##### MACRO g_value_set_double ##### -->
4018 <!-- ##### MACRO g_value_set_enum ##### -->
4026 <!-- ##### MACRO g_value_set_float ##### -->
4034 <!-- ##### MACRO g_value_set_int ##### -->
4042 <!-- ##### MACRO g_value_set_long ##### -->
4050 <!-- ##### MACRO g_value_set_pointer ##### -->
4058 <!-- ##### MACRO g_value_set_string ##### -->
4066 <!-- ##### MACRO g_value_set_uchar ##### -->
4074 <!-- ##### MACRO g_value_set_uint ##### -->
4082 <!-- ##### MACRO g_value_set_ulong ##### -->
4090 <!-- ##### MACRO g_value_unset ##### -->
4097 <!-- ##### VARIABLE gst_aggregator_details ##### -->
4103 <!-- ##### FUNCTION gst_asyncdisksrc_get_type ##### -->
4110 <!-- ##### FUNCTION gst_audiosink_chain ##### -->
4118 <!-- ##### FUNCTION gst_audiosink_get_type ##### -->
4125 <!-- ##### FUNCTION gst_audiosink_new ##### -->
4133 <!-- ##### FUNCTION gst_audiosink_set_channels ##### -->
4141 <!-- ##### FUNCTION gst_audiosink_set_format ##### -->
4149 <!-- ##### FUNCTION gst_audiosink_set_frequency ##### -->
4157 <!-- ##### FUNCTION gst_audiosink_sync_parms ##### -->
4164 <!-- ##### FUNCTION gst_audiosrc_get_type ##### -->
4171 <!-- ##### FUNCTION gst_audiosrc_new ##### -->
4179 <!-- ##### FUNCTION gst_audiosrc_push ##### -->
4186 <!-- ##### FUNCTION gst_autoplug_caps_list ##### -->
4199 <!-- ##### FUNCTION gst_autoplugfactory_load_thyself ##### -->
4207 <!-- ##### FUNCTION gst_autoplugfactory_save_thyself ##### -->
4216 <!-- ##### FUNCTION gst_bin_add_managed_element ##### -->
4224 <!-- ##### FUNCTION gst_bin_child_error ##### -->
4232 <!-- ##### FUNCTION gst_bin_create_plan ##### -->
4239 <!-- ##### FUNCTION gst_bin_get_type ##### -->
4246 <!-- ##### FUNCTION gst_bin_remove_managed_element ##### -->
4254 <!-- ##### FUNCTION gst_bin_schedule ##### -->
4261 <!-- ##### FUNCTION gst_bin_schedule_func ##### -->
4268 <!-- ##### FUNCTION gst_bin_set_element_manager ##### -->
4276 <!-- ##### FUNCTION gst_buffer_add_meta ##### -->
4284 <!-- ##### FUNCTION gst_buffer_get_first_meta ##### -->
4292 <!-- ##### FUNCTION gst_buffer_get_metas ##### -->
4300 <!-- ##### FUNCTION gst_buffer_pool_destroy_buffer ##### -->
4308 <!-- ##### FUNCTION gst_buffer_pool_new_buffer ##### -->
4316 <!-- ##### FUNCTION gst_buffer_pool_set_create_function ##### -->
4325 <!-- ##### FUNCTION gst_buffer_pool_set_destroy_function ##### -->
4334 <!-- ##### FUNCTION gst_buffer_remove_meta ##### -->
4342 <!-- ##### FUNCTION gst_caps_list_check_compatibility ##### -->
4351 <!-- ##### FUNCTION gst_caps_new_with_props ##### -->
4361 <!-- ##### FUNCTION gst_caps_register ##### -->
4369 <!-- ##### FUNCTION gst_caps_register_count ##### -->
4379 <!-- ##### FUNCTION gst_clock_current_diff ##### -->
4388 <!-- ##### FUNCTION gst_clock_get_system ##### -->
4395 <!-- ##### FUNCTION gst_clock_new ##### -->
4403 <!-- ##### FUNCTION gst_clock_register ##### -->
4411 <!-- ##### FUNCTION gst_clock_set ##### -->
4419 <!-- ##### FUNCTION gst_connection_get_type ##### -->
4426 <!-- ##### FUNCTION gst_connection_new ##### -->
4434 <!-- ##### FUNCTION gst_connection_push ##### -->
4441 <!-- ##### FUNCTION gst_debug_print_stack_trace ##### -->
4447 <!-- ##### FUNCTION gst_disksrc_get_type ##### -->
4454 <!-- ##### FUNCTION gst_element_change_state ##### -->
4463 <!-- ##### FUNCTION gst_element_get_type ##### -->
4470 <!-- ##### FUNCTION gst_element_info ##### -->
4479 <!-- ##### FUNCTION gst_element_install_std_props ##### -->
4488 <!-- ##### FUNCTION gst_element_load_thyself ##### -->
4498 <!-- ##### FUNCTION gst_element_loopfunc_wrapper ##### -->
4506 <!-- ##### FUNCTION gst_element_new ##### -->
4513 <!-- ##### FUNCTION gst_element_request_pad ##### -->
4523 <!-- ##### FUNCTION gst_element_restore_thyself ##### -->
4532 <!-- ##### FUNCTION gst_element_save_thyself ##### -->
4541 <!-- ##### FUNCTION gst_element_send_event ##### -->
4549 <!-- ##### FUNCTION gst_element_signal_eos ##### -->
4556 <!-- ##### FUNCTION gst_elementfactory_add_sink ##### -->
4564 <!-- ##### FUNCTION gst_elementfactory_add_src ##### -->
4572 <!-- ##### FUNCTION gst_elementfactory_can_sink_caps_list ##### -->
4581 <!-- ##### FUNCTION gst_elementfactory_can_src_caps_list ##### -->
4590 <!-- ##### FUNCTION gst_elementfactory_destroy ##### -->
4597 <!-- ##### FUNCTION gst_elementfactory_load_thyself ##### -->
4605 <!-- ##### FUNCTION gst_elementfactory_register ##### -->
4612 <!-- ##### FUNCTION gst_elementfactory_save_thyself ##### -->
4621 <!-- ##### FUNCTION gst_esdsink_chain ##### -->
4629 <!-- ##### FUNCTION gst_esdsink_get_type ##### -->
4636 <!-- ##### FUNCTION gst_esdsink_new ##### -->
4644 <!-- ##### FUNCTION gst_esdsink_set_channels ##### -->
4652 <!-- ##### FUNCTION gst_esdsink_set_format ##### -->
4660 <!-- ##### FUNCTION gst_esdsink_set_frequency ##### -->
4668 <!-- ##### FUNCTION gst_esdsink_sync_parms ##### -->
4675 <!-- ##### FUNCTION gst_extra_get_filename_type ##### -->
4682 <!-- ##### FUNCTION gst_fakesink_chain ##### -->
4690 <!-- ##### FUNCTION gst_fakesink_get_type ##### -->
4697 <!-- ##### FUNCTION gst_fakesink_new ##### -->
4705 <!-- ##### FUNCTION gst_fakesrc_get_type ##### -->
4712 <!-- ##### FUNCTION gst_fakesrc_new ##### -->
4720 <!-- ##### FUNCTION gst_fakesrc_push ##### -->
4727 <!-- ##### FUNCTION gst_fdsink_chain ##### -->
4735 <!-- ##### FUNCTION gst_fdsink_get_type ##### -->
4742 <!-- ##### FUNCTION gst_fdsink_new ##### -->
4750 <!-- ##### FUNCTION gst_fdsink_new_with_fd ##### -->
4759 <!-- ##### FUNCTION gst_fdsrc_get_type ##### -->
4766 <!-- ##### FUNCTION gst_filter_get_type ##### -->
4773 <!-- ##### FUNCTION gst_filter_new ##### -->
4781 <!-- ##### FUNCTION gst_httpsrc_get_type ##### -->
4788 <!-- ##### FUNCTION gst_identity_chain ##### -->
4796 <!-- ##### FUNCTION gst_identity_get_type ##### -->
4803 <!-- ##### FUNCTION gst_identity_new ##### -->
4811 <!-- ##### MACRO gst_info ##### -->
4819 <!-- ##### MACRO gst_marshal_VOID__BOOLEAN ##### -->
4825 <!-- ##### MACRO gst_marshal_VOID__INT ##### -->
4831 <!-- ##### MACRO gst_marshal_VOID__INT_INT ##### -->
4837 <!-- ##### MACRO gst_marshal_VOID__OBJECT ##### -->
4843 <!-- ##### MACRO gst_marshal_VOID__OBJECT_POINTER ##### -->
4849 <!-- ##### MACRO gst_marshal_VOID__POINTER ##### -->
4855 <!-- ##### MACRO gst_marshal_VOID__STRING ##### -->
4861 <!-- ##### MACRO gst_marshal_VOID__VOID ##### -->
4867 <!-- ##### MACRO gst_meta_new ##### -->
4869 Create new meta data.
4872 @type: the type of the meta data to create
4874 <!-- ##### FUNCTION gst_meta_new_size ##### -->
4882 <!-- ##### FUNCTION gst_meta_ref ##### -->
4889 <!-- ##### FUNCTION gst_meta_unref ##### -->
4896 <!-- ##### FUNCTION gst_object_get_type ##### -->
4903 <!-- ##### FUNCTION gst_object_new ##### -->
4910 <!-- ##### FUNCTION gst_pad_add_ghost_parent ##### -->
4918 <!-- ##### MACRO gst_pad_eos ##### -->
4920 Call the EOS function of the pad
4923 @pad: the pad to call the eos function of.
4925 <!-- ##### FUNCTION gst_pad_eos_func ##### -->
4933 <!-- ##### FUNCTION gst_pad_event ##### -->
4944 <!-- ##### FUNCTION gst_pad_get_caps_by_name ##### -->
4953 <!-- ##### FUNCTION gst_pad_get_caps_list ##### -->
4961 <!-- ##### FUNCTION gst_pad_get_directory ##### -->
4969 <!-- ##### FUNCTION gst_pad_get_ghost_parents ##### -->
4977 <!-- ##### FUNCTION gst_pad_get_type ##### -->
4984 <!-- ##### FUNCTION gst_pad_get_type_id ##### -->
4992 <!-- ##### FUNCTION gst_pad_handle_qos ##### -->
5000 <!-- ##### FUNCTION gst_pad_negotiate_proxy ##### -->
5012 <!-- ##### FUNCTION gst_pad_pull_region ##### -->
5022 <!-- ##### FUNCTION gst_pad_remove_ghost_parent ##### -->
5030 <!-- ##### FUNCTION gst_pad_renegotiate ##### -->
5038 <!-- ##### FUNCTION gst_pad_save_thyself ##### -->
5047 <!-- ##### FUNCTION gst_pad_set_caps ##### -->
5056 <!-- ##### FUNCTION gst_pad_set_caps_list ##### -->
5064 <!-- ##### FUNCTION gst_pad_set_eos ##### -->
5072 <!-- ##### FUNCTION gst_pad_set_eos_function ##### -->
5080 <!-- ##### FUNCTION gst_pad_set_negotiate_function ##### -->
5088 <!-- ##### FUNCTION gst_pad_set_newcaps_function ##### -->
5096 <!-- ##### FUNCTION gst_pad_set_pull_function ##### -->
5104 <!-- ##### FUNCTION gst_pad_set_qos_function ##### -->
5112 <!-- ##### FUNCTION gst_pad_set_type_id ##### -->
5120 <!-- ##### FUNCTION gst_pad_try_connect ##### -->
5129 <!-- ##### FUNCTION gst_padtemplate_create ##### -->
5140 <!-- ##### FUNCTION gst_pipeline_get_type ##### -->
5147 <!-- ##### FUNCTION gst_pipeline_iterate ##### -->
5154 <!-- ##### FUNCTION gst_plugin_add_autoplugger ##### -->
5162 <!-- ##### FUNCTION gst_plugin_add_factory ##### -->
5170 <!-- ##### FUNCTION gst_plugin_add_type ##### -->
5178 <!-- ##### FUNCTION gst_plugin_feature_get_type ##### -->
5185 <!-- ##### FUNCTION gst_plugin_get_autoplug_list ##### -->
5193 <!-- ##### FUNCTION gst_plugin_get_factory_list ##### -->
5201 <!-- ##### FUNCTION gst_plugin_get_type_list ##### -->
5209 <!-- ##### FUNCTION gst_plugin_init ##### -->
5215 <!-- ##### FUNCTION gst_plugin_load_autoplugfactory ##### -->
5223 <!-- ##### FUNCTION gst_plugin_load_elementfactory ##### -->
5231 <!-- ##### FUNCTION gst_plugin_load_typefactory ##### -->
5238 <!-- ##### FUNCTION gst_plugin_new ##### -->
5248 <!-- ##### FUNCTION gst_props_get_boolean ##### -->
5257 <!-- ##### FUNCTION gst_props_get_float ##### -->
5266 <!-- ##### FUNCTION gst_props_get_fourcc_int ##### -->
5275 <!-- ##### FUNCTION gst_props_get_int ##### -->
5284 <!-- ##### FUNCTION gst_props_get_string ##### -->
5293 <!-- ##### FUNCTION gst_props_register ##### -->
5301 <!-- ##### FUNCTION gst_props_register_count ##### -->
5310 <!-- ##### FUNCTION gst_queue_chain ##### -->
5318 <!-- ##### FUNCTION gst_queue_get_type ##### -->
5325 <!-- ##### FUNCTION gst_queue_new ##### -->
5333 <!-- ##### FUNCTION gst_queue_push ##### -->
5340 <!-- ##### FUNCTION gst_schedule_add_element ##### -->
5348 <!-- ##### FUNCTION gst_schedule_disable_element ##### -->
5356 <!-- ##### FUNCTION gst_schedule_enable_element ##### -->
5364 <!-- ##### FUNCTION gst_schedule_iterate ##### -->
5372 <!-- ##### FUNCTION gst_schedule_new ##### -->
5380 <!-- ##### FUNCTION gst_schedule_pad_connect ##### -->
5389 <!-- ##### FUNCTION gst_schedule_pad_disconnect ##### -->
5398 <!-- ##### FUNCTION gst_schedule_pad_select ##### -->
5407 <!-- ##### FUNCTION gst_schedule_remove_element ##### -->
5415 <!-- ##### FUNCTION gst_schedule_show ##### -->
5422 <!-- ##### FUNCTION gst_scheduler_disable_element ##### -->
5430 <!-- ##### FUNCTION gst_scheduler_enable_element ##### -->
5438 <!-- ##### FUNCTION gst_schedulerfactory_get_type ##### -->
5445 <!-- ##### FUNCTION gst_sinesrc_get_type ##### -->
5452 <!-- ##### FUNCTION gst_sinesrc_new ##### -->
5460 <!-- ##### FUNCTION gst_sinesrc_push ##### -->
5467 <!-- ##### FUNCTION gst_sink_get_type ##### -->
5474 <!-- ##### FUNCTION gst_sink_new ##### -->
5482 <!-- ##### FUNCTION gst_src_get_type ##### -->
5489 <!-- ##### FUNCTION gst_src_push ##### -->
5496 <!-- ##### FUNCTION gst_src_push_region ##### -->
5505 <!-- ##### FUNCTION gst_src_signal_eos ##### -->
5512 <!-- ##### FUNCTION gst_tee_chain ##### -->
5520 <!-- ##### FUNCTION gst_tee_get_type ##### -->
5527 <!-- ##### FUNCTION gst_tee_new ##### -->
5535 <!-- ##### FUNCTION gst_tee_new_pad ##### -->
5543 <!-- ##### FUNCTION gst_thread_get_type ##### -->
5550 <!-- ##### FUNCTION gst_thread_iterate ##### -->
5557 <!-- ##### FUNCTION gst_thread_main_loop ##### -->
5564 <!-- ##### MACRO gst_trace_add_entry ##### -->
5574 <!-- ##### FUNCTION gst_trace_destroy ##### -->
5581 <!-- ##### FUNCTION gst_trace_flush ##### -->
5588 <!-- ##### MACRO gst_trace_get_offset ##### -->
5595 <!-- ##### MACRO gst_trace_get_remaining ##### -->
5602 <!-- ##### MACRO gst_trace_get_size ##### -->
5609 <!-- ##### FUNCTION gst_trace_new ##### -->
5618 <!-- ##### FUNCTION gst_trace_read_tsc ##### -->
5625 <!-- ##### FUNCTION gst_trace_set_default ##### -->
5632 <!-- ##### FUNCTION gst_trace_text_flush ##### -->
5639 <!-- ##### FUNCTION gst_type_add_sink ##### -->
5647 <!-- ##### FUNCTION gst_type_add_src ##### -->
5655 <!-- ##### FUNCTION gst_type_dump ##### -->
5661 <!-- ##### FUNCTION gst_type_get_sink_to_src ##### -->
5670 <!-- ##### FUNCTION gst_type_get_sinks ##### -->
5678 <!-- ##### FUNCTION gst_type_get_srcs ##### -->
5686 <!-- ##### FUNCTION gst_type_initialize ##### -->
5692 <!-- ##### FUNCTION gst_type_load_thyself ##### -->
5700 <!-- ##### FUNCTION gst_type_save_thyself ##### -->
5709 <!-- ##### FUNCTION gst_typefactory_load_thyself ##### -->
5717 <!-- ##### FUNCTION gst_typefactory_save_thyself ##### -->
5726 <!-- ##### FUNCTION gst_util_get_widget_arg ##### -->
5735 <!-- ##### FUNCTION gst_xml_new_from_memory ##### -->
5745 <!-- ##### FUNCTION plugin_initialize ##### -->
5751 <!-- ##### FUNCTION plugin_load ##### -->
5759 <!-- ##### FUNCTION plugin_load_absolute ##### -->
5767 <!-- ##### FUNCTION plugin_load_all ##### -->