# HG changeset patch # User gpoirier # Date 1130328909 0 # Node ID 5b4853b0298e433baea7a0bb9d9127f57a2ea212 # Parent 81d0b57532401052380aea8992bcc807aa9f5bd0 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 diff -r 81d0b5753240 -r 5b4853b0298e asf.c --- a/asf.c Thu Oct 20 20:06:16 2005 +0000 +++ b/asf.c Wed Oct 26 12:15:09 2005 +0000 @@ -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.send_time = get_le64(pb); asf->hdr.play_time = get_le64(pb); - asf->hdr.send_time = get_le64(pb); asf->hdr.preroll = get_le32(pb); asf->hdr.ignore = get_le32(pb); asf->hdr.flags = get_le32(pb);