Browse Source

flacdec: There is an even smaller FLAC frame size possibility.

Originally committed as revision 17821 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Justin Ruggles 17 years ago
parent
commit
629fb5c46a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/flacdec.c

+ 1
- 1
libavcodec/flacdec.c View File

@@ -651,7 +651,7 @@ static int flac_decode_frame(AVCodecContext *avctx,

/* check that there is at least the smallest decodable amount of data.
this amount corresponds to the smallest valid FLAC frame possible. */
if (buf_size < 16)
if (buf_size < 11)
goto end;

/* check for inline header */


Loading…
Cancel
Save