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
This commit is contained in:
Alex Beregszaszi 2007-11-14 15:30:15 +00:00
parent b64fa5b426
commit 8ef4de4e11
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}