summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2008-10-01 14:48:16 +0000
committerDavid Conrad <lessen42@gmail.com>2008-10-01 14:48:16 +0000
commit6599e2a74a416a5fdb8f8400ab2ea6001505d121 (patch)
tree6923afb5bb10795bc0bcb8fba74da8f4e3d76605 /libavcodec
parent6298f49f75e77edf103bc92a820a8a3f2730a42b (diff)
Unneeded braces
Originally committed as revision 15503 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/vp3.c4
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));