mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-19 05:49:09 +02:00
Add missing newline to mpeg1/2 intra matrix error message.
This commit is contained in:
parent
baa8ec8d74
commit
3546f680d5
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user