]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/mpegvideo_enc.c
More complete documentation for AVFrame.reference.
[ffmpeg] / libavcodec / mpegvideo_enc.c
index 284a1ad30b8e85490941d399e2e5250fbd561dc2..89d4562a799f82db571656f9abf187b75e2cc750 100644 (file)
@@ -425,7 +425,7 @@ int MPV_encode_init(AVCodecContext *avctx)
     }
 
     if(s->avctx->scenechange_threshold < 1000000000 && (s->flags & CODEC_FLAG_CLOSED_GOP)){
-        av_log(avctx, AV_LOG_ERROR, "closed gop with scene change detection arent supported yet, set threshold to 1000000000\n");
+        av_log(avctx, AV_LOG_ERROR, "closed gop with scene change detection are not supported yet, set threshold to 1000000000\n");
         return -1;
     }
 
@@ -1375,7 +1375,7 @@ static inline void dct_single_coeff_elimination(MpegEncContext *s, int n, int th
     }else
         skip_dc=1;
 
-    /* are all which we could set to zero are allready zero? */
+    /* Are all we could set to zero already zero? */
     if(last_index<=skip_dc - 1) return;
 
     for(i=0; i<=last_index; i++){