GstBufferFlag

A set of buffer flags used to describe properties of a GstBuffer. GST_BUFFER_FLAG_READONLY the buffer is read-only. This means the data of the buffer should not be modified. The metadata might still be modified. GST_BUFFER_FLAG_PREROLL the buffer is part of a preroll and should not be displayed. GST_BUFFER_FLAG_DISCONT the buffer marks a discontinuity in the stream. This typically occurs after a seek or a dropped buffer from a live or network source. GST_BUFFER_FLAG_IN_CAPS the buffer has been added as a field in a GstCaps. GST_BUFFER_FLAG_GAP the buffer has been created to fill a gap in the stream. GST_BUFFER_FLAG_DELTA_UNIT this unit cannot be decoded independently. GST_BUFFER_FLAG_LAST additional flags can be added starting from this flag.

Values

ValueMeaning
FLAG_READONLYGstMiniObjectFlags.READONLY
FLAG_PREROLL(GstMiniObjectFlags.LAST << 0)
FLAG_DISCONT(GstMiniObjectFlags.LAST << 1)
FLAG_IN_CAPS(GstMiniObjectFlags.LAST << 2)
FLAG_GAP(GstMiniObjectFlags.LAST << 3)
FLAG_DELTA_UNIT(GstMiniObjectFlags.LAST << 4)
FLAG_LAST(GstMiniObjectFlags.LAST << 8)

Meta