mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
avformat/matroskaenc: Avoid "for (int i" syntax for better compatibility
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
5e8e121fcc
commit
ace8376653
@ -2025,7 +2025,8 @@ static int mkv_write_trailer(AVFormatContext *s)
|
||||
|
||||
// update stream durations
|
||||
if (mkv->stream_durations) {
|
||||
for (int i = 0; i < s->nb_streams; ++i) {
|
||||
int i;
|
||||
for (i = 0; i < s->nb_streams; ++i) {
|
||||
AVStream *st = s->streams[i];
|
||||
double duration_sec = mkv->stream_durations[i] * av_q2d(st->time_base);
|
||||
char duration_string[20] = "";
|
||||
|
Loading…
Reference in New Issue
Block a user