diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-02-12 00:18:32 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-02-12 00:20:56 +0100 |
commit | 289520fd97395ffd5bf933ac80487e858bc4039d (patch) | |
tree | 6eacb91d0582a25da41c6402a051fa1acd27e0a4 /libavcodec/mpeg12.c | |
parent | 85f25cfa193f03277787f6f5cdf222e1d01d4821 (diff) | |
download | ffmpeg-289520fd97395ffd5bf933ac80487e858bc4039d.tar.gz |
Reduce the verbosity of a mpeg1/2 invalid intra-matrix warning.
Fixes ticket #973.
Diffstat (limited to 'libavcodec/mpeg12.c')
-rw-r--r-- | libavcodec/mpeg12.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index 5e325cf92f..28c17e6eb3 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -1497,7 +1497,7 @@ static int load_matrix(MpegEncContext *s, uint16_t matrix0[64], uint16_t matrix1 return -1; } if (intra && i == 0 && v != 8) { - av_log(s->avctx, AV_LOG_ERROR, "intra matrix specifies invalid DC quantizer %d, ignoring\n", v); + av_log(s->avctx, AV_LOG_DEBUG, "intra matrix specifies invalid DC quantizer %d, ignoring\n", v); v = 8; // needed by pink.mpg / issue1046 } matrix0[j] = v; |