mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
twinvq: consume block_align+1 packets as full ones
They can be produced by VQF. Signed-off-by: Diego Biurrun <diego@biurrun.de>
This commit is contained in:
committed by
Diego Biurrun
parent
1afa8a7568
commit
669fe50595
@@ -523,6 +523,9 @@ int ff_twinvq_decode_frame(AVCodecContext *avctx, void *data,
|
||||
|
||||
*got_frame_ptr = 1;
|
||||
|
||||
// VQF can deliver packets 1 byte greater than block align
|
||||
if (buf_size == avctx->block_align + 1)
|
||||
return buf_size;
|
||||
return avctx->block_align;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user