Mercurial > libavformat.hg
changeset 867:5b4853b0298e libavformat
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
author | gpoirier |
---|---|
date | Wed, 26 Oct 2005 12:15:09 +0000 |
parents | 81d0b5753240 |
children | c6b1dde68f3a |
files | asf.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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);