[FFmpeg-cvslog] r15504 - trunk/libavcodec/vp3.c
conrad
subversion
Wed Oct 1 16:48:35 CEST 2008
Author: conrad
Date: Wed Oct 1 16:48:35 2008
New Revision: 15504
Log:
Unneeded else
Modified:
trunk/libavcodec/vp3.c
Modified: trunk/libavcodec/vp3.c
==============================================================================
--- trunk/libavcodec/vp3.c (original)
+++ trunk/libavcodec/vp3.c Wed Oct 1 16:48:35 2008
@@ -813,7 +813,7 @@ static int unpack_vectors(Vp3DecodeConte
if (s->keyframe)
return 0;
- else {
+
memset(motion_x, 0, 6 * sizeof(int));
memset(motion_y, 0, 6 * sizeof(int));
@@ -960,7 +960,6 @@ static int unpack_vectors(Vp3DecodeConte
}
}
}
- }
return 0;
}
More information about the ffmpeg-cvslog
mailing list