[Ffmpeg-cvslog] CVS: ffmpeg/libavformat asf.c,1.85,1.86
Guillaume Poirier CVS
gpoirier
Wed Oct 26 14:15:12 CEST 2005
Update of /cvsroot/ffmpeg/ffmpeg/libavformat
In directory mail:/var2/tmp/cvs-serv30697/libavformat
Modified Files:
asf.c
Log Message:
Fix asf header decoding issue, patch by < patrice -- bensoussan AH gmail -- com >
http://avifile.sourceforge.net/asf-1.0.htm has more info about asf headers
Original thread:
Date: Oct 22, 2005 11:44 PM
Subject: [Ffmpeg-devel] [PATCH] Fix asf header decoding issue
Index: asf.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/asf.c,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -d -r1.85 -r1.86
--- asf.c 23 Sep 2005 00:25:41 -0000 1.85
+++ asf.c 26 Oct 2005 12:15:09 -0000 1.86
@@ -172,8 +172,8 @@
asf->hdr.file_size = get_le64(pb);
asf->hdr.create_time = get_le64(pb);
asf->hdr.packets_count = get_le64(pb);
- asf->hdr.play_time = get_le64(pb);
asf->hdr.send_time = get_le64(pb);
+ asf->hdr.play_time = get_le64(pb);
asf->hdr.preroll = get_le32(pb);
asf->hdr.ignore = get_le32(pb);
asf->hdr.flags = get_le32(pb);
More information about the ffmpeg-cvslog
mailing list