diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-10-29 23:39:02 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-10-29 23:41:05 +0200 |
commit | 0387ad892cdfa56e5a80ca25ee23e9d39de30e13 (patch) | |
tree | 51d13b4f71de6a78d368e5e97406ab51f54d703f /libavcodec | |
parent | 0fd59f1d456d12ddcdf628e83111f22a21c00d8b (diff) | |
download | ffmpeg-0387ad892cdfa56e5a80ca25ee23e9d39de30e13.tar.gz |
Be more verbose about unsupported H.264 bit-depths.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index e7f6f73818..7792d03ce7 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -2741,7 +2741,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0){ s->dsp.dct_bits = h->sps.bit_depth_luma > 8 ? 32 : 16; dsputil_init(&s->dsp, s->avctx); } else { - av_log(s->avctx, AV_LOG_DEBUG, "Unsupported bit depth: %d chroma_idc: %d\n", + av_log(s->avctx, AV_LOG_ERROR, "Unsupported bit depth: %d chroma_idc: %d\n", h->sps.bit_depth_luma, h->sps.chroma_format_idc); return -1; } |