]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/mpegvideo_enc.c
lavc: Move pre_me to codec private options
[ffmpeg] / libavcodec / mpegvideo_enc.c
index 213367a84efc7beea2d7714d8c1abbf5598cf91e..d16e408c84fe3dd32ca5d747851e88009c95418a 100644 (file)
@@ -300,6 +300,8 @@ FF_DISABLE_DEPRECATION_WARNINGS
         s->rtp_payload_size = avctx->rtp_payload_size;
     if (avctx->me_penalty_compensation)
         s->me_penalty_compensation = avctx->me_penalty_compensation;
+    if (avctx->pre_me)
+        s->me_pre = avctx->pre_me;
 FF_ENABLE_DEPRECATION_WARNINGS
 #endif
 
@@ -3465,7 +3467,8 @@ static int encode_picture(MpegEncContext *s, int picture_number)
         s->lambda  = (s->lambda  * s->me_penalty_compensation + 128) >> 8;
         s->lambda2 = (s->lambda2 * (int64_t) s->me_penalty_compensation + 128) >> 8;
         if (s->pict_type != AV_PICTURE_TYPE_B) {
-            if((s->avctx->pre_me && s->last_non_b_pict_type==AV_PICTURE_TYPE_I) || s->avctx->pre_me==2){
+            if ((s->me_pre && s->last_non_b_pict_type == AV_PICTURE_TYPE_I) ||
+                s->me_pre == 2) {
                 s->avctx->execute(s->avctx, pre_estimate_motion_thread, &s->thread_context[0], NULL, context_count, sizeof(void*));
             }
         }