mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-17 13:04:50 +00:00
flacdec: account for frame and subframe header overhead when calculating
estimate for maximum frame size Originally committed as revision 18091 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
f121622114
commit
f5187c7f04
@ -147,8 +147,7 @@ static void allocate_buffers(FLACContext *s)
|
||||
assert(s->max_blocksize);
|
||||
|
||||
if (s->max_framesize == 0 && s->max_blocksize) {
|
||||
// FIXME header overhead
|
||||
s->max_framesize= (s->channels * s->bps * s->max_blocksize + 7)/ 8;
|
||||
s->max_framesize = 23 + (s->channels * s->bps * s->max_blocksize + 7) / 8;
|
||||
}
|
||||
|
||||
for (i = 0; i < s->channels; i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user