wavpack: use more meaningful error codes

Signed-off-by: Paul B Mahol <onemda@gmail.com>
pull/6/merge
Paul B Mahol 12 years ago
parent f6b39376ce
commit 0fe8c9f458
  1. 4
      libavcodec/wavpack.c

@ -1228,13 +1228,13 @@ static int wavpack_decode_frame(AVCodecContext *avctx, void *data,
av_log(avctx, AV_LOG_ERROR, "Block %d has invalid size (size %d "
"vs. %d bytes left)\n", s->block, frame_size, buf_size);
wavpack_decode_flush(avctx);
return -1;
return AVERROR_INVALIDDATA;
}
if ((samplecount = wavpack_decode_block(avctx, s->block,
s->frame.data[0], got_frame_ptr,
buf, frame_size)) < 0) {
wavpack_decode_flush(avctx);
return -1;
return AVERROR_INVALIDDATA;
}
s->block++;
buf += frame_size; buf_size -= frame_size;

Loading…
Cancel
Save