]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/flacenc.c
Merge commit 'e08c946c6860a78b0c479551d5f6735361160cbd'
[ffmpeg] / libavcodec / flacenc.c
index dc932c6e68edcec968145a2a08f4e630361e5fa0..1e9cc48b99cee4491d85da7a88f37eed59617e5d 100644 (file)
@@ -1259,7 +1259,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;