[FFmpeg-cvslog] r15503 - trunk/libavcodec/vp3.c
conrad
subversion
Wed Oct 1 16:48:16 CEST 2008
Author: conrad
Date: Wed Oct 1 16:48:16 2008
New Revision: 15503
Log:
Unneeded braces
Modified:
trunk/libavcodec/vp3.c
Modified: trunk/libavcodec/vp3.c
==============================================================================
--- trunk/libavcodec/vp3.c (original)
+++ trunk/libavcodec/vp3.c Wed Oct 1 16:48:16 2008
@@ -811,9 +811,9 @@ static int unpack_vectors(Vp3DecodeConte
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));
More information about the ffmpeg-cvslog
mailing list