Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-02-12 03:18:32 +0400
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-02-12 03:20:56 +0400
commit289520fd97395ffd5bf933ac80487e858bc4039d (patch)
tree6eacb91d0582a25da41c6402a051fa1acd27e0a4 /libavcodec/mpeg12.c
parent85f25cfa193f03277787f6f5cdf222e1d01d4821 (diff)
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.c2
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;