Commit 10f38380 authored by David Conrad's avatar David Conrad

Unneeded else

Originally committed as revision 15504 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6599e2a7
...@@ -813,7 +813,7 @@ static int unpack_vectors(Vp3DecodeContext *s, GetBitContext *gb) ...@@ -813,7 +813,7 @@ static int unpack_vectors(Vp3DecodeContext *s, GetBitContext *gb)
if (s->keyframe) if (s->keyframe)
return 0; return 0;
else {
memset(motion_x, 0, 6 * sizeof(int)); memset(motion_x, 0, 6 * sizeof(int));
memset(motion_y, 0, 6 * sizeof(int)); memset(motion_y, 0, 6 * sizeof(int));
...@@ -960,7 +960,6 @@ static int unpack_vectors(Vp3DecodeContext *s, GetBitContext *gb) ...@@ -960,7 +960,6 @@ static int unpack_vectors(Vp3DecodeContext *s, GetBitContext *gb)
} }
} }
} }
}
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment