summaryrefslogtreecommitdiffstats
path: root/libavcodec/flacenc.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2006-07-08 16:39:58 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2006-07-08 16:39:58 +0000
commitc6375bf23cf8929344b9c10d6bae12b7bf0fd79c (patch)
tree4b2064401ed9c933643c62f8cdf840f6cc205383 /libavcodec/flacenc.c
parentbac3be382eba51d854ec38f65c37faf55a51ef53 (diff)
downloadffmpeg-streaming-c6375bf23cf8929344b9c10d6bae12b7bf0fd79c.zip
ffmpeg-streaming-c6375bf23cf8929344b9c10d6bae12b7bf0fd79c.tar.gz
allows user-settable block size and fixes related typo
Originally committed as revision 5674 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/flacenc.c')
-rw-r--r--libavcodec/flacenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flacenc.c b/libavcodec/flacenc.c
index 6f26434..6d4e1d0 100644
--- a/libavcodec/flacenc.c
+++ b/libavcodec/flacenc.c
@@ -330,7 +330,7 @@ static int flac_encode_init(AVCodecContext *avctx)
if(avctx->frame_size > 0) {
if(avctx->frame_size < FLAC_MIN_BLOCKSIZE ||
- avctx->frame_size > FLAC_MIN_BLOCKSIZE) {
+ avctx->frame_size > FLAC_MAX_BLOCKSIZE) {
av_log(avctx, AV_LOG_ERROR, "invalid block size: %d\n",
avctx->frame_size);
return -1;
OpenPOWER on IntegriCloud