diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2007-11-14 15:30:15 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2007-11-14 15:30:15 +0000 |
commit | 8ef4de4e11089814ef4be6d9cac4cb38c21c5991 (patch) | |
tree | 640aa02547803d805df9e2351d3e054b35ae91de /libavcodec | |
parent | b64fa5b42629e5872074f03db6f499c11b96e161 (diff) | |
download | ffmpeg-8ef4de4e11089814ef4be6d9cac4cb38c21c5991.tar.gz |
Change the "report sample" message from AV_LOG_DEBUG to AV_LOG_ERROR.
Acked by Benjamin Larsson
Originally committed as revision 11023 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/nellymoserdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c index 80b420cec2..7edcfa9ab3 100644 --- a/libavcodec/nellymoserdec.c +++ b/libavcodec/nellymoserdec.c @@ -380,7 +380,7 @@ static int decode_tag(AVCodecContext * avctx, case 256: // 22050Hz blocks = 4; break; default: - av_log(avctx, AV_LOG_DEBUG, "Tag size %d unknown, report sample!\n", buf_size); + av_log(avctx, AV_LOG_ERROR, "Tag size %d unknown, report sample!\n", buf_size); return buf_size; } |