avcodecmap: Demote WARNING to DEBUG

We cover all the needed formats already. The warning was just getting
in the way.
This commit is contained in:
Edward Hervey 2013-07-24 12:22:04 +02:00
parent 2556cb325a
commit b1dccb17e9

View file

@ -2453,7 +2453,7 @@ gst_ffmpeg_pixfmt_to_videoformat (enum PixelFormat pixfmt)
if (pixtofmttable[i].pixfmt == pixfmt)
return pixtofmttable[i].format;
GST_WARNING ("Unknown pixel format %d", pixfmt);
GST_DEBUG ("Unknown pixel format %d", pixfmt);
return GST_VIDEO_FORMAT_UNKNOWN;
}