summaryrefslogtreecommitdiff
path: root/libavcodec/h261dec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-06-18 20:15:05 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2017-06-19 17:54:40 +0200
commitf670c13f13999d268c2d565d2e161d6a32fa9715 (patch)
treee0767747bfa5a9ad49c4808c6f6640c7f5844dae /libavcodec/h261dec.c
parentb9d0a5fc215febfaa0c5b1ce5b0a799d59dd2a03 (diff)
downloadffmpeg-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/h261dec.c')
-rw-r--r--libavcodec/h261dec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h261dec.c b/libavcodec/h261dec.c
index 7f2fff8684..14a874c45d 100644
--- a/libavcodec/h261dec.c
+++ b/libavcodec/h261dec.c
@@ -223,7 +223,7 @@ static int h261_decode_mb_skipped(H261Context *h, int mba1, int mba2)
s->current_picture.motion_val[0][b_xy][1] = s->mv[0][0][1];
}
- ff_mpv_decode_mb(s, s->block);
+ ff_mpv_reconstruct_mb(s, s->block);
}
return 0;
@@ -466,7 +466,7 @@ intra:
s->block_last_index[i] = -1;
}
- ff_mpv_decode_mb(s, s->block);
+ ff_mpv_reconstruct_mb(s, s->block);
return SLICE_OK;
}