summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorJason Garrett-Glaser <darkshikari@gmail.com>2010-08-13 02:02:07 +0000
committerJason Garrett-Glaser <darkshikari@gmail.com>2010-08-13 02:02:07 +0000
commit2b476e02e1c306042e82cd16dab12fcc80034a05 (patch)
treea686b7dcc9b88d32156da1ad2117e86d788e7064 /libavcodec
parent1ddc176ec4e12b5a25e591e9205e311ea5827c18 (diff)
Remove some stray +s in VP8
Originally committed as revision 24791 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/vp8.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c
index c753b2dfc7..0ec050cc88 100644
--- a/libavcodec/vp8.c
+++ b/libavcodec/vp8.c
@@ -771,8 +771,8 @@ void decode_mb_mode(VP8Context *s, VP8Macroblock *mb, int mb_x, int mb_y, uint8_
} else {
mb->mode = VP8_MVMODE_NEW;
clamp_mv(s, &mb->mv, &mb->mv, mb_x, mb_y);
- mb->mv.y += + read_mv_component(c, s->prob->mvc[0]);
- mb->mv.x += + read_mv_component(c, s->prob->mvc[1]);
+ mb->mv.y += read_mv_component(c, s->prob->mvc[0]);
+ mb->mv.x += read_mv_component(c, s->prob->mvc[1]);
}
} else {
mb->mode = VP8_MVMODE_NEAR;