summaryrefslogtreecommitdiff
path: root/libavcodec/vc1_pred.c
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2014-11-24 01:38:53 +0000
committerVittorio Giovara <vittorio.giovara@gmail.com>2014-11-25 02:00:06 +0000
commitbc75b64cff37d58f3944e2da3da45c37f35f019a (patch)
tree37b855d109287229b5cfd746302edf26adc36ecf /libavcodec/vc1_pred.c
parent960aff379da46dcaff61504a57714d4d4e758e41 (diff)
vc1pred: remove logically dead code
CC: libav-stable@libav.org Bug-Id: CID 1245699 / CID 1245700
Diffstat (limited to 'libavcodec/vc1_pred.c')
-rw-r--r--libavcodec/vc1_pred.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/libavcodec/vc1_pred.c b/libavcodec/vc1_pred.c
index 6a54fe462a..07e9d91f6b 100644
--- a/libavcodec/vc1_pred.c
+++ b/libavcodec/vc1_pred.c
@@ -648,7 +648,7 @@ void ff_vc1_pred_mv_intfr(VC1Context *v, int n, int dmv_x, int dmv_y,
} else if (c_valid) {
px = C[0];
py = C[1];
- } else px = py = 0;
+ }
} else {
if (field_a && a_valid) {
px = A[0];
@@ -656,11 +656,7 @@ void ff_vc1_pred_mv_intfr(VC1Context *v, int n, int dmv_x, int dmv_y,
} else if (field_b && b_valid) {
px = B[0];
py = B[1];
- } else if (c_valid) {
- px = C[0];
- py = C[1];
- } else
- px = py = 0;
+ }
}
} else if (total_valid == 1) {
px = (a_valid) ? A[0] : ((b_valid) ? B[0] : C[0]);