summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <edward@collabora.com>2013-07-24 12:22:04 +0200
committerEdward Hervey <edward@collabora.com>2013-07-24 12:22:04 +0200
commitb1dccb17e913c998b1874d2c4f0c822353a5523c (patch)
treecbc8b0c9d2f849a46ae42d473adbeef5506fdde8
parent2556cb325a1bf973ba2cd4e66749c5e58c99d866 (diff)
avcodecmap: Demote WARNING to DEBUG
We cover all the needed formats already. The warning was just getting in the way.
-rw-r--r--ext/libav/gstavcodecmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/libav/gstavcodecmap.c b/ext/libav/gstavcodecmap.c
index 966f544..88d19a0 100644
--- a/ext/libav/gstavcodecmap.c
+++ b/ext/libav/gstavcodecmap.c
@@ -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;
}