summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2011-10-29 23:39:02 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2011-10-29 23:41:05 +0200
commit0387ad892cdfa56e5a80ca25ee23e9d39de30e13 (patch)
tree51d13b4f71de6a78d368e5e97406ab51f54d703f /libavcodec/h264.c
parent0fd59f1d456d12ddcdf628e83111f22a21c00d8b (diff)
Be more verbose about unsupported H.264 bit-depths.
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c2
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;
}