You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
remove useless braces
Originally committed as revision 11911 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -1435,9 +1435,8 @@ static void mov_build_index(MOVContext *mov, AVStream *st)
|
|||||||
} else {
|
} else {
|
||||||
chunk_duration += sc->stts_data[stts_index].duration * chunk_samples;
|
chunk_duration += sc->stts_data[stts_index].duration * chunk_samples;
|
||||||
chunk_samples -= sc->stts_data[stts_index].count;
|
chunk_samples -= sc->stts_data[stts_index].count;
|
||||||
if (stts_index + 1 < sc->stts_count) {
|
if (stts_index + 1 < sc->stts_count)
|
||||||
stts_index++;
|
stts_index++;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
current_offset += sc->bytes_per_frame;
|
current_offset += sc->bytes_per_frame;
|
||||||
|
Reference in New Issue
Block a user