cosmetics, rename first to header, more explicit name
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>
Fri, 6 Jun 2008 20:14:47 +0000 (20:14 +0000)
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>
Fri, 6 Jun 2008 20:14:47 +0000 (20:14 +0000)
Originally committed as revision 13676 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/ffmenc.c

index 4e2d0b95b6969819849c17b8d02b61675b9a7cb6..e4f7adf540dd9418ba1fdc4b80fce622e9ed06db 100644 (file)
@@ -58,14 +58,14 @@ static void flush_packet(AVFormatContext *s)
 /* 'first' is true if first data of a frame */
 static void ffm_write_data(AVFormatContext *s,
                            const uint8_t *buf, int size,
-                           int64_t pts, int first)
+                           int64_t pts, int header)
 {
     FFMContext *ffm = s->priv_data;
     int len;
 
-    if (first && ffm->frame_offset == 0)
+    if (header && ffm->frame_offset == 0)
         ffm->frame_offset = ffm->packet_ptr - ffm->packet + FFM_HEADER_SIZE;
-    if (first && ffm->pts == 0)
+    if (header && ffm->pts == 0)
         ffm->pts = pts;
 
     /* write as many packets as needed */