[Ffmpeg-cvslog] r8237 - trunk/libavformat/asf-enc.c

michael subversion
Mon Mar 5 02:28:20 CET 2007


Author: michael
Date: Mon Mar  5 02:28:20 2007
New Revision: 8237

Modified:
   trunk/libavformat/asf-enc.c

Log:
all the time related fields seem to be 64bit so i guess preroll is too (this is just a cosmetic anyway ...)


Modified: trunk/libavformat/asf-enc.c
==============================================================================
--- trunk/libavformat/asf-enc.c	(original)
+++ trunk/libavformat/asf-enc.c	Mon Mar  5 02:28:20 2007
@@ -310,8 +310,7 @@ static int asf_write_header1(AVFormatCon
     put_le64(pb, asf->nb_packets); /* number of packets */
     put_le64(pb, duration); /* end time stamp (in 100ns units) */
     put_le64(pb, duration); /* duration (in 100ns units) */
-    put_le32(pb, preroll_time); /* start time stamp */
-    put_le32(pb, 0); /* ??? */
+    put_le64(pb, preroll_time); /* start time stamp */
     put_le32(pb, asf->is_streamed ? 1 : 0); /* ??? */
     put_le32(pb, asf->packet_size); /* packet size */
     put_le32(pb, asf->packet_size); /* packet size */




More information about the ffmpeg-cvslog mailing list