Unneeded braces

Originally committed as revision 15503 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
David Conrad 16 years ago
parent 6298f49f75
commit 6599e2a74a
  1. 4
      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));

Loading…
Cancel
Save