[FFmpeg-cvslog] r11911 - trunk/libavformat/mov.c
bcoudurier
subversion
Mon Feb 11 23:34:03 CET 2008
Author: bcoudurier
Date: Mon Feb 11 23:34:03 2008
New Revision: 11911
Log:
remove useless braces
Modified:
trunk/libavformat/mov.c
Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c (original)
+++ trunk/libavformat/mov.c Mon Feb 11 23:34:03 2008
@@ -1435,9 +1435,8 @@ static void mov_build_index(MOVContext *
} else {
chunk_duration += sc->stts_data[stts_index].duration * chunk_samples;
chunk_samples -= sc->stts_data[stts_index].count;
- if (stts_index + 1 < sc->stts_count) {
+ if (stts_index + 1 < sc->stts_count)
stts_index++;
- }
}
}
current_offset += sc->bytes_per_frame;
More information about the ffmpeg-cvslog
mailing list