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:
Justin Ruggles 2009-03-21 01:27:28 +00:00
parent f121622114
commit f5187c7f04
1 changed files with 1 additions and 2 deletions

View File

@ -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++) {