remove useless braces

Originally committed as revision 11911 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2008-02-11 22:34:03 +00:00
parent 311490cccd
commit 3a3aa49ab7
1 changed files with 1 additions and 2 deletions

View File

@ -1435,9 +1435,8 @@ static void mov_build_index(MOVContext *mov, AVStream *st)
} 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;