diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-02-10 17:50:50 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-02-10 17:50:50 +0100 |
commit | 3546f680d5497630bdb3092aef2de82d68075c38 (patch) | |
tree | b0fd0ed046163955595fac5e4caa21b4ec30ea9f /libavcodec/mpeg12.c | |
parent | baa8ec8d7416d0ea2f4b148bf704c081f87f4fa8 (diff) | |
download | ffmpeg-3546f680d5497630bdb3092aef2de82d68075c38.tar.gz |
Add missing newline to mpeg1/2 intra matrix error message.
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 c671fcf4f8..5e325cf92f 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", v); + av_log(s->avctx, AV_LOG_ERROR, "intra matrix specifies invalid DC quantizer %d, ignoring\n", v); v = 8; // needed by pink.mpg / issue1046 } matrix0[j] = v; |