Skip to content
Snippets Groups Projects
Commit 72656670 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

Merge commit '669fe505'


* commit '669fe505':
  twinvq: consume block_align+1 packets as full ones

Conflicts:
	libavcodec/twinvq.c

See: 2e7a1fdd
Merged-by: default avatarMichael Niedermayer <michaelni@gmx.at>
parents a24aef5d 669fe505
No related branches found
No related tags found
No related merge requests found
...@@ -521,7 +521,10 @@ int ff_twinvq_decode_frame(AVCodecContext *avctx, void *data, ...@@ -521,7 +521,10 @@ int ff_twinvq_decode_frame(AVCodecContext *avctx, void *data,
*got_frame_ptr = 1; *got_frame_ptr = 1;
return ret; // VQF can deliver packets 1 byte greater than block align
if (buf_size == avctx->block_align + 1)
return buf_size;
return avctx->block_align;
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment