diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-21 01:02:13 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-05-03 18:26:12 +0200 |
commit | a5f8873620ce502d37d0cc3ef93ada2ea8fb8de7 (patch) | |
tree | f04a20b097c813143cf259c8001cc707fc6024d9 /libavcodec/flacenc.c | |
parent | 4a7af92cc80ced8498626401ed21f25ffe6740c8 (diff) | |
download | ffmpeg-a5f8873620ce502d37d0cc3ef93ada2ea8fb8de7.tar.gz |
silly typo fixes
Diffstat (limited to 'libavcodec/flacenc.c')
-rw-r--r-- | libavcodec/flacenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flacenc.c b/libavcodec/flacenc.c index 1699312c8c..15b0e5530d 100644 --- a/libavcodec/flacenc.c +++ b/libavcodec/flacenc.c @@ -1232,7 +1232,7 @@ static int flac_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, frame_bytes = encode_frame(s); - /* fallback to verbatim mode if the compressed frame is larger than it + /* Fall back on verbatim mode if the compressed frame is larger than it would be if encoded uncompressed. */ if (frame_bytes < 0 || frame_bytes > s->max_framesize) { s->frame.verbatim_only = 1; |