mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
baseparse: arrange for properly disjoint frame flags
This commit is contained in:
parent
ed94dbf1d2
commit
ee6f6ff362
1 changed files with 4 additions and 4 deletions
|
@ -116,10 +116,10 @@ G_BEGIN_DECLS
|
|||
typedef enum {
|
||||
GST_BASE_PARSE_FRAME_FLAG_NONE = 0,
|
||||
GST_BASE_PARSE_FRAME_FLAG_NEW_FRAME = (1 << 0),
|
||||
GST_BASE_PARSE_FRAME_FLAG_NO_FRAME = (1 << 0),
|
||||
GST_BASE_PARSE_FRAME_FLAG_CLIP = (1 << 1),
|
||||
GST_BASE_PARSE_FRAME_FLAG_DROP = (1 << 2),
|
||||
GST_BASE_PARSE_FRAME_FLAG_QUEUE = (1 << 3)
|
||||
GST_BASE_PARSE_FRAME_FLAG_NO_FRAME = (1 << 1),
|
||||
GST_BASE_PARSE_FRAME_FLAG_CLIP = (1 << 2),
|
||||
GST_BASE_PARSE_FRAME_FLAG_DROP = (1 << 3),
|
||||
GST_BASE_PARSE_FRAME_FLAG_QUEUE = (1 << 4)
|
||||
} GstBaseParseFrameFlags;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue