projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
6599e2a
)
Unneeded else
author
David Conrad
<lessen42@gmail.com>
Wed, 1 Oct 2008 14:48:35 +0000
(14:48 +0000)
committer
David Conrad
<lessen42@gmail.com>
Wed, 1 Oct 2008 14:48:35 +0000
(14:48 +0000)
Originally committed as revision 15504 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/vp3.c
patch
|
blob
|
history
diff --git
a/libavcodec/vp3.c
b/libavcodec/vp3.c
index
1813af0
..
cbb71d7
100644
(file)
--- 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;
}