[FFmpeg-cvslog] Slightly simplify VP8 inter_predict
Jason Garrett-Glaser
git
Mon Jan 31 18:48:16 CET 2011
ffmpeg | branch: master | Jason Garrett-Glaser <jason at x264.com> | Sat Jan 29 21:09:33 2011 -0800| [a4257d74e09729c3f8ecc2065ed35b003ffbbfc6] | committer: Michael Niedermayer
Slightly simplify VP8 inter_predict
Merge an if and a switch.
(cherry picked from commit 73be29b0c4297fd0e61e7fe5d925bec397d8fe4a)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a4257d74e09729c3f8ecc2065ed35b003ffbbfc6
---
libavcodec/vp8.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c
index ef4e270..d2f55d9 100644
--- a/libavcodec/vp8.c
+++ b/libavcodec/vp8.c
@@ -1307,10 +1307,11 @@ void inter_predict(VP8Context *s, uint8_t *dst[3], VP8Macroblock *mb,
AVFrame *ref = s->framep[mb->ref_frame];
VP56mv *bmv = mb->bmv;
- if (mb->mode < VP8_MVMODE_SPLIT) {
+ switch (mb->partitioning) {
+ case VP8_SPLITMVMODE_NONE:
vp8_mc_part(s, dst, ref, x_off, y_off,
0, 0, 16, 16, width, height, &mb->mv);
- } else switch (mb->partitioning) {
+ break;
case VP8_SPLITMVMODE_4x4: {
int x, y;
VP56mv uvmv;
More information about the ffmpeg-cvslog
mailing list