gstelements_private: sync gst_buffer_get_flags_string() with new flags
authorGuillaume Desmottes <guillaume.desmottes@collabora.com>
Thu, 20 Jun 2019 08:19:14 +0000 (13:49 +0530)
committerTim-Philipp Müller <tim@centricular.com>
Thu, 8 Aug 2019 15:57:56 +0000 (16:57 +0100)
plugins/elements/gstelements_private.c

index 2c0ca58..47c0305 100644 (file)
@@ -58,9 +58,9 @@ gst_buffer_get_flags_string (GstBuffer * buffer)
   static const char flag_strings[] =
       "\000\000\000\000live\000decode-only\000discont\000resync\000corrupted\000"
       "marker\000header\000gap\000droppable\000delta-unit\000tag-memory\000"
-      "FIXME";
+      "sync-after\000non-droppable\000FIXME";
   static const guint8 flag_idx[] = { 0, 1, 2, 3, 4, 9, 21, 29, 36, 46, 53,
-    60, 64, 74, 85, 96
+    60, 64, 74, 85, 96, 107, 121,
   };
   int i, max_bytes;
   char *flag_str, *end;