diff options
author | Michael Chinen <mchinen@gmail.com> | 2010-12-07 14:58:34 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2010-12-07 14:58:34 +0000 |
commit | a4151444bd024b0d506c3055e71c4df0e79dd49b (patch) | |
tree | a5a7343d4b5ef26111256a4cfe8267e741bf4d17 /libavcodec/flac.h | |
parent | 60a684939ab61dbfdf55105907808e015e5f6ec2 (diff) | |
download | ffmpeg-a4151444bd024b0d506c3055e71c4df0e79dd49b.tar.gz |
Define FLAC_MIN_FRAME_SIZE and use it in the FLAC decoder.
Patch by Michael Chinen [mchinen at gmail]
Originally committed as revision 25916 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/flac.h')
-rw-r--r-- | libavcodec/flac.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/flac.h b/libavcodec/flac.h index 7bcc1a1a9d..fcd80996dc 100644 --- a/libavcodec/flac.h +++ b/libavcodec/flac.h @@ -34,6 +34,7 @@ #define FLAC_MAX_CHANNELS 8 #define FLAC_MIN_BLOCKSIZE 16 #define FLAC_MAX_BLOCKSIZE 65535 +#define FLAC_MIN_FRAME_SIZE 11 enum { FLAC_CHMODE_INDEPENDENT = 0, |