forked from FFmpeg/FFmpeg
remove useless braces
Originally committed as revision 11911 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
311490cccd
commit
3a3aa49ab7
1 changed files with 1 additions and 2 deletions
|
@ -1435,11 +1435,10 @@ 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;
|
||||
dprintf(mov->fc, "AVIndex stream %d, chunk %d, offset %"PRIx64", dts %"PRId64", size %d, "
|
||||
"duration %d\n", st->index, i, current_offset, current_dts, chunk_size, chunk_duration);
|
||||
|
|
Loading…
Add table
Reference in a new issue