flacparse: demote warning on wrong reserved value to fixme
authorReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
Mon, 11 Jan 2016 06:54:12 +0000 (22:54 -0800)
committerReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
Mon, 11 Jan 2016 06:54:12 +0000 (22:54 -0800)
We are likely just parsing a backward-compatible stream we
don't fully support.

gst/audioparsers/gstflacparse.c

index c898102..34e1e5e 100644 (file)
@@ -1518,8 +1518,7 @@ gst_flac_parse_handle_block_type (GstFlacParse * flacparse, guint type,
       break;
     default:                   /* RESERVED */
       GST_INFO_OBJECT (flacparse, "Unhandled metadata header type '%u'", type);
-      GST_WARNING_OBJECT (flacparse,
-          "FLAC version might not be fully supported");
+      GST_FIXME_OBJECT (flacparse, "FLAC version might not be fully supported");
       break;
   }