diff options
author | Jason Garrett-Glaser <jason@x264.com> | 2011-02-17 13:56:26 -0800 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-02-18 19:52:41 +0100 |
commit | 1d37e908cfe98eaa58a880074687c4d691f0868a (patch) | |
tree | 006c5176739398436fee6577c94b04019535184c | |
parent | 545dc699f85bbd13b97afa3ca82088fdfa945bc6 (diff) | |
download | ffmpeg-1d37e908cfe98eaa58a880074687c4d691f0868a.tar.gz |
VP8: init one less near_mv
This one didn't actually need to be initialized.
(cherry picked from commit 891b1f15a7e45a2a5f91cb4c27d11259ef8e012f)
-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)\ |