diff options
author | David Conrad <lessen42@gmail.com> | 2008-10-01 14:48:35 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2008-10-01 14:48:35 +0000 |
commit | 10f38380be34021503cbe2275c8861581dcc3ca8 (patch) | |
tree | a469f49041c596cb17c0b09d7e16df53e4414238 /libavcodec/vp3.c | |
parent | 6599e2a74a416a5fdb8f8400ab2ea6001505d121 (diff) | |
download | ffmpeg-10f38380be34021503cbe2275c8861581dcc3ca8.tar.gz |
Unneeded else
Originally committed as revision 15504 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r-- | libavcodec/vp3.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c index 1813af085b..cbb71d77ed 100644 --- a/libavcodec/vp3.c +++ b/libavcodec/vp3.c @@ -813,7 +813,7 @@ static int unpack_vectors(Vp3DecodeContext *s, GetBitContext *gb) if (s->keyframe) return 0; - else { + memset(motion_x, 0, 6 * sizeof(int)); memset(motion_y, 0, 6 * sizeof(int)); @@ -960,7 +960,6 @@ static int unpack_vectors(Vp3DecodeContext *s, GetBitContext *gb) } } } - } return 0; } |