mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 11:39:47 +00:00
Remove some stray +s in VP8
Originally committed as revision 24791 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
1ddc176ec4
commit
2b476e02e1
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user