mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
Fix last frame block size correction.
Originally committed as revision 22238 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
0bf5a0cf46
commit
bbe8fa1f83
@ -519,7 +519,7 @@ static void get_block_sizes(ALSDecContext *ctx, unsigned int *div_blocks,
|
||||
unsigned int remaining = ctx->cur_frame_length;
|
||||
|
||||
for (b = 0; b < ctx->num_blocks; b++) {
|
||||
if (remaining < div_blocks[b]) {
|
||||
if (remaining <= div_blocks[b]) {
|
||||
div_blocks[b] = remaining;
|
||||
ctx->num_blocks = b + 1;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user