comparison asf.h @ 372:2e12cd1b68ed libavformat

split asf patch by (Konstantin Andreyev <kandreyev at bcsii dot com>)
author michael
date Fri, 05 Mar 2004 21:34:30 +0000
parents asf.c@845f9de2c883
children e47d9c8e2054
comparison
equal deleted inserted replaced
371:b0e50e10472c 372:2e12cd1b68ed
1 /*
2 * Copyright (c) 2000, 2001 Fabrice Bellard.
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18 #define PACKET_SIZE 3200
19 #define PACKET_HEADER_SIZE 12
20 #define FRAME_HEADER_SIZE 17
21
22 typedef struct {
23 int num;
24 int seq;
25 /* use for reading */
26 AVPacket pkt;
27 int frag_offset;
28 int timestamp;
29 int64_t duration;
30
31 int ds_span; /* descrambling */
32 int ds_packet_size;
33 int ds_chunk_size;
34 int ds_data_size;
35 int ds_silence_data;
36
37 int packet_pos;
38
39 } ASFStream;
40
41 typedef struct {
42 uint32_t v1;
43 uint16_t v2;
44 uint16_t v3;
45 uint8_t v4[8];
46 } GUID;
47
48 typedef struct {
49 GUID guid; // generated by client computer
50 uint64_t file_size; // in bytes
51 // invalid if broadcasting
52 uint64_t create_time; // time of creation, in 100-nanosecond units since 1.1.1601
53 // invalid if broadcasting
54 uint64_t packets_count; // how many packets are there in the file
55 // invalid if broadcasting
56 uint64_t play_time; // play time, in 100-nanosecond units
57 // invalid if broadcasting
58 uint64_t send_time; // time to send file, in 100-nanosecond units
59 // invalid if broadcasting (could be ignored)
60 uint32_t preroll; // timestamp of the first packet, in milliseconds
61 // if nonzero - substract from time
62 uint32_t ignore; // preroll is 64bit - but let's just ignore it
63 uint32_t flags; // 0x01 - broadcast
64 // 0x02 - seekable
65 // rest is reserved should be 0
66 uint32_t min_pktsize; // size of a data packet
67 // invalid if broadcasting
68 uint32_t max_pktsize; // shall be the same as for min_pktsize
69 // invalid if broadcasting
70 uint32_t max_bitrate; // bandwith of stream in bps
71 // should be the sum of bitrates of the
72 // individual media streams
73 } ASFMainHeader;
74
75
76 typedef struct {
77 int seqno;
78 int packet_size;
79 int is_streamed;
80 int asfid2avid[128]; /* conversion table from asf ID 2 AVStream ID */
81 ASFStream streams[128]; /* it's max number and it's not that big */
82 /* non streamed additonnal info */
83 int64_t nb_packets;
84 int64_t duration; /* in 100ns units */
85 /* packet filling */
86 int packet_size_left;
87 int packet_timestamp_start;
88 int packet_timestamp_end;
89 int packet_nb_frames;
90 uint8_t packet_buf[PACKET_SIZE];
91 ByteIOContext pb;
92 /* only for reading */
93 uint64_t data_offset; /* begining of the first data packet */
94
95 ASFMainHeader hdr;
96
97 int packet_flags;
98 int packet_property;
99 int packet_timestamp;
100 int packet_segsizetype;
101 int packet_segments;
102 int packet_seq;
103 int packet_replic_size;
104 int packet_key_frame;
105 int packet_padsize;
106 int packet_frag_offset;
107 int packet_frag_size;
108 int packet_frag_timestamp;
109 int packet_multi_size;
110 int packet_obj_size;
111 int packet_time_delta;
112 int packet_time_start;
113 int packet_pos;
114
115 int stream_index;
116 ASFStream* asf_st; /* currently decoded stream */
117 } ASFContext;
118
119 static const GUID asf_header = {
120 0x75B22630, 0x668E, 0x11CF, { 0xA6, 0xD9, 0x00, 0xAA, 0x00, 0x62, 0xCE, 0x6C },
121 };
122
123 static const GUID file_header = {
124 0x8CABDCA1, 0xA947, 0x11CF, { 0x8E, 0xE4, 0x00, 0xC0, 0x0C, 0x20, 0x53, 0x65 },
125 };
126
127 static const GUID stream_header = {
128 0xB7DC0791, 0xA9B7, 0x11CF, { 0x8E, 0xE6, 0x00, 0xC0, 0x0C, 0x20, 0x53, 0x65 },
129 };
130
131 static const GUID audio_stream = {
132 0xF8699E40, 0x5B4D, 0x11CF, { 0xA8, 0xFD, 0x00, 0x80, 0x5F, 0x5C, 0x44, 0x2B },
133 };
134
135 static const GUID audio_conceal_none = {
136 // 0x49f1a440, 0x4ece, 0x11d0, { 0xa3, 0xac, 0x00, 0xa0, 0xc9, 0x03, 0x48, 0xf6 },
137 // New value lifted from avifile
138 0x20fb5700, 0x5b55, 0x11cf, { 0xa8, 0xfd, 0x00, 0x80, 0x5f, 0x5c, 0x44, 0x2b },
139 };
140
141 static const GUID video_stream = {
142 0xBC19EFC0, 0x5B4D, 0x11CF, { 0xA8, 0xFD, 0x00, 0x80, 0x5F, 0x5C, 0x44, 0x2B },
143 };
144
145 static const GUID video_conceal_none = {
146 0x20FB5700, 0x5B55, 0x11CF, { 0xA8, 0xFD, 0x00, 0x80, 0x5F, 0x5C, 0x44, 0x2B },
147 };
148
149
150 static const GUID comment_header = {
151 0x75b22633, 0x668e, 0x11cf, { 0xa6, 0xd9, 0x00, 0xaa, 0x00, 0x62, 0xce, 0x6c },
152 };
153
154 static const GUID codec_comment_header = {
155 0x86D15240, 0x311D, 0x11D0, { 0xA3, 0xA4, 0x00, 0xA0, 0xC9, 0x03, 0x48, 0xF6 },
156 };
157 static const GUID codec_comment1_header = {
158 0x86d15241, 0x311d, 0x11d0, { 0xa3, 0xa4, 0x00, 0xa0, 0xc9, 0x03, 0x48, 0xf6 },
159 };
160
161 static const GUID data_header = {
162 0x75b22636, 0x668e, 0x11cf, { 0xa6, 0xd9, 0x00, 0xaa, 0x00, 0x62, 0xce, 0x6c },
163 };
164
165 static const GUID head1_guid = {
166 0x5fbf03b5, 0xa92e, 0x11cf, { 0x8e, 0xe3, 0x00, 0xc0, 0x0c, 0x20, 0x53, 0x65 },
167 };
168
169 static const GUID head2_guid = {
170 0xabd3d211, 0xa9ba, 0x11cf, { 0x8e, 0xe6, 0x00, 0xc0, 0x0c, 0x20, 0x53, 0x65 },
171 };
172
173 static const GUID extended_content_header = {
174 0xD2D0A440, 0xE307, 0x11D2, { 0x97, 0xF0, 0x00, 0xA0, 0xC9, 0x5E, 0xA8, 0x50 },
175 };
176
177 /* I am not a number !!! This GUID is the one found on the PC used to
178 generate the stream */
179 static const GUID my_guid = {
180 0, 0, 0, { 0, 0, 0, 0, 0, 0, 0, 0 },
181 };