From 0bb80008747ddce030493fa805b0473ce219113d Mon Sep 17 00:00:00 2001 From: "Reynaldo H. Verdejo Pinochet" Date: Sun, 10 Jan 2016 22:54:12 -0800 Subject: [PATCH] flacparse: demote warning on wrong reserved value to fixme We are likely just parsing a backward-compatible stream we don't fully support. --- gst/audioparsers/gstflacparse.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gst/audioparsers/gstflacparse.c b/gst/audioparsers/gstflacparse.c index c89810233e..34e1e5e664 100644 --- a/gst/audioparsers/gstflacparse.c +++ b/gst/audioparsers/gstflacparse.c @@ -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; }