mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
wavpack: add missing .\n to entropy error message
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
9644fc95be
commit
b94f045b18
@ -916,7 +916,7 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
|
||||
case WP_ID_ENTROPY:
|
||||
if (size != 6 * (s->stereo_in + 1)) {
|
||||
av_log(avctx, AV_LOG_ERROR,
|
||||
"Entropy vars size should be %i, got %i",
|
||||
"Entropy vars size should be %i, got %i.\n",
|
||||
6 * (s->stereo_in + 1), size);
|
||||
bytestream2_skip(&gb, ssize);
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user