OSDN Git Service

Slightly simplify VP8 inter_predict
authorJason Garrett-Glaser <jason@x264.com>
Sun, 30 Jan 2011 05:09:33 +0000 (21:09 -0800)
committerJason Garrett-Glaser <jason@x264.com>
Sun, 30 Jan 2011 20:12:02 +0000 (12:12 -0800)
Merge an if and a switch.

libavcodec/vp8.c

index ef4e270..d2f55d9 100644 (file)
@@ -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;