[FFmpeg-cvslog] isom: fix C99-style declaration

Michael Niedermayer git at videolan.org
Mon Mar 17 14:51:54 CET 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Mar 16 12:22:26 2014 +0000| [6d7b22fb8f247a51e668c83b2f2460a9b3e948a8] | committer: Vittorio Giovara

isom: fix C99-style declaration

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6d7b22fb8f247a51e668c83b2f2460a9b3e948a8
---

 libavformat/isom.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavformat/isom.c b/libavformat/isom.c
index e13f9cf..e15875e 100644
--- a/libavformat/isom.c
+++ b/libavformat/isom.c
@@ -442,11 +442,12 @@ static int mov_rewrite_dvd_sub_extradata(AVStream *st)
     char buf[256];
     int pal_s_pos = 0;
     uint8_t *src = st->codec->extradata;
+    int i;
 
     if (st->codec->extradata_size != 64)
         return 0;
 
-    for (int i = 0; i < 16; i++) {
+    for (i = 0; i < 16; i++) {
         uint32_t yuv = AV_RB32(src + i * 4);
         uint32_t rgba = yuv_to_rgba(yuv);
 



More information about the ffmpeg-cvslog mailing list