baseparse: arrange for properly disjoint frame flags

This commit is contained in:
Mark Nauwelaerts 2012-03-07 11:23:56 +01:00
parent ed94dbf1d2
commit ee6f6ff362

View file

@ -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;
/**