diff options
author | Paul B Mahol <onemda@gmail.com> | 2022-09-04 20:50:16 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2022-09-05 12:27:50 +0200 |
commit | 2ed5925e26f77fc377cedcefb3864dc1a4712210 (patch) | |
tree | 2a8c3c0a02eaf3ea5d5242d710800b7cdde466fb /libavcodec/flac.h | |
parent | 1e202d89c95d99d69412854f4ee9d5e569c3da69 (diff) | |
download | ffmpeg-2ed5925e26f77fc377cedcefb3864dc1a4712210.tar.gz |
avcodec/flac: smallest frame is 10 bytes
Fixes #9270
Diffstat (limited to 'libavcodec/flac.h')
-rw-r--r-- | libavcodec/flac.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flac.h b/libavcodec/flac.h index f118dbbff3..00e631ed20 100644 --- a/libavcodec/flac.h +++ b/libavcodec/flac.h @@ -33,7 +33,7 @@ #define FLAC_MAX_CHANNELS 8 #define FLAC_MIN_BLOCKSIZE 16 #define FLAC_MAX_BLOCKSIZE 65535 -#define FLAC_MIN_FRAME_SIZE 11 +#define FLAC_MIN_FRAME_SIZE 10 enum { FLAC_CHMODE_INDEPENDENT = 0, |