[FFmpeg-cvslog] avformat/matroskadec: fix declaration after statement
Michael Niedermayer
git at videolan.org
Wed Jul 16 00:18:37 CEST 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Jul 16 00:06:15 2014 +0200| [e240d01c120eb8a83b2b3020f0153bf509d6b136] | committer: Michael Niedermayer
avformat/matroskadec: fix declaration after statement
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e240d01c120eb8a83b2b3020f0153bf509d6b136
---
libavformat/matroskadec.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c
index 6fa8229..ec43526 100644
--- a/libavformat/matroskadec.c
+++ b/libavformat/matroskadec.c
@@ -3233,7 +3233,9 @@ static int64_t webm_dash_manifest_compute_bandwidth(AVFormatContext *s, int64_t
MatroskaDemuxContext *matroska = s->priv_data;
AVStream *st = s->streams[0];
double bandwidth = 0.0;
- for (int i = 0; i < st->nb_index_entries; i++) {
+ int i;
+
+ for (i = 0; i < st->nb_index_entries; i++) {
int64_t prebuffer_ns = 1000000000;
int64_t time_ns = st->index_entries[i].timestamp * matroska->time_scale;
double nano_seconds_per_second = 1000000000.0;
More information about the ffmpeg-cvslog
mailing list