[FFmpeg-cvslog] r13741 - trunk/libavformat/movenc.c

bcoudurier subversion
Wed Jun 11 10:50:41 CEST 2008


Author: bcoudurier
Date: Wed Jun 11 10:50:41 2008
New Revision: 13741

Log:
cosmetics

Modified:
   trunk/libavformat/movenc.c

Modified: trunk/libavformat/movenc.c
==============================================================================
--- trunk/libavformat/movenc.c	(original)
+++ trunk/libavformat/movenc.c	Wed Jun 11 10:50:41 2008
@@ -111,7 +111,7 @@ static int mov_write_stco_tag(ByteIOCont
         else
             put_be32(pb, track->cluster[i].pos);
     }
-    return updateSize (pb, pos);
+    return updateSize(pb, pos);
 }
 
 /* Sample size atom */
@@ -148,7 +148,7 @@ static int mov_write_stsz_tag(ByteIOCont
             }
         }
     }
-    return updateSize (pb, pos);
+    return updateSize(pb, pos);
 }
 
 /* Sample to chunk atom */
@@ -178,7 +178,7 @@ static int mov_write_stsc_tag(ByteIOCont
     put_be32(pb, index); // rewrite size
     url_fseek(pb, curpos, SEEK_SET);
 
-    return updateSize (pb, pos);
+    return updateSize(pb, pos);
 }
 
 /* Sync sample atom */
@@ -202,7 +202,7 @@ static int mov_write_stss_tag(ByteIOCont
     url_fseek(pb, entryPos, SEEK_SET);
     put_be32(pb, index); // rewrite size
     url_fseek(pb, curpos, SEEK_SET);
-    return updateSize (pb, pos);
+    return updateSize(pb, pos);
 }
 
 static int mov_write_amr_tag(ByteIOContext *pb, MOVTrack *track)
@@ -299,7 +299,7 @@ static int mov_write_esds_tag(ByteIOCont
     // SL descriptor
     putDescr(pb, 0x06, 1);
     put_byte(pb, 0x02);
-    return updateSize (pb, pos);
+    return updateSize(pb, pos);
 }
 
 static int mov_write_wave_tag(ByteIOContext *pb, MOVTrack *track)
@@ -331,7 +331,7 @@ static int mov_write_wave_tag(ByteIOCont
     put_be32(pb, 8);     /* size */
     put_be32(pb, 0);     /* null tag */
 
-    return updateSize (pb, pos);
+    return updateSize(pb, pos);
 }
 
 static int mov_write_glbl_tag(ByteIOContext *pb, MOVTrack *track)
@@ -402,7 +402,7 @@ static int mov_write_audio_tag(ByteIOCon
     else if(track->vosLen > 0)
         mov_write_glbl_tag(pb, track);
 
-    return updateSize (pb, pos);
+    return updateSize(pb, pos);
 }
 
 static int mov_write_d263_tag(ByteIOContext *pb)
@@ -644,7 +644,7 @@ static int mov_write_video_tag(ByteIOCon
     } else if(track->vosLen > 0)
         mov_write_glbl_tag(pb, track);
 
-    return updateSize (pb, pos);
+    return updateSize(pb, pos);
 }
 
 static int mov_write_stsd_tag(ByteIOContext *pb, MOVTrack *track)




More information about the ffmpeg-cvslog mailing list