diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2007-09-04 14:48:39 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-09-04 14:48:39 +0000 |
commit | 5d3de5ad2241dff4f9fe2f5a3c7f3e6684aa4077 (patch) | |
tree | 218dc11c91dc913efd37936e2a8366d9ca1ba1e1 /libavcodec/h264.c | |
parent | 0a1a0a805a18f2024de45359baea7c36d4a343d6 (diff) | |
download | ffmpeg-5d3de5ad2241dff4f9fe2f5a3c7f3e6684aa4077.tar.gz |
Silence warnings about NAL_SVC_NON_IDR in H.264.
patch by Carl Eugen Hoyos, cehoyos ag.or at
Originally committed as revision 10289 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-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 1649f712fa..853d253d93 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -7848,7 +7848,7 @@ static int decode_nal_units(H264Context *h, uint8_t *buf, int buf_size){ case NAL_AUXILIARY_SLICE: break; default: - av_log(avctx, AV_LOG_ERROR, "Unknown NAL code: %d (%d bits)\n", h->nal_unit_type, bit_length); + av_log(avctx, AV_LOG_DEBUG, "Unknown NAL code: %d (%d bits)\n", h->nal_unit_type, bit_length); } } |