mirror of https://git.ffmpeg.org/ffmpeg.git
brstm: fix number of samples for the last block
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
d0bdcbcb28
commit
7959c26fb0
|
@ -245,7 +245,7 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt)
|
|||
b->current_block++;
|
||||
if (b->current_block == b->block_count) {
|
||||
size = b->last_block_used_bytes;
|
||||
samples = size / 16 * 14;
|
||||
samples = size / (8 * codec->channels) * 14;
|
||||
} else if (b->current_block < b->block_count) {
|
||||
size = b->block_size;
|
||||
samples = b->samples_per_block;
|
||||
|
|
Loading…
Reference in New Issue