gstbase.c.types

Undocumented in source.

Public Imports

gid.basictypes
public import gid.basictypes;
Undocumented in source.
glib.c.types
public import glib.c.types;
Undocumented in source.
gmodule.c.types
public import gmodule.c.types;
Undocumented in source.
gobject.c.types
public import gobject.c.types;
Undocumented in source.
gst.c.types
public import gst.c.types;
Undocumented in source.

Members

Enums

GstAggregatorStartTimeSelection
enum GstAggregatorStartTimeSelection
GstBaseParseFrameFlags
enum GstBaseParseFrameFlags

Flags to be used in a #GstBaseParseFrame.

GstBaseSrcFlags
enum GstBaseSrcFlags

The #GstElement flags that a basesrc element may have.

GstCollectPadsStateFlags
enum GstCollectPadsStateFlags

Structs

GstAdapter
struct GstAdapter

This class is for elements that receive buffers in an undesired size. While for example raw video contains one image per buffer, the same is not true for a lot of other formats, especially those that come directly from a file. So if you have undefined buffer sizes and require a specific size, this object is for you.

GstAdapterClass
struct GstAdapterClass
GstAggregator
struct GstAggregator

Manages a set of pads with the purpose of aggregating their buffers. Control is given to the subclass when all pads have data.

GstAggregatorClass
struct GstAggregatorClass

The aggregator base class will handle in a thread-safe way all manners of concurrent flushes, seeks, pad additions and removals, leaving to the subclass the responsibility of clipping buffers, and aggregating buffers in the way the implementor sees fit.

GstAggregatorPad
struct GstAggregatorPad

Pads managed by a #GstAggregator subclass.

GstAggregatorPadClass
struct GstAggregatorPadClass
GstAggregatorPadPrivate
struct GstAggregatorPadPrivate
GstAggregatorPrivate
struct GstAggregatorPrivate
GstBaseParse
struct GstBaseParse

This base class is for parser elements that process data and splits it into separate audio/video/whatever frames.

GstBaseParseClass
struct GstBaseParseClass

Subclasses can override any of the available virtual methods or not, as needed. At minimum @handle_frame needs to be overridden.

GstBaseParseFrame
struct GstBaseParseFrame

Frame (context) data passed to each frame parsing virtual methods. In addition to providing the data to be checked for a valid frame or an already identified frame, it conveys additional metadata or control information from and to the subclass w.r.t. the particular frame in question (rather than global parameters). Some of these may apply to each parsing stage, others only to some a particular one. These parameters are effectively zeroed at start of each frame's processing, i.e. parsing virtual method invocation sequence.

GstBaseParsePrivate
struct GstBaseParsePrivate
GstBaseSink
struct GstBaseSink

#GstBaseSink is the base class for sink elements in GStreamer, such as xvimagesink or filesink. It is a layer on top of #GstElement that provides a simplified interface to plugin writers. #GstBaseSink handles many details for you, for example: preroll, clock synchronization, state changes, activation in push or pull mode, and queries.

GstBaseSinkClass
struct GstBaseSinkClass

Subclasses can override any of the available virtual methods or not, as needed. At the minimum, the @render method should be overridden to output/present buffers.

GstBaseSinkPrivate
struct GstBaseSinkPrivate
GstBaseSrc
struct GstBaseSrc

This is a generic base class for source elements. The following types of sources are supported:

GstBaseSrcClass
struct GstBaseSrcClass

Subclasses can override any of the available virtual methods or not, as needed. At the minimum, the @create method should be overridden to produce buffers.

GstBaseSrcPrivate
struct GstBaseSrcPrivate
GstBaseTransform
struct GstBaseTransform

This base class is for filter elements that process data. Elements that are suitable for implementation using #GstBaseTransform are ones where the size and caps of the output is known entirely from the input caps and buffer sizes. These include elements that directly transform one buffer into another, modify the contents of a buffer in-place, as well as elements that collate multiple input buffers into one output buffer, or that expand one input buffer into multiple output buffers. See below for more concrete use cases.

GstBaseTransformClass
struct GstBaseTransformClass

Subclasses can override any of the available virtual methods or not, as needed. At minimum either @transform or @transform_ip need to be overridden. If the element can overwrite the input data with the results (data is of the same type and quantity) it should provide @transform_ip.

GstBaseTransformPrivate
struct GstBaseTransformPrivate
GstBitReader
struct GstBitReader

#GstBitReader provides a bit reader that can read any number of bits from a memory buffer. It provides functions for reading any number of bits into 8, 16, 32 and 64 bit variables.

GstBitWriter
struct GstBitWriter

#GstBitWriter provides a bit writer that can write any number of bits into a memory buffer. It provides functions for writing any number of bits into 8, 16, 32 and 64 bit variables.

GstByteReader
struct GstByteReader

#GstByteReader provides a byte reader that can read different integer and floating point types from a memory buffer. It provides functions for reading signed/unsigned, little/big endian integers of 8, 16, 24, 32 and 64 bits and functions for reading little/big endian floating points numbers of 32 and 64 bits. It also provides functions to read NUL-terminated strings in various character encodings.

GstByteWriter
struct GstByteWriter

#GstByteWriter provides a byte writer and reader that can write/read different integer and floating point types to/from a memory buffer. It provides functions for writing/reading signed/unsigned, little/big endian integers of 8, 16, 24, 32 and 64 bits and functions for reading little/big endian floating points numbers of 32 and 64 bits. It also provides functions to write/read NUL-terminated strings in various character encodings.

GstCollectData
struct GstCollectData

Structure used by the collect_pads.

GstCollectDataPrivate
struct GstCollectDataPrivate
GstCollectPads
struct GstCollectPads

Manages a set of pads that operate in collect mode. This means that control is given to the manager of this object when all pads have data.

GstCollectPadsClass
struct GstCollectPadsClass
GstCollectPadsPrivate
struct GstCollectPadsPrivate
GstDataQueue
struct GstDataQueue

#GstDataQueue is an object that handles threadsafe queueing of objects. It also provides size-related functionality. This object should be used for any #GstElement that wishes to provide some sort of queueing functionality.

GstDataQueueClass
struct GstDataQueueClass
GstDataQueueItem
struct GstDataQueueItem

Structure used by #GstDataQueue. You can supply a different structure, as long as the top of the structure is identical to this structure.

GstDataQueuePrivate
struct GstDataQueuePrivate
GstDataQueueSize
struct GstDataQueueSize

Structure describing the size of a queue.

GstFlowCombiner
struct GstFlowCombiner

Utility struct to help handling #GstFlowReturn combination. Useful for #GstElement<!-- -->s that have multiple source pads and need to combine the different #GstFlowReturn for those pads.

GstPushSrc
struct GstPushSrc

This class is mostly useful for elements that cannot do random access, or at least very slowly. The source usually prefers to push out a fixed size buffer.

GstPushSrcClass
struct GstPushSrcClass

Subclasses can override any of the available virtual methods or not, as needed. At the minimum, the @fill method should be overridden to produce buffers.

GstQueueArray
struct GstQueueArray

#GstQueueArray is an object that provides standard queue functionality based on an array instead of linked lists. This reduces the overhead caused by memory management by a large factor.

GstTypeFindData
struct GstTypeFindData

The opaque #GstTypeFindData structure.