Browse Source

Unneeded braces

Originally committed as revision 15503 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
David Conrad 17 years ago
parent
commit
6599e2a74a
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/vp3.c

+ 2
- 2
libavcodec/vp3.c View File

@@ -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