Commit bcd4aa8b authored by Kostya Shishkov's avatar Kostya Shishkov Committed by Luca Barbato

wavpack: fix wrong return value in wavpack_decode_block()

This function should return number of samples decoded, not number of bytes
decoded.
Spotted by Uoti Urpala.
Signed-off-by: 's avatarLuca Barbato <lu_zero@gentoo.org>
parent a2a38d96
...@@ -780,7 +780,7 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no, ...@@ -780,7 +780,7 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
s->samples = AV_RL32(buf); buf += 4; s->samples = AV_RL32(buf); buf += 4;
if(!s->samples){ if(!s->samples){
*data_size = 0; *data_size = 0;
return buf_size; return 0;
} }
}else{ }else{
s->samples = wc->samples; s->samples = wc->samples;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment