Mercurial > audlegacy
annotate Plugins/Input/wma/libffwma/asf.c @ 255:ad1e65c6a854 trunk
[svn] Create some proper headers and include them. No more implicit declarations.
author | chainsaw |
---|---|
date | Sun, 04 Dec 2005 07:37:06 -0800 |
parents | 0bea7509d6ba |
children | 53751ea823c3 |
rev | line source |
---|---|
137 | 1 /* |
2 * ASF compatible encoder and decoder. | |
3 * Copyright (c) 2000, 2001 Fabrice Bellard. | |
4 * | |
5 * This library is free software; you can redistribute it and/or | |
6 * modify it under the terms of the GNU Lesser General Public | |
7 * License as published by the Free Software Foundation; either | |
8 * version 2 of the License, or (at your option) any later version. | |
9 * | |
10 * This library is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 * Lesser General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU Lesser General Public | |
16 * License along with this library; if not, write to the Free Software | |
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 */ | |
218
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
19 #include "avcodec.h" |
210
12004b385a96
[svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents:
142
diff
changeset
|
20 #include "avformat.h" |
12004b385a96
[svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents:
142
diff
changeset
|
21 #include "avi.h" |
255
ad1e65c6a854
[svn] Create some proper headers and include them. No more implicit declarations.
chainsaw
parents:
218
diff
changeset
|
22 #include "utils.h" |
137 | 23 |
24 #include <assert.h> | |
25 #define MPA_FRAME_SIZE 1152 | |
26 #define PACKET_SIZE 3200 | |
27 #define PACKET_HEADER_SIZE 12 | |
28 #define FRAME_HEADER_SIZE 17 | |
29 | |
30 typedef struct { | |
31 int num; | |
32 int seq; | |
33 /* use for reading */ | |
34 AVPacket pkt; | |
35 int frag_offset; | |
36 int timestamp; | |
37 int64_t duration; | |
38 | |
39 int ds_span; /* descrambling */ | |
40 int ds_packet_size; | |
41 int ds_chunk_size; | |
42 int ds_data_size; | |
43 int ds_silence_data; | |
44 | |
45 int packet_pos; | |
46 | |
47 } ASFStream; | |
48 | |
49 typedef struct { | |
50 uint32_t v1; | |
51 uint16_t v2; | |
52 uint16_t v3; | |
53 uint8_t v4[8]; | |
54 } GUID; | |
55 | |
56 typedef struct { | |
57 GUID guid; // generated by client computer | |
58 uint64_t file_size; // in bytes | |
59 // invalid if broadcasting | |
60 uint64_t create_time; // time of creation, in 100-nanosecond units since 1.1.1601 | |
61 // invalid if broadcasting | |
62 uint64_t packets_count; // how many packets are there in the file | |
63 // invalid if broadcasting | |
64 uint64_t play_time; // play time, in 100-nanosecond units | |
65 // invalid if broadcasting | |
66 uint64_t send_time; // time to send file, in 100-nanosecond units | |
67 // invalid if broadcasting (could be ignored) | |
68 uint32_t preroll; // timestamp of the first packet, in milliseconds | |
69 // if nonzero - substract from time | |
70 uint32_t ignore; // preroll is 64bit - but let's just ignore it | |
71 uint32_t flags; // 0x01 - broadcast | |
72 // 0x02 - seekable | |
73 // rest is reserved should be 0 | |
74 uint32_t min_pktsize; // size of a data packet | |
75 // invalid if broadcasting | |
76 uint32_t max_pktsize; // shall be the same as for min_pktsize | |
77 // invalid if broadcasting | |
78 uint32_t max_bitrate; // bandwith of stream in bps | |
79 // should be the sum of bitrates of the | |
80 // individual media streams | |
81 } ASFMainHeader; | |
82 | |
83 | |
84 typedef struct { | |
85 int seqno; | |
86 int packet_size; | |
87 int is_streamed; | |
88 int asfid2avid[128]; /* conversion table from asf ID 2 AVStream ID */ | |
89 ASFStream streams[128]; /* it's max number and it's not that big */ | |
90 /* non streamed additonnal info */ | |
91 int64_t nb_packets; | |
92 int64_t duration; /* in 100ns units */ | |
93 /* packet filling */ | |
94 int packet_size_left; | |
95 int packet_timestamp_start; | |
96 int packet_timestamp_end; | |
97 int packet_nb_frames; | |
98 uint8_t packet_buf[PACKET_SIZE]; | |
99 ByteIOContext pb; | |
100 /* only for reading */ | |
101 uint64_t data_offset; /* begining of the first data packet */ | |
102 | |
103 ASFMainHeader hdr; | |
104 | |
105 int packet_flags; | |
106 int packet_property; | |
107 int packet_timestamp; | |
108 int packet_segsizetype; | |
109 int packet_segments; | |
110 int packet_seq; | |
111 int packet_replic_size; | |
112 int packet_key_frame; | |
113 int packet_padsize; | |
114 int packet_frag_offset; | |
115 int packet_frag_size; | |
116 int packet_frag_timestamp; | |
117 int packet_multi_size; | |
118 int packet_obj_size; | |
119 int packet_time_delta; | |
120 int packet_time_start; | |
121 int packet_pos; | |
122 | |
123 int stream_index; | |
124 ASFStream* asf_st; /* currently decoded stream */ | |
125 } ASFContext; | |
126 | |
127 static const GUID asf_header = { | |
128 0x75B22630, 0x668E, 0x11CF, { 0xA6, 0xD9, 0x00, 0xAA, 0x00, 0x62, 0xCE, 0x6C }, | |
129 }; | |
130 | |
131 static const GUID file_header = { | |
132 0x8CABDCA1, 0xA947, 0x11CF, { 0x8E, 0xE4, 0x00, 0xC0, 0x0C, 0x20, 0x53, 0x65 }, | |
133 }; | |
134 | |
135 static const GUID stream_header = { | |
136 0xB7DC0791, 0xA9B7, 0x11CF, { 0x8E, 0xE6, 0x00, 0xC0, 0x0C, 0x20, 0x53, 0x65 }, | |
137 }; | |
138 | |
139 static const GUID audio_stream = { | |
140 0xF8699E40, 0x5B4D, 0x11CF, { 0xA8, 0xFD, 0x00, 0x80, 0x5F, 0x5C, 0x44, 0x2B }, | |
141 }; | |
142 | |
143 static const GUID audio_conceal_none = { | |
144 // 0x49f1a440, 0x4ece, 0x11d0, { 0xa3, 0xac, 0x00, 0xa0, 0xc9, 0x03, 0x48, 0xf6 }, | |
145 // New value lifted from avifile | |
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 index_guid = { | |
166 0x33000890, 0xe5b1, 0x11cf, { 0x89, 0xf4, 0x00, 0xa0, 0xc9, 0x03, 0x49, 0xcb }, | |
167 }; | |
168 | |
169 static const GUID head1_guid = { | |
170 0x5fbf03b5, 0xa92e, 0x11cf, { 0x8e, 0xe3, 0x00, 0xc0, 0x0c, 0x20, 0x53, 0x65 }, | |
171 }; | |
172 | |
173 static const GUID head2_guid = { | |
174 0xabd3d211, 0xa9ba, 0x11cf, { 0x8e, 0xe6, 0x00, 0xc0, 0x0c, 0x20, 0x53, 0x65 }, | |
175 }; | |
176 | |
177 static const GUID extended_content_header = { | |
178 0xD2D0A440, 0xE307, 0x11D2, { 0x97, 0xF0, 0x00, 0xA0, 0xC9, 0x5E, 0xA8, 0x50 }, | |
179 }; | |
180 | |
181 /* I am not a number !!! This GUID is the one found on the PC used to | |
182 generate the stream */ | |
183 static const GUID my_guid = { | |
184 0, 0, 0, { 0, 0, 0, 0, 0, 0, 0, 0 }, | |
185 }; | |
186 | |
187 const CodecTag codec_wav_tags[] = { | |
218
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
188 /* { CODEC_ID_MP2, 0x50 }, |
137 | 189 { CODEC_ID_MP3, 0x55 }, |
190 { CODEC_ID_AC3, 0x2000 }, | |
191 { CODEC_ID_PCM_S16LE, 0x01 }, | |
218
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
192 { CODEC_ID_PCM_U8, 0x01 }, |
137 | 193 { CODEC_ID_PCM_ALAW, 0x06 }, |
194 { CODEC_ID_PCM_MULAW, 0x07 }, | |
195 { CODEC_ID_ADPCM_MS, 0x02 }, | |
196 { CODEC_ID_ADPCM_IMA_WAV, 0x11 }, | |
218
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
197 { CODEC_ID_ADPCM_IMA_DK4, 0x61 }, |
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
198 { CODEC_ID_ADPCM_IMA_DK3, 0x62 },*/ |
137 | 199 { CODEC_ID_WMAV1, 0x160 }, |
200 { CODEC_ID_WMAV2, 0x161 }, | |
201 { 0, 0 }, | |
202 }; | |
203 | |
204 enum CodecID codec_get_id(const CodecTag *tags, unsigned int tag) | |
205 { | |
206 while (tags->id != 0) { | |
207 if( toupper((tag >> 0)&0xFF) == toupper((tags->tag >> 0)&0xFF) | |
208 && toupper((tag >> 8)&0xFF) == toupper((tags->tag >> 8)&0xFF) | |
209 && toupper((tag >>16)&0xFF) == toupper((tags->tag >>16)&0xFF) | |
210 && toupper((tag >>24)&0xFF) == toupper((tags->tag >>24)&0xFF)) | |
211 return tags->id; | |
212 tags++; | |
213 } | |
214 return CODEC_ID_NONE; | |
215 } | |
216 | |
217 int wav_codec_get_id(unsigned int tag, int bps) | |
218 { | |
219 int id; | |
220 id = codec_get_id(codec_wav_tags, tag); | |
221 if (id <= 0) | |
222 return id; | |
223 /* handle specific u8 codec */ | |
224 if (id == CODEC_ID_PCM_S16LE && bps == 8) | |
225 id = CODEC_ID_PCM_U8; | |
226 return id; | |
227 } | |
228 | |
229 void get_wav_header(ByteIOContext *pb, AVCodecContext *codec, int size) | |
230 { | |
231 int id; | |
232 | |
233 id = get_le16(pb); | |
234 codec->codec_type = CODEC_TYPE_AUDIO; | |
235 codec->codec_tag = id; | |
236 codec->channels = get_le16(pb); | |
237 codec->sample_rate = get_le32(pb); | |
238 codec->bit_rate = get_le32(pb) * 8; | |
239 codec->block_align = get_le16(pb); | |
240 if (size == 14) { /* We're dealing with plain vanilla WAVEFORMAT */ | |
241 codec->bits_per_sample = 8; | |
242 }else | |
243 codec->bits_per_sample = get_le16(pb); | |
244 codec->codec_id = wav_codec_get_id(id, codec->bits_per_sample); | |
245 | |
246 if (size > 16) { /* We're obviously dealing with WAVEFORMATEX */ | |
247 codec->extradata_size = get_le16(pb); | |
248 if (codec->extradata_size > 0) { | |
249 if (codec->extradata_size > size - 18) | |
250 codec->extradata_size = size - 18; | |
210
12004b385a96
[svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents:
142
diff
changeset
|
251 codec->extradata = av_mallocz(codec->extradata_size); |
137 | 252 get_buffer(pb, codec->extradata, codec->extradata_size); |
253 } else | |
254 codec->extradata_size = 0; | |
255 | |
256 /* It is possible for the chunk to contain garbage at the end */ | |
257 if (size - codec->extradata_size - 18 > 0) | |
258 url_fskip(pb, size - codec->extradata_size - 18); | |
259 } | |
260 } | |
261 | |
262 /**********************************/ | |
263 /* decoding */ | |
264 | |
265 #ifdef DEBUG | |
266 #define PRINT_IF_GUID(g,cmp) \ | |
267 if (!memcmp(g, &cmp, sizeof(GUID))) \ | |
268 printf("(GUID: %s) ", #cmp) | |
269 | |
270 static void print_guid(const GUID *g) | |
271 { | |
272 int i; | |
273 PRINT_IF_GUID(g, asf_header); | |
274 else PRINT_IF_GUID(g, file_header); | |
275 else PRINT_IF_GUID(g, stream_header); | |
276 else PRINT_IF_GUID(g, audio_stream); | |
277 else PRINT_IF_GUID(g, audio_conceal_none); | |
278 else PRINT_IF_GUID(g, comment_header); | |
279 else PRINT_IF_GUID(g, codec_comment_header); | |
280 else PRINT_IF_GUID(g, codec_comment1_header); | |
281 else PRINT_IF_GUID(g, data_header); | |
282 else PRINT_IF_GUID(g, index_guid); | |
283 else PRINT_IF_GUID(g, head1_guid); | |
284 else PRINT_IF_GUID(g, head2_guid); | |
285 else PRINT_IF_GUID(g, my_guid); | |
286 else | |
287 printf("(GUID: unknown) "); | |
288 printf("0x%08x, 0x%04x, 0x%04x, {", g->v1, g->v2, g->v3); | |
289 for(i=0;i<8;i++) | |
290 printf(" 0x%02x,", g->v4[i]); | |
291 printf("}\n"); | |
292 } | |
210
12004b385a96
[svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents:
142
diff
changeset
|
293 #undef PRINT_IF_GUID(g,cmp) |
137 | 294 #endif |
295 | |
296 static void get_guid(ByteIOContext *s, GUID *g) | |
297 { | |
298 int i; | |
299 | |
300 g->v1 = get_le32(s); | |
301 g->v2 = get_le16(s); | |
302 g->v3 = get_le16(s); | |
303 for(i=0;i<8;i++) | |
304 g->v4[i] = get_byte(s); | |
305 } | |
306 | |
307 static void get_str16_nolen(ByteIOContext *pb, int len, char *buf, int buf_size) | |
308 { | |
218
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
309 int c; |
137 | 310 char *q; |
311 | |
312 q = buf; | |
313 while (len > 0) { | |
218
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
314 c = get_le16(pb); |
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
315 if ((q - buf) < buf_size - 1) |
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
316 *q++ = c; |
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
317 len-=2; |
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
318 } |
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
319 *q = '\0'; |
137 | 320 } |
321 | |
322 static int asf_probe(AVProbeData *pd) | |
323 { | |
324 GUID g; | |
325 const unsigned char *p; | |
326 int i; | |
327 | |
328 /* check file header */ | |
329 if (pd->buf_size <= 32) | |
330 return 0; | |
331 p = pd->buf; | |
332 g.v1 = p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24); | |
333 p += 4; | |
334 g.v2 = p[0] | (p[1] << 8); | |
335 p += 2; | |
336 g.v3 = p[0] | (p[1] << 8); | |
337 p += 2; | |
338 for(i=0;i<8;i++) | |
339 g.v4[i] = *p++; | |
340 | |
341 if (!memcmp(&g, &asf_header, sizeof(GUID))) | |
342 return AVPROBE_SCORE_MAX; | |
343 else | |
344 return 0; | |
345 } | |
346 | |
347 static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap) | |
348 { | |
349 ASFContext *asf = s->priv_data; | |
350 GUID g; | |
351 ByteIOContext *pb = &s->pb; | |
352 AVStream *st; | |
353 ASFStream *asf_st; | |
354 //int size, i; | |
355 int i; | |
356 int64_t gsize; | |
357 | |
358 av_set_pts_info(s, 32, 1, 1000); /* 32 bit pts in ms */ | |
359 | |
360 get_guid(pb, &g); | |
361 if (memcmp(&g, &asf_header, sizeof(GUID))) | |
362 goto fail; | |
363 get_le64(pb); | |
364 get_le32(pb); | |
365 get_byte(pb); | |
366 get_byte(pb); | |
367 memset(&asf->asfid2avid, -1, sizeof(asf->asfid2avid)); | |
368 for(;;) { | |
369 get_guid(pb, &g); | |
370 gsize = get_le64(pb); | |
371 #ifdef DEBUG | |
372 printf("%08Lx: ", url_ftell(pb) - 24); | |
373 print_guid(&g); | |
374 printf(" size=0x%Lx\n", gsize); | |
375 #endif | |
376 if (gsize < 24) | |
377 goto fail; | |
378 if (!memcmp(&g, &file_header, sizeof(GUID))) { | |
379 get_guid(pb, &asf->hdr.guid); | |
380 asf->hdr.file_size = get_le64(pb); | |
381 asf->hdr.create_time = get_le64(pb); | |
382 asf->hdr.packets_count = get_le64(pb); | |
383 asf->hdr.play_time = get_le64(pb); | |
384 asf->hdr.send_time = get_le64(pb); | |
385 asf->hdr.preroll = get_le32(pb); | |
386 asf->hdr.ignore = get_le32(pb); | |
387 asf->hdr.flags = get_le32(pb); | |
388 asf->hdr.min_pktsize = get_le32(pb); | |
389 asf->hdr.max_pktsize = get_le32(pb); | |
390 asf->hdr.max_bitrate = get_le32(pb); | |
391 asf->packet_size = asf->hdr.max_pktsize; | |
392 asf->nb_packets = asf->hdr.packets_count; | |
393 } else if (!memcmp(&g, &stream_header, sizeof(GUID))) { | |
394 int type, total_size, type_specific_size; | |
395 //unsigned int tag1; | |
396 int64_t pos1, pos2; | |
397 | |
398 pos1 = url_ftell(pb); | |
399 | |
400 st = av_new_stream(s, 0); | |
401 if (!st) | |
402 goto fail; | |
210
12004b385a96
[svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents:
142
diff
changeset
|
403 asf_st = av_mallocz(sizeof(ASFStream)); |
137 | 404 if (!asf_st) |
405 goto fail; | |
406 st->priv_data = asf_st; | |
407 st->start_time = asf->hdr.preroll / (10000000 / AV_TIME_BASE); | |
408 st->duration = (asf->hdr.send_time - asf->hdr.preroll) / | |
409 (10000000 / AV_TIME_BASE); | |
410 get_guid(pb, &g); | |
411 if (!memcmp(&g, &audio_stream, sizeof(GUID))) { | |
412 type = CODEC_TYPE_AUDIO; | |
413 } else { | |
414 goto fail; | |
415 } | |
416 get_guid(pb, &g); | |
417 total_size = get_le64(pb); | |
418 type_specific_size = get_le32(pb); | |
419 get_le32(pb); | |
420 st->id = get_le16(pb) & 0x7f; /* stream id */ | |
421 // mapping of asf ID to AV stream ID; | |
422 asf->asfid2avid[st->id] = s->nb_streams - 1; | |
423 | |
424 get_le32(pb); | |
425 st->codec.codec_type = type; | |
426 /* 1 fps default (XXX: put 0 fps instead) */ | |
427 st->codec.frame_rate = 1; | |
428 st->codec.frame_rate_base = 1; | |
429 if (type == CODEC_TYPE_AUDIO) { | |
430 get_wav_header(pb, &st->codec, type_specific_size); | |
431 st->need_parsing = 1; | |
432 /* We have to init the frame size at some point .... */ | |
433 pos2 = url_ftell(pb); | |
434 if (gsize > (pos2 + 8 - pos1 + 24)) { | |
435 asf_st->ds_span = get_byte(pb); | |
436 asf_st->ds_packet_size = get_le16(pb); | |
437 asf_st->ds_chunk_size = get_le16(pb); | |
438 asf_st->ds_data_size = get_le16(pb); | |
439 asf_st->ds_silence_data = get_byte(pb); | |
440 } | |
441 //printf("Descrambling: ps:%d cs:%d ds:%d s:%d sd:%d\n", | |
442 // asf_st->ds_packet_size, asf_st->ds_chunk_size, | |
443 // asf_st->ds_data_size, asf_st->ds_span, asf_st->ds_silence_data); | |
444 if (asf_st->ds_span > 1) { | |
445 if (!asf_st->ds_chunk_size | |
446 || (asf_st->ds_packet_size/asf_st->ds_chunk_size <= 1)) | |
447 asf_st->ds_span = 0; // disable descrambling | |
448 } | |
449 switch (st->codec.codec_id) { | |
450 case CODEC_ID_PCM_S16LE: | |
451 case CODEC_ID_PCM_S16BE: | |
452 case CODEC_ID_PCM_U16LE: | |
453 case CODEC_ID_PCM_U16BE: | |
454 case CODEC_ID_PCM_S8: | |
455 case CODEC_ID_PCM_U8: | |
456 case CODEC_ID_PCM_ALAW: | |
457 case CODEC_ID_PCM_MULAW: | |
458 st->codec.frame_size = 1; | |
459 break; | |
460 default: | |
461 /* This is probably wrong, but it prevents a crash later */ | |
462 st->codec.frame_size = 1; | |
463 break; | |
464 } | |
465 } | |
466 pos2 = url_ftell(pb); | |
467 url_fskip(pb, gsize - (pos2 - pos1 + 24)); | |
468 } else if (!memcmp(&g, &data_header, sizeof(GUID))) { | |
469 break; | |
470 } else if (!memcmp(&g, &comment_header, sizeof(GUID))) { | |
471 int len1, len2, len3, len4, len5; | |
472 | |
473 len1 = get_le16(pb); | |
474 len2 = get_le16(pb); | |
475 len3 = get_le16(pb); | |
476 len4 = get_le16(pb); | |
477 len5 = get_le16(pb); | |
478 get_str16_nolen(pb, len1, s->title, sizeof(s->title)); | |
479 get_str16_nolen(pb, len2, s->author, sizeof(s->author)); | |
480 get_str16_nolen(pb, len3, s->copyright, sizeof(s->copyright)); | |
481 get_str16_nolen(pb, len4, s->comment, sizeof(s->comment)); | |
482 url_fskip(pb, len5); | |
483 } else if (!memcmp(&g, &extended_content_header, sizeof(GUID))) { | |
484 int desc_count, i; | |
485 | |
486 desc_count = get_le16(pb); | |
487 for(i=0;i<desc_count;i++) | |
488 { | |
489 int name_len,value_type,value_len,value_num = 0; | |
490 char *name, *value; | |
491 | |
492 name_len = get_le16(pb); | |
210
12004b385a96
[svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents:
142
diff
changeset
|
493 name = (char *)av_mallocz(name_len); |
137 | 494 get_str16_nolen(pb, name_len, name, name_len); |
495 value_type = get_le16(pb); | |
496 value_len = get_le16(pb); | |
497 if ((value_type == 0) || (value_type == 1)) // unicode or byte | |
498 { | |
210
12004b385a96
[svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents:
142
diff
changeset
|
499 value = (char *)av_mallocz(value_len); |
137 | 500 get_str16_nolen(pb, value_len, value, value_len); |
501 if (strcmp(name,"WM/AlbumTitle")==0) { strcpy(s->album, value); } | |
502 if (strcmp(name,"WM/Genre")==0) { strcpy(s->genre, value); } | |
503 if (strcmp(name,"WM/Year")==0) s->year = atoi(value); | |
218
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
504 free(value); |
137 | 505 } |
506 if ((value_type >= 2) || (value_type <= 5)) // boolean or DWORD or QWORD or WORD | |
507 { | |
508 if (value_type==2) value_num = get_le32(pb); | |
509 if (value_type==3) value_num = get_le32(pb); | |
510 if (value_type==4) value_num = get_le64(pb); | |
511 if (value_type==5) value_num = get_le16(pb); | |
512 if (strcmp(name,"WM/Track")==0) s->track = value_num + 1; | |
513 if (strcmp(name,"WM/TrackNumber")==0) s->track = value_num; | |
514 } | |
218
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
515 free(name); |
137 | 516 } |
517 } else if (url_feof(pb)) { | |
518 goto fail; | |
519 } else { | |
520 url_fseek(pb, gsize - 24, SEEK_CUR); | |
521 } | |
522 } | |
523 get_guid(pb, &g); | |
524 get_le64(pb); | |
525 get_byte(pb); | |
526 get_byte(pb); | |
527 if (url_feof(pb)) | |
528 goto fail; | |
529 asf->data_offset = url_ftell(pb); | |
530 asf->packet_size_left = 0; | |
531 | |
532 return 0; | |
533 | |
534 fail: | |
535 for(i=0;i<s->nb_streams;i++) { | |
536 AVStream *st = s->streams[i]; | |
537 if (st) { | |
218
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
538 free(st->priv_data); |
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
539 free(st->codec.extradata); |
137 | 540 } |
218
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
541 free(st); |
137 | 542 } |
543 return -1; | |
544 } | |
545 | |
546 #define DO_2BITS(bits, var, defval) \ | |
547 switch (bits & 3) \ | |
548 { \ | |
549 case 3: var = get_le32(pb); rsize += 4; break; \ | |
550 case 2: var = get_le16(pb); rsize += 2; break; \ | |
551 case 1: var = get_byte(pb); rsize++; break; \ | |
552 default: var = defval; break; \ | |
553 } | |
554 | |
555 static int asf_get_packet(AVFormatContext *s) | |
556 { | |
557 ASFContext *asf = s->priv_data; | |
558 ByteIOContext *pb = &s->pb; | |
559 uint32_t packet_length, padsize; | |
560 int rsize = 9; | |
561 int c; | |
562 | |
563 assert((url_ftell(&s->pb) - s->data_offset) % asf->packet_size == 0); | |
564 | |
565 c = get_byte(pb); | |
566 if (c != 0x82) { | |
567 if (!url_feof(pb)) | |
568 printf("ff asf bad header %x at:%lld\n", c, url_ftell(pb)); | |
569 } | |
570 if ((c & 0x0f) == 2) { // always true for now | |
571 if (get_le16(pb) != 0) { | |
572 if (!url_feof(pb)) | |
573 printf("ff asf bad non zero\n"); | |
574 return -EIO; | |
575 } | |
576 rsize+=2; | |
577 /* }else{ | |
578 if (!url_feof(pb)) | |
579 printf("ff asf bad header %x at:%lld\n", c, url_ftell(pb)); | |
580 return -EIO;*/ | |
581 } | |
582 | |
583 asf->packet_flags = get_byte(pb); | |
584 asf->packet_property = get_byte(pb); | |
585 | |
586 DO_2BITS(asf->packet_flags >> 5, packet_length, asf->packet_size); | |
587 DO_2BITS(asf->packet_flags >> 1, padsize, 0); // sequence ignored | |
588 DO_2BITS(asf->packet_flags >> 3, padsize, 0); // padding length | |
589 | |
590 asf->packet_timestamp = get_le32(pb); | |
591 get_le16(pb); /* duration */ | |
592 // rsize has at least 11 bytes which have to be present | |
593 | |
594 if (asf->packet_flags & 0x01) { | |
595 asf->packet_segsizetype = get_byte(pb); rsize++; | |
596 asf->packet_segments = asf->packet_segsizetype & 0x3f; | |
597 } else { | |
598 asf->packet_segments = 1; | |
599 asf->packet_segsizetype = 0x80; | |
600 } | |
601 asf->packet_size_left = packet_length - padsize - rsize; | |
602 if (packet_length < asf->hdr.min_pktsize) | |
603 padsize += asf->hdr.min_pktsize - packet_length; | |
604 asf->packet_padsize = padsize; | |
605 #ifdef DEBUG | |
606 printf("packet: size=%d padsize=%d left=%d\n", asf->packet_size, asf->packet_padsize, asf->packet_size_left); | |
607 #endif | |
608 return 0; | |
609 } | |
610 | |
611 static int asf_read_packet(AVFormatContext *s, AVPacket *pkt) | |
612 { | |
613 ASFContext *asf = s->priv_data; | |
614 ASFStream *asf_st = 0; | |
615 ByteIOContext *pb = &s->pb; | |
616 //static int pc = 0; | |
617 for (;;) { | |
618 int rsize = 0; | |
619 if (asf->packet_size_left < FRAME_HEADER_SIZE | |
620 || asf->packet_segments < 1) { | |
621 //asf->packet_size_left <= asf->packet_padsize) { | |
622 int ret = asf->packet_size_left + asf->packet_padsize; | |
623 //printf("PacketLeftSize:%d Pad:%d Pos:%Ld\n", asf->packet_size_left, asf->packet_padsize, url_ftell(pb)); | |
624 /* fail safe */ | |
625 url_fskip(pb, ret); | |
626 asf->packet_pos= url_ftell(&s->pb); | |
627 ret = asf_get_packet(s); | |
628 //printf("READ ASF PACKET %d r:%d c:%d\n", ret, asf->packet_size_left, pc++); | |
629 if (ret < 0 || url_feof(pb)) | |
630 return -EIO; | |
631 asf->packet_time_start = 0; | |
632 continue; | |
633 } | |
634 if (asf->packet_time_start == 0) { | |
635 /* read frame header */ | |
636 int num = get_byte(pb); | |
637 asf->packet_segments--; | |
638 rsize++; | |
639 asf->packet_key_frame = (num & 0x80) >> 7; | |
640 asf->stream_index = asf->asfid2avid[num & 0x7f]; | |
641 // sequence should be ignored! | |
642 DO_2BITS(asf->packet_property >> 4, asf->packet_seq, 0); | |
643 DO_2BITS(asf->packet_property >> 2, asf->packet_frag_offset, 0); | |
644 DO_2BITS(asf->packet_property, asf->packet_replic_size, 0); | |
645 //printf("key:%d stream:%d seq:%d offset:%d replic_size:%d\n", asf->packet_key_frame, asf->stream_index, asf->packet_seq, //asf->packet_frag_offset, asf->packet_replic_size); | |
646 if (asf->packet_replic_size > 1) { | |
647 assert(asf->packet_replic_size >= 8); | |
648 // it should be always at least 8 bytes - FIXME validate | |
649 asf->packet_obj_size = get_le32(pb); | |
650 asf->packet_frag_timestamp = get_le32(pb); // timestamp | |
651 if (asf->packet_replic_size > 8) | |
652 url_fskip(pb, asf->packet_replic_size - 8); | |
653 rsize += asf->packet_replic_size; // FIXME - check validity | |
654 } else if (asf->packet_replic_size==1){ | |
655 // multipacket - frag_offset is begining timestamp | |
656 asf->packet_time_start = asf->packet_frag_offset; | |
657 asf->packet_frag_offset = 0; | |
658 asf->packet_frag_timestamp = asf->packet_timestamp; | |
659 | |
660 asf->packet_time_delta = get_byte(pb); | |
661 rsize++; | |
662 }else{ | |
663 assert(asf->packet_replic_size==0); | |
664 } | |
665 if (asf->packet_flags & 0x01) { | |
666 DO_2BITS(asf->packet_segsizetype >> 6, asf->packet_frag_size, 0); // 0 is illegal | |
667 #undef DO_2BITS | |
668 //printf("Fragsize %d\n", asf->packet_frag_size); | |
669 } else { | |
670 asf->packet_frag_size = asf->packet_size_left - rsize; | |
671 //printf("Using rest %d %d %d\n", asf->packet_frag_size, asf->packet_size_left, rsize); | |
672 } | |
673 if (asf->packet_replic_size == 1) { | |
674 asf->packet_multi_size = asf->packet_frag_size; | |
675 if (asf->packet_multi_size > asf->packet_size_left) { | |
676 asf->packet_segments = 0; | |
677 continue; | |
678 } | |
679 } | |
680 asf->packet_size_left -= rsize; | |
681 //printf("___objsize____ %d %d rs:%d\n", asf->packet_obj_size, asf->packet_frag_offset, rsize); | |
682 | |
683 if (asf->stream_index < 0) { | |
684 asf->packet_time_start = 0; | |
685 /* unhandled packet (should not happen) */ | |
686 url_fskip(pb, asf->packet_frag_size); | |
687 asf->packet_size_left -= asf->packet_frag_size; | |
688 printf("ff asf skip %d %d\n", asf->packet_frag_size, num & 0x7f); | |
689 continue; | |
690 } | |
691 asf->asf_st = s->streams[asf->stream_index]->priv_data; | |
692 } | |
693 asf_st = asf->asf_st; | |
694 | |
695 if ((asf->packet_frag_offset != asf_st->frag_offset | |
696 || (asf->packet_frag_offset | |
697 && asf->packet_seq != asf_st->seq)) // seq should be ignored | |
698 ) { | |
699 /* cannot continue current packet: free it */ | |
700 // FIXME better check if packet was already allocated | |
701 printf("ff asf parser skips: %d - %d o:%d - %d %d %d fl:%d\n", | |
702 asf_st->pkt.size, | |
703 asf->packet_obj_size, | |
704 asf->packet_frag_offset, asf_st->frag_offset, | |
705 asf->packet_seq, asf_st->seq, asf->packet_frag_size); | |
706 if (asf_st->pkt.size) | |
707 av_free_packet(&asf_st->pkt); | |
708 asf_st->frag_offset = 0; | |
709 if (asf->packet_frag_offset != 0) { | |
710 url_fskip(pb, asf->packet_frag_size); | |
711 printf("ff asf parser skiping %db\n", asf->packet_frag_size); | |
712 asf->packet_size_left -= asf->packet_frag_size; | |
713 continue; | |
714 } | |
715 } | |
716 if (asf->packet_replic_size == 1) { | |
717 // frag_offset is here used as the begining timestamp | |
718 asf->packet_frag_timestamp = asf->packet_time_start; | |
719 asf->packet_time_start += asf->packet_time_delta; | |
720 asf->packet_obj_size = asf->packet_frag_size = get_byte(pb); | |
721 asf->packet_size_left--; | |
722 asf->packet_multi_size--; | |
723 if (asf->packet_multi_size < asf->packet_obj_size) | |
724 { | |
725 asf->packet_time_start = 0; | |
726 url_fskip(pb, asf->packet_multi_size); | |
727 asf->packet_size_left -= asf->packet_multi_size; | |
728 continue; | |
729 } | |
730 asf->packet_multi_size -= asf->packet_obj_size; | |
731 //printf("COMPRESS size %d %d %d ms:%d\n", asf->packet_obj_size, asf->packet_frag_timestamp, asf->packet_size_left, asf->packet_multi_size); | |
732 } | |
733 if (asf_st->frag_offset == 0) { | |
734 /* new packet */ | |
735 av_new_packet(&asf_st->pkt, asf->packet_obj_size); | |
736 asf_st->seq = asf->packet_seq; | |
737 asf_st->pkt.pts = asf->packet_frag_timestamp - asf->hdr.preroll; | |
738 asf_st->pkt.stream_index = asf->stream_index; | |
739 asf_st->packet_pos= asf->packet_pos; | |
740 //printf("new packet: stream:%d key:%d packet_key:%d audio:%d size:%d\n", | |
741 //asf->stream_index, asf->packet_key_frame, asf_st->pkt.flags & PKT_FLAG_KEY, | |
742 //s->streams[asf->stream_index]->codec.codec_type == CODEC_TYPE_AUDIO, asf->packet_obj_size); | |
743 if (s->streams[asf->stream_index]->codec.codec_type == CODEC_TYPE_AUDIO) | |
744 asf->packet_key_frame = 1; | |
745 if (asf->packet_key_frame) | |
746 asf_st->pkt.flags |= PKT_FLAG_KEY; | |
747 } | |
748 | |
749 /* read data */ | |
750 //printf("READ PACKET s:%d os:%d o:%d,%d l:%d DATA:%p\n", | |
751 // asf->packet_size, asf_st->pkt.size, asf->packet_frag_offset, | |
752 // asf_st->frag_offset, asf->packet_frag_size, asf_st->pkt.data); | |
753 asf->packet_size_left -= asf->packet_frag_size; | |
754 if (asf->packet_size_left < 0) | |
755 continue; | |
756 get_buffer(pb, asf_st->pkt.data + asf->packet_frag_offset, | |
757 asf->packet_frag_size); | |
758 asf_st->frag_offset += asf->packet_frag_size; | |
759 /* test if whole packet is read */ | |
760 if (asf_st->frag_offset == asf_st->pkt.size) { | |
761 /* return packet */ | |
762 if (asf_st->ds_span > 1) { | |
763 /* packet descrambling */ | |
218
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
764 char* newdata = malloc(asf_st->pkt.size); |
137 | 765 if (newdata) { |
766 int offset = 0; | |
767 while (offset < asf_st->pkt.size) { | |
768 int off = offset / asf_st->ds_chunk_size; | |
769 int row = off / asf_st->ds_span; | |
770 int col = off % asf_st->ds_span; | |
771 int idx = row + col * asf_st->ds_packet_size / asf_st->ds_chunk_size; | |
772 //printf("off:%d row:%d col:%d idx:%d\n", off, row, col, idx); | |
773 memcpy(newdata + offset, | |
774 asf_st->pkt.data + idx * asf_st->ds_chunk_size, | |
775 asf_st->ds_chunk_size); | |
776 offset += asf_st->ds_chunk_size; | |
777 } | |
218
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
778 free(asf_st->pkt.data); |
137 | 779 asf_st->pkt.data = newdata; |
780 } | |
781 } | |
782 asf_st->frag_offset = 0; | |
783 memcpy(pkt, &asf_st->pkt, sizeof(AVPacket)); | |
784 //printf("packet %d %d\n", asf_st->pkt.size, asf->packet_frag_size); | |
785 asf_st->pkt.size = 0; | |
786 asf_st->pkt.data = 0; | |
787 break; // packet completed | |
788 } | |
789 } | |
790 return 0; | |
791 } | |
792 | |
793 static int asf_read_close(AVFormatContext *s) | |
794 { | |
795 int i; | |
796 | |
797 for(i=0;i<s->nb_streams;i++) { | |
798 AVStream *st = s->streams[i]; | |
218
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
799 free(st->priv_data); |
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
800 free(st->codec.extradata); |
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
801 free(st->codec.palctrl); |
137 | 802 } |
803 return 0; | |
804 } | |
805 | |
806 // Added to support seeking after packets have been read | |
807 // If information is not reset, read_packet fails due to | |
808 // leftover information from previous reads | |
809 static void asf_reset_header(AVFormatContext *s) | |
810 { | |
811 ASFContext *asf = s->priv_data; | |
812 ASFStream *asf_st; | |
813 int i; | |
814 | |
815 asf->packet_nb_frames = 0; | |
816 asf->packet_timestamp_start = -1; | |
817 asf->packet_timestamp_end = -1; | |
818 asf->packet_size_left = 0; | |
819 asf->packet_segments = 0; | |
820 asf->packet_flags = 0; | |
821 asf->packet_property = 0; | |
822 asf->packet_timestamp = 0; | |
823 asf->packet_segsizetype = 0; | |
824 asf->packet_segments = 0; | |
825 asf->packet_seq = 0; | |
826 asf->packet_replic_size = 0; | |
827 asf->packet_key_frame = 0; | |
828 asf->packet_padsize = 0; | |
829 asf->packet_frag_offset = 0; | |
830 asf->packet_frag_size = 0; | |
831 asf->packet_frag_timestamp = 0; | |
832 asf->packet_multi_size = 0; | |
833 asf->packet_obj_size = 0; | |
834 asf->packet_time_delta = 0; | |
835 asf->packet_time_start = 0; | |
836 | |
837 for(i=0; i<s->nb_streams; i++){ | |
838 asf_st= s->streams[i]->priv_data; | |
839 av_free_packet(&asf_st->pkt); | |
840 asf_st->frag_offset=0; | |
841 asf_st->seq=0; | |
842 } | |
843 asf->asf_st= NULL; | |
844 } | |
845 | |
846 static int64_t asf_read_pts(AVFormatContext *s, int64_t *ppos, int stream_index) | |
847 { | |
848 ASFContext *asf = s->priv_data; | |
849 AVPacket pkt1, *pkt = &pkt1; | |
850 ASFStream *asf_st; | |
851 int64_t pts; | |
852 int64_t pos= *ppos; | |
853 int i; | |
854 int64_t start_pos[s->nb_streams]; | |
855 | |
856 for(i=0; i<s->nb_streams; i++){ | |
857 start_pos[i]= pos; | |
858 } | |
859 | |
860 //printf("asf_read_pts\n"); | |
861 url_fseek(&s->pb, pos*asf->packet_size + s->data_offset, SEEK_SET); | |
862 asf_reset_header(s); | |
863 for(;;){ | |
864 if (av_read_frame(s, pkt) < 0){ | |
865 printf("seek failed\n"); | |
866 return AV_NOPTS_VALUE; | |
867 } | |
868 pts= pkt->pts; | |
869 | |
870 av_free_packet(pkt); | |
871 if(pkt->flags&PKT_FLAG_KEY){ | |
872 i= pkt->stream_index; | |
873 | |
874 asf_st= s->streams[i]->priv_data; | |
875 | |
876 assert((asf_st->packet_pos - s->data_offset) % asf->packet_size == 0); | |
877 pos= (asf_st->packet_pos - s->data_offset) / asf->packet_size; | |
878 | |
879 av_add_index_entry(s->streams[i], pos, pts, pos - start_pos[i] + 1, AVINDEX_KEYFRAME); | |
880 start_pos[i]= pos + 1; | |
881 | |
882 if(pkt->stream_index == stream_index) | |
883 break; | |
884 } | |
885 } | |
886 | |
887 *ppos= pos; | |
888 //printf("found keyframe at %Ld stream %d stamp:%Ld\n", *ppos, stream_index, pts); | |
889 | |
890 return pts; | |
891 } | |
892 | |
893 static int asf_read_seek(AVFormatContext *s, int stream_index, int64_t pts) | |
894 { | |
895 ASFContext *asf = s->priv_data; | |
896 AVStream *st; | |
897 int64_t pos; | |
898 int64_t pos_min, pos_max, pts_min, pts_max, cur_pts, pos_limit; | |
899 int no_change; | |
900 | |
901 if (stream_index == -1) | |
902 stream_index= av_find_default_stream_index(s); | |
903 | |
904 if (asf->packet_size <= 0) | |
905 return -1; | |
906 | |
907 pts_max= | |
908 pts_min= AV_NOPTS_VALUE; | |
909 pos_max= pos_limit= -1; // gcc thinks its uninitalized | |
910 | |
911 st= s->streams[stream_index]; | |
912 if(st->index_entries){ | |
913 AVIndexEntry *e; | |
914 int index; | |
915 | |
916 index= av_index_search_timestamp(st, pts); | |
917 e= &st->index_entries[index]; | |
918 if(e->timestamp <= pts){ | |
919 pos_min= e->pos; | |
920 pts_min= e->timestamp; | |
921 }else{ | |
922 assert(index==0); | |
923 } | |
924 index++; | |
925 if(index < st->nb_index_entries){ | |
926 e= &st->index_entries[index]; | |
927 assert(e->timestamp >= pts); | |
928 pos_max= e->pos; | |
929 pts_max= e->timestamp; | |
930 pos_limit= pos_max - e->min_distance; | |
931 } | |
932 } | |
933 | |
934 if(pts_min == AV_NOPTS_VALUE){ | |
935 pos_min = 0; | |
936 pts_min = asf_read_pts(s, &pos_min, stream_index); | |
937 if (pts_min == AV_NOPTS_VALUE) return -1; | |
938 } | |
939 if(pts_max == AV_NOPTS_VALUE){ | |
940 pos_max = (url_filesize(url_fileno(&s->pb)) - 1 - s->data_offset) / asf->packet_size; //FIXME wrong | |
941 pts_max = s->duration; //FIXME wrong | |
942 pos_limit= pos_max; | |
943 } | |
944 | |
945 no_change=0; | |
946 while (pos_min < pos_limit) { | |
947 int64_t start_pos; | |
948 assert(pos_limit <= pos_max); | |
949 | |
950 if(no_change==0){ | |
951 int64_t approximate_keyframe_distance= pos_max - pos_limit; | |
952 // interpolate position (better than dichotomy) | |
953 pos = (int64_t)((double)(pos_max - pos_min) * | |
954 (double)(pts - pts_min) / | |
955 (double)(pts_max - pts_min)) + pos_min - approximate_keyframe_distance; | |
956 }else if(no_change==1){ | |
957 // bisection, if interpolation failed to change min or max pos last time | |
958 pos = (pos_min + pos_limit)>>1; | |
959 }else{ | |
960 // linear search if bisection failed, can only happen if there are very few or no keyframes between min/max | |
961 pos=pos_min; | |
962 } | |
963 if(pos <= pos_min) | |
964 pos= pos_min + 1; | |
965 else if(pos > pos_limit) | |
966 pos= pos_limit; | |
967 start_pos= pos; | |
968 | |
969 // read the next timestamp | |
970 cur_pts = asf_read_pts(s, &pos, stream_index); | |
971 if(pos == pos_max) | |
972 no_change++; | |
973 else | |
974 no_change=0; | |
975 | |
976 assert (cur_pts != AV_NOPTS_VALUE); | |
977 if (pts < cur_pts) { | |
978 pos_limit = start_pos - 1; | |
979 pos_max = pos; | |
980 pts_max = cur_pts; | |
981 } else { | |
982 pos_min = pos; | |
983 pts_min = cur_pts; | |
984 /* check if we are lucky */ | |
985 if (pts == cur_pts) | |
986 break; | |
987 } | |
988 } | |
989 pos = pos_min; | |
990 url_fseek(&s->pb, pos*asf->packet_size + s->data_offset, SEEK_SET); | |
991 asf_reset_header(s); | |
992 return 0; | |
993 } | |
994 | |
995 static AVInputFormat asf_iformat = { | |
996 "asf", | |
997 "asf format", | |
998 sizeof(ASFContext), | |
999 asf_probe, | |
1000 asf_read_header, | |
1001 asf_read_packet, | |
1002 asf_read_close, | |
1003 asf_read_seek, | |
1004 }; | |
1005 | |
1006 int asf_init(void) | |
1007 { | |
1008 av_register_input_format(&asf_iformat); | |
218
0bea7509d6ba
[svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents:
210
diff
changeset
|
1009 |
137 | 1010 return 0; |
1011 } |