diff options
author | David Conrad <lessen42@gmail.com> | 2008-10-01 14:48:16 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2008-10-01 14:48:16 +0000 |
commit | 6599e2a74a416a5fdb8f8400ab2ea6001505d121 (patch) | |
tree | 6923afb5bb10795bc0bcb8fba74da8f4e3d76605 | |
parent | 6298f49f75e77edf103bc92a820a8a3f2730a42b (diff) | |
download | ffmpeg-6599e2a74a416a5fdb8f8400ab2ea6001505d121.tar.gz |
Unneeded braces
Originally committed as revision 15503 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/vp3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c index 712d7bbddb..1813af085b 100644 --- a/libavcodec/vp3.c +++ b/libavcodec/vp3.c @@ -811,9 +811,9 @@ static int unpack_vectors(Vp3DecodeContext *s, GetBitContext *gb) int current_macroblock; int current_fragment; - if (s->keyframe) { + if (s->keyframe) return 0; - } else { + else { memset(motion_x, 0, 6 * sizeof(int)); memset(motion_y, 0, 6 * sizeof(int)); |