summaryrefslogtreecommitdiff
path: root/libavdevice/dshow.c
diff options
context:
space:
mode:
authorrogerdpack <rogerpack2005@gmail.com>2013-01-15 23:09:54 -0700
committerrogerdpack <rogerpack2005@gmail.com>2013-01-16 00:11:15 -0700
commit6d33026668c460d162f5167b86b019649673eb7d (patch)
treee7eb9f54166caed8532cf70b42fd98de177abc9b /libavdevice/dshow.c
parentd71f8d74db5473fc11cf766a334d43506adbb35a (diff)
dshow: fix log message
Signed-off-by: rogerdpack <rogerpack2005@gmail.com>
Diffstat (limited to 'libavdevice/dshow.c')
-rw-r--r--libavdevice/dshow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c
index aaba9bc58e..f0b7f32af0 100644
--- a/libavdevice/dshow.c
+++ b/libavdevice/dshow.c
@@ -786,8 +786,8 @@ dshow_add_device(AVFormatContext *avctx,
codec->height = bih->biHeight;
codec->pix_fmt = dshow_pixfmt(bih->biCompression, bih->biBitCount);
if(bih->biCompression == MKTAG('H', 'D', 'Y', 'C')) {
- av_log(avctx, AV_LOG_ERROR, "attempt use full range for HDYC...");
- codec->color_range = AVCOL_RANGE_MPEG;
+ av_log(avctx, AV_LOG_DEBUG, "attempt use full range for HDYC...");
+ codec->color_range = AVCOL_RANGE_MPEG; // just in case it needs this...
}
if (codec->pix_fmt == AV_PIX_FMT_NONE) {
codec->codec_id = dshow_codecid(bih->biCompression);