Browse Source

wavpack: add an error message to a failure.

tags/n2.0
Anton Khirnov 12 years ago
parent
commit
0f3a0b24dd
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      libavcodec/wavpack.c

+ 4
- 1
libavcodec/wavpack.c View File

@@ -792,8 +792,11 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no,

if (!wc->mkv_mode) {
s->samples = bytestream2_get_le32(&gb);
if (s->samples != wc->samples)
if (s->samples != wc->samples) {
av_log(avctx, AV_LOG_ERROR, "Mismatching number of samples in "
"a sequence: %d and %d\n", wc->samples, s->samples);
return AVERROR_INVALIDDATA;
}

if (!s->samples) {
*got_frame_ptr = 0;


Loading…
Cancel
Save