diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-16 02:06:37 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-16 03:56:39 +0200 |
commit | cb53beb81a5b9192c79de401f1e1e13fadddc429 (patch) | |
tree | 66b87ea7c21b29dbd9ab7ceae702061cc368a409 /libavcodec/vc1dec.c | |
parent | 73734282e0e4df92269984ee1671424e39249481 (diff) | |
download | ffmpeg-cb53beb81a5b9192c79de401f1e1e13fadddc429.tar.gz |
iavcodec/vc1dec: Fix missing {}
Fixes part of Ticket3466
Found-by: Andrey_Karpov / PVS-Studio
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vc1dec.c')
-rw-r--r-- | libavcodec/vc1dec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c index 5b6c5d99cf..db5e186308 100644 --- a/libavcodec/vc1dec.c +++ b/libavcodec/vc1dec.c @@ -1913,9 +1913,10 @@ static void vc1_interp_mc(VC1Context *v) uvmx = (mx + ((mx & 3) == 3)) >> 1; uvmy = (my + ((my & 3) == 3)) >> 1; if (v->field_mode) { - if (v->cur_field_type != v->ref_field_type[1]) + if (v->cur_field_type != v->ref_field_type[1]) { my = my - 2 + 4 * v->cur_field_type; uvmy = uvmy - 2 + 4 * v->cur_field_type; + } } if (v->fastuvmc) { uvmx = uvmx + ((uvmx < 0) ? -(uvmx & 1) : (uvmx & 1)); |