Commit ace83766 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/matroskaenc: Avoid "for (int i" syntax for better compatibility

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 5e8e121f
......@@ -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] = "";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment