[Ffmpeg-cvslog] r8239 - in trunk: libavformat/asf-enc.c tests/libav.regression.ref

michael subversion
Mon Mar 5 03:00:20 CET 2007


Author: michael
Date: Mon Mar  5 03:00:20 2007
New Revision: 8239

Modified:
   trunk/libavformat/asf-enc.c
   trunk/tests/libav.regression.ref

Log:
all asf files i have have the 2 redundant duration fields differ by the preroll time so lets set them up like that too


Modified: trunk/libavformat/asf-enc.c
==============================================================================
--- trunk/libavformat/asf-enc.c	(original)
+++ trunk/libavformat/asf-enc.c	Mon Mar  5 03:00:20 2007
@@ -309,7 +309,7 @@ static int asf_write_header1(AVFormatCon
     put_le64(pb, unix_to_file_time(file_time));
     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_le64(pb, asf->duration); /* duration (in 100ns units) */
     put_le64(pb, preroll_time); /* start time stamp */
     put_le32(pb, asf->is_streamed ? 3 : 2); /* ??? */
     put_le32(pb, asf->packet_size); /* packet size */

Modified: trunk/tests/libav.regression.ref
==============================================================================
--- trunk/tests/libav.regression.ref	(original)
+++ trunk/tests/libav.regression.ref	Mon Mar  5 03:00:20 2007
@@ -2,7 +2,7 @@ ffmpeg regression test
 8a0536ccfe36f4fff408b3327d33e1dd *./data/b-libav.avi
 340344 ./data/b-libav.avi
 ./data/b-libav.avi CRC=0x400c29e9
-aa0016b3bc33b8ba3124f05bdf6753f7 *./data/b-libav.asf
+a41bf92d0756cec87288583175f6b5a9 *./data/b-libav.asf
 339775 ./data/b-libav.asf
 ./data/b-libav.asf CRC=0x74113749
 1ad618e9fd318eb3483270cf9b9b3f43 *./data/b-libav.rm




More information about the ffmpeg-cvslog mailing list