mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
498ae2c79f
Original commit message from CVS: 2005-03-29 Andy Wingo <wingo@pobox.com> * po/, docs/gst/: Commit automatic changes to docs and po files. * gst/elements/Makefile.am (libgstelements_la_LDFLAGS): Link to the versioned libgstbase. * check/Makefile.am: Depend on an unversioned gst-register, seems to make autoconf happier. * gst/base/Makefile.am: Make libgstbase a versioned lib.
210 lines
3.4 KiB
Text
210 lines
3.4 KiB
Text
<!-- ##### SECTION Title ##### -->
|
|
GstData
|
|
|
|
<!-- ##### SECTION Short_Description ##### -->
|
|
Abstract structure for information that is passed among elements
|
|
|
|
<!-- ##### SECTION Long_Description ##### -->
|
|
<para>
|
|
This abstract structure provides a common base for #GstBuffer, #GstBufferPool
|
|
and #GstEvent. It is the main data type that is passed along in a pipeline.
|
|
GstData provides refcounting, freeing and copying for its child classes.
|
|
</para>
|
|
|
|
<!-- ##### SECTION See_Also ##### -->
|
|
<para>
|
|
#GstBuffer, #GstBufferPool, #GstEvent
|
|
</para>
|
|
|
|
<!-- ##### MACRO GST_DATA ##### -->
|
|
<para>
|
|
Cast a pointer to a GstData
|
|
</para>
|
|
|
|
@data: The pointer to cast
|
|
|
|
|
|
<!-- ##### MACRO GST_DATA_TYPE ##### -->
|
|
<para>
|
|
Get the type of the GstData
|
|
</para>
|
|
|
|
@data: The data to get the type of
|
|
|
|
|
|
<!-- ##### MACRO GST_DATA_FLAGS ##### -->
|
|
<para>
|
|
Get the flags of this GstData
|
|
</para>
|
|
|
|
@data: The data to get the flags of
|
|
|
|
|
|
<!-- ##### MACRO GST_DATA_FLAG_SHIFT ##### -->
|
|
<para>
|
|
Shift a given flag so that it can be used in an or operation
|
|
</para>
|
|
|
|
@flag: The flag to shift
|
|
|
|
|
|
<!-- ##### MACRO GST_DATA_FLAG_UNSET ##### -->
|
|
<para>
|
|
Unset the given flag
|
|
</para>
|
|
|
|
@data: The data to unset the flag of
|
|
@flag: The flag to unset
|
|
|
|
|
|
<!-- ##### STRUCT GstData ##### -->
|
|
<para>
|
|
The base structure
|
|
</para>
|
|
|
|
@type: The type of this data.
|
|
@refcount: A refcount
|
|
@flags: The flags of this GstData
|
|
|
|
<!-- ##### USER_FUNCTION GstDataFreeFunction ##### -->
|
|
<para>
|
|
The signature of the free function. Subclasses should provide a free function
|
|
with this signature and pass it in the gst_data_init() function.
|
|
</para>
|
|
|
|
@data: The GstData to free
|
|
|
|
|
|
<!-- ##### USER_FUNCTION GstDataCopyFunction ##### -->
|
|
<para>
|
|
The signature of the copy function. Subclasses should provide a copy function
|
|
with this signature and pass it in the gst_data_init() function.
|
|
</para>
|
|
|
|
@data: The GstData to copy
|
|
@Returns: A new GstData that is a copy of data
|
|
|
|
|
|
<!-- ##### ENUM GstDataFlags ##### -->
|
|
<para>
|
|
Various flags that can be set on a GstData
|
|
</para>
|
|
|
|
@GST_DATA_READONLY: The data is readonly
|
|
@GST_DATA_FLAG_LAST: Subclasses can add additional flags starting from this offset
|
|
|
|
<!-- ##### MACRO GST_DATA_REFCOUNT ##### -->
|
|
<para>
|
|
Get access to the refcount field of the GstData
|
|
</para>
|
|
|
|
@data: The GstData to get the refcount field of
|
|
|
|
|
|
<!-- ##### MACRO GST_DATA_REFCOUNT_VALUE ##### -->
|
|
<para>
|
|
Get the current refcount value
|
|
</para>
|
|
|
|
@data: The GstData to query
|
|
|
|
|
|
<!-- ##### MACRO GST_DATA_COPY_FUNC ##### -->
|
|
<para>
|
|
Get access to the copy function of the data
|
|
</para>
|
|
|
|
@data: The data to query
|
|
|
|
|
|
<!-- ##### MACRO GST_DATA_FREE_FUNC ##### -->
|
|
<para>
|
|
Get access to the free function of the data
|
|
</para>
|
|
|
|
@data: The data to query
|
|
|
|
|
|
<!-- ##### FUNCTION gst_data_init ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@data:
|
|
@type:
|
|
@flags:
|
|
@free:
|
|
@copy:
|
|
|
|
|
|
<!-- ##### FUNCTION gst_data_dispose ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@data:
|
|
|
|
|
|
<!-- ##### FUNCTION gst_data_copy_into ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@data:
|
|
@target:
|
|
|
|
|
|
<!-- ##### FUNCTION gst_data_copy ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@data:
|
|
@Returns:
|
|
|
|
|
|
<!-- ##### FUNCTION gst_data_is_writable ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@data:
|
|
@Returns:
|
|
|
|
|
|
<!-- ##### FUNCTION gst_data_copy_on_write ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@data:
|
|
@Returns:
|
|
|
|
|
|
<!-- ##### FUNCTION gst_data_ref ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@data:
|
|
@Returns:
|
|
|
|
|
|
<!-- ##### FUNCTION gst_data_ref_by_count ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@data:
|
|
@count:
|
|
@Returns:
|
|
|
|
|
|
<!-- ##### FUNCTION gst_data_unref ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@data:
|
|
|
|
|