diff options
author | Jason Garrett-Glaser <jason@x264.com> | 2011-02-17 13:56:26 -0800 |
---|---|---|
committer | Jason Garrett-Glaser <jason@x264.com> | 2011-02-17 15:25:28 -0800 |
commit | 891b1f15a7e45a2a5f91cb4c27d11259ef8e012f (patch) | |
tree | 17ec6029a5330b3ef2fea08be7ec9bbd1803c762 /libavcodec | |
parent | eb3755a5aa65da685d81399cfae4bd35e4a178b6 (diff) | |
download | ffmpeg-891b1f15a7e45a2a5f91cb4c27d11259ef8e012f.tar.gz |
VP8: init one less near_mv
This one didn't actually need to be initialized.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vp8.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c index 566ec65380..f71a7b7783 100644 --- a/libavcodec/vp8.c +++ b/libavcodec/vp8.c @@ -481,7 +481,6 @@ void decode_mvs(VP8Context *s, VP8Macroblock *mb, int mb_x, int mb_y) AV_ZERO32(&near_mv[0]); AV_ZERO32(&near_mv[1]); - AV_ZERO32(&near_mv[2]); /* Process MB on top, left and top-left */ #define MV_EDGE_CHECK(n)\ |