Browse Source

remove useless braces

Originally committed as revision 11911 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Baptiste Coudurier 18 years ago
parent
commit
3a3aa49ab7
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      libavformat/mov.c

+ 1
- 2
libavformat/mov.c 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;


Loading…
Cancel
Save