mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-30 19:18:31 +00:00
buffer: pluralize the buffer flags
This commit is contained in:
parent
d8d7c62789
commit
7ee57702a8
2 changed files with 4 additions and 4 deletions
|
@ -687,7 +687,7 @@ init_post (GOptionContext * context, GOptionGroup * group, gpointer data,
|
||||||
|
|
||||||
g_type_class_ref (gst_object_flags_get_type ());
|
g_type_class_ref (gst_object_flags_get_type ());
|
||||||
g_type_class_ref (gst_bin_flags_get_type ());
|
g_type_class_ref (gst_bin_flags_get_type ());
|
||||||
g_type_class_ref (gst_buffer_flag_get_type ());
|
g_type_class_ref (gst_buffer_flags_get_type ());
|
||||||
g_type_class_ref (gst_buffer_copy_flags_get_type ());
|
g_type_class_ref (gst_buffer_copy_flags_get_type ());
|
||||||
g_type_class_ref (gst_bus_flags_get_type ());
|
g_type_class_ref (gst_bus_flags_get_type ());
|
||||||
g_type_class_ref (gst_bus_sync_reply_get_type ());
|
g_type_class_ref (gst_bus_sync_reply_get_type ());
|
||||||
|
@ -1053,7 +1053,7 @@ gst_deinit (void)
|
||||||
g_type_class_unref (g_type_class_peek (gst_index_factory_get_type ()));
|
g_type_class_unref (g_type_class_peek (gst_index_factory_get_type ()));
|
||||||
g_type_class_unref (g_type_class_peek (gst_object_flags_get_type ()));
|
g_type_class_unref (g_type_class_peek (gst_object_flags_get_type ()));
|
||||||
g_type_class_unref (g_type_class_peek (gst_bin_flags_get_type ()));
|
g_type_class_unref (g_type_class_peek (gst_bin_flags_get_type ()));
|
||||||
g_type_class_unref (g_type_class_peek (gst_buffer_flag_get_type ()));
|
g_type_class_unref (g_type_class_peek (gst_buffer_flags_get_type ()));
|
||||||
g_type_class_unref (g_type_class_peek (gst_buffer_copy_flags_get_type ()));
|
g_type_class_unref (g_type_class_peek (gst_buffer_copy_flags_get_type ()));
|
||||||
g_type_class_unref (g_type_class_peek (gst_bus_flags_get_type ()));
|
g_type_class_unref (g_type_class_peek (gst_bus_flags_get_type ()));
|
||||||
g_type_class_unref (g_type_class_peek (gst_bus_sync_reply_get_type ()));
|
g_type_class_unref (g_type_class_peek (gst_bus_sync_reply_get_type ()));
|
||||||
|
|
|
@ -158,7 +158,7 @@ typedef struct _GstBufferPool GstBufferPool;
|
||||||
#define GST_BUFFER_IS_DISCONT(buffer) (GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_DISCONT))
|
#define GST_BUFFER_IS_DISCONT(buffer) (GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_DISCONT))
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GstBufferFlag:
|
* GstBufferFlags:
|
||||||
* @GST_BUFFER_FLAG_LIVE: the buffer is live data and should be discarded in
|
* @GST_BUFFER_FLAG_LIVE: the buffer is live data and should be discarded in
|
||||||
* the PAUSED state.
|
* the PAUSED state.
|
||||||
* @GST_BUFFER_FLAG_DISCONT: the buffer marks a discontinuity in the stream.
|
* @GST_BUFFER_FLAG_DISCONT: the buffer marks a discontinuity in the stream.
|
||||||
|
@ -189,7 +189,7 @@ typedef enum {
|
||||||
GST_BUFFER_FLAG_MEDIA3 = (GST_MINI_OBJECT_FLAG_LAST << 7),
|
GST_BUFFER_FLAG_MEDIA3 = (GST_MINI_OBJECT_FLAG_LAST << 7),
|
||||||
GST_BUFFER_FLAG_MEDIA4 = (GST_MINI_OBJECT_FLAG_LAST << 8),
|
GST_BUFFER_FLAG_MEDIA4 = (GST_MINI_OBJECT_FLAG_LAST << 8),
|
||||||
GST_BUFFER_FLAG_LAST = (GST_MINI_OBJECT_FLAG_LAST << 16)
|
GST_BUFFER_FLAG_LAST = (GST_MINI_OBJECT_FLAG_LAST << 16)
|
||||||
} GstBufferFlag;
|
} GstBufferFlags;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GstBuffer:
|
* GstBuffer:
|
||||||
|
|
Loading…
Reference in a new issue