mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 07:38:16 +00:00
basesink: lower GST_BASE_SRC_FLAG_LAST
It wouldn't leave that much room for subclass users
This commit is contained in:
parent
5e554fde91
commit
00feec6068
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ typedef enum {
|
|||
GST_BASE_SRC_FLAG_STARTING = (GST_ELEMENT_FLAG_LAST << 0),
|
||||
GST_BASE_SRC_FLAG_STARTED = (GST_ELEMENT_FLAG_LAST << 1),
|
||||
/* padding */
|
||||
GST_BASE_SRC_FLAG_LAST = (GST_ELEMENT_FLAG_LAST << 16)
|
||||
GST_BASE_SRC_FLAG_LAST = (GST_ELEMENT_FLAG_LAST << 6)
|
||||
} GstBaseSrcFlags;
|
||||
|
||||
#define GST_BASE_SRC_IS_STARTING(obj) GST_OBJECT_FLAG_IS_SET ((obj), GST_BASE_SRC_FLAG_STARTING)
|
||||
|
|
Loading…
Reference in a new issue