diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-06-18 20:15:05 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-06-19 17:54:40 +0200 |
commit | f670c13f13999d268c2d565d2e161d6a32fa9715 (patch) | |
tree | e0767747bfa5a9ad49c4808c6f6640c7f5844dae /libavcodec/mpegvideo_enc.c | |
parent | b9d0a5fc215febfaa0c5b1ce5b0a799d59dd2a03 (diff) | |
download | ffmpeg-f670c13f13999d268c2d565d2e161d6a32fa9715.tar.gz |
avcodec: Rename ff_mpv_decode_mb() to ff_mpv_reconstruct_mb
The new name more accuratly describes what the function does
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/mpegvideo_enc.c')
-rw-r--r-- | libavcodec/mpegvideo_enc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c index 1003dea5b7..fffb113096 100644 --- a/libavcodec/mpegvideo_enc.c +++ b/libavcodec/mpegvideo_enc.c @@ -2774,7 +2774,7 @@ static inline void encode_mb_hq(MpegEncContext *s, MpegEncContext *backup, MpegE } if(s->avctx->mb_decision == FF_MB_DECISION_RD){ - ff_mpv_decode_mb(s, s->block); + ff_mpv_reconstruct_mb(s, s->block); score *= s->lambda2; score += sse_mb(s) << FF_LAMBDA_SHIFT; @@ -3479,7 +3479,7 @@ FF_ENABLE_DEPRECATION_WARNINGS } if(s->avctx->mb_decision == FF_MB_DECISION_BITS) - ff_mpv_decode_mb(s, s->block); + ff_mpv_reconstruct_mb(s, s->block); } else { int motion_x = 0, motion_y = 0; s->mv_type=MV_TYPE_16X16; @@ -3598,7 +3598,7 @@ FF_ENABLE_DEPRECATION_WARNINGS s->out_format == FMT_H263 && s->pict_type!=AV_PICTURE_TYPE_B) ff_h263_update_motion_val(s); - ff_mpv_decode_mb(s, s->block); + ff_mpv_reconstruct_mb(s, s->block); } /* clean the MV table in IPS frames for direct mode in B-frames */ |