buffer: only reserve 6 extra flags

Only reserve 6 extra flags instead of 10 so that more media specific flags
are available.
This commit is contained in:
Wim Taymans 2012-01-04 10:04:11 +01:00
parent bc1974e962
commit f9e7dad47a

View file

@ -220,7 +220,7 @@ typedef enum {
GST_BUFFER_FLAG_DELTA_UNIT = (GST_MINI_OBJECT_FLAG_LAST << 9),
GST_BUFFER_FLAG_IN_CAPS = (GST_MINI_OBJECT_FLAG_LAST << 10),
GST_BUFFER_FLAG_LAST = (GST_MINI_OBJECT_FLAG_LAST << 20)
GST_BUFFER_FLAG_LAST = (GST_MINI_OBJECT_FLAG_LAST << 16)
} GstBufferFlags;
/**