stealing a few field names from mplayers asf demuxer

Originally committed as revision 7725 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2007-01-27 12:07:16 +00:00
parent c839db53f7
commit de3ae9596b
1 changed files with 15 additions and 15 deletions

View File

@ -367,21 +367,21 @@ static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
int64_t pos_ex_st;
pos_ex_st = url_ftell(pb);
get_le64(pb);
get_le64(pb);
get_le32(pb);
get_le32(pb);
get_le32(pb);
get_le32(pb);
get_le32(pb);
get_le32(pb);
get_le32(pb);
get_le32(pb);
get_le16(pb);
get_le16(pb);
get_le64(pb);
stream_ct = get_le16(pb);
payload_ext_ct = get_le16(pb);
get_le64(pb); // starttime
get_le64(pb); // endtime
get_le32(pb); // leak-datarate
get_le32(pb); // bucket-datasize
get_le32(pb); // init-bucket-fullness
get_le32(pb); // alt-leak-datarate
get_le32(pb); // alt-bucket-datasize
get_le32(pb); // alt-init-bucket-fullness
get_le32(pb); // max-object-size
get_le32(pb); // flags (reliable,seekable,no_cleanpoints?,resend-live-cleanpoints, rest of bits reserved)
get_le16(pb); // stream-num
get_le16(pb); // stream-language-id-index
get_le64(pb); // avg frametime in 100ns units
stream_ct = get_le16(pb); //stream-name-count
payload_ext_ct = get_le16(pb); //payload-extension-system-count
for (i=0; i<stream_ct; i++){
get_le16(pb);