mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
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: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:
parent
a2a38d9665
commit
bcd4aa8bec
@ -780,7 +780,7 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
|
||||
s->samples = AV_RL32(buf); buf += 4;
|
||||
if(!s->samples){
|
||||
*data_size = 0;
|
||||
return buf_size;
|
||||
return 0;
|
||||
}
|
||||
}else{
|
||||
s->samples = wc->samples;
|
||||
|
Loading…
Reference in New Issue
Block a user