You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1178 lines
43KB

  1. /*
  2. * ASF compatible demuxer
  3. * Copyright (c) 2000, 2001 Fabrice Bellard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. //#define DEBUG
  22. #include "libavutil/common.h"
  23. #include "libavutil/avstring.h"
  24. #include "libavcodec/mpegaudio.h"
  25. #include "avformat.h"
  26. #include "riff.h"
  27. #include "asf.h"
  28. #include "asfcrypt.h"
  29. #include "avlanguage.h"
  30. void ff_mms_set_stream_selection(URLContext *h, AVFormatContext *format);
  31. #undef NDEBUG
  32. #include <assert.h>
  33. #define FRAME_HEADER_SIZE 17
  34. // Fix Me! FRAME_HEADER_SIZE may be different.
  35. static const ff_asf_guid index_guid = {
  36. 0x90, 0x08, 0x00, 0x33, 0xb1, 0xe5, 0xcf, 0x11, 0x89, 0xf4, 0x00, 0xa0, 0xc9, 0x03, 0x49, 0xcb
  37. };
  38. static const ff_asf_guid stream_bitrate_guid = { /* (http://get.to/sdp) */
  39. 0xce, 0x75, 0xf8, 0x7b, 0x8d, 0x46, 0xd1, 0x11, 0x8d, 0x82, 0x00, 0x60, 0x97, 0xc9, 0xa2, 0xb2
  40. };
  41. /**********************************/
  42. /* decoding */
  43. static int guidcmp(const void *g1, const void *g2)
  44. {
  45. return memcmp(g1, g2, sizeof(ff_asf_guid));
  46. }
  47. #ifdef DEBUG
  48. #define PRINT_IF_GUID(g,cmp) \
  49. if (!guidcmp(g, &cmp)) \
  50. dprintf(NULL, "(GUID: %s) ", #cmp)
  51. static void print_guid(const ff_asf_guid *g)
  52. {
  53. int i;
  54. PRINT_IF_GUID(g, ff_asf_header);
  55. else PRINT_IF_GUID(g, ff_asf_file_header);
  56. else PRINT_IF_GUID(g, ff_asf_stream_header);
  57. else PRINT_IF_GUID(g, ff_asf_audio_stream);
  58. else PRINT_IF_GUID(g, ff_asf_audio_conceal_none);
  59. else PRINT_IF_GUID(g, ff_asf_video_stream);
  60. else PRINT_IF_GUID(g, ff_asf_video_conceal_none);
  61. else PRINT_IF_GUID(g, ff_asf_command_stream);
  62. else PRINT_IF_GUID(g, ff_asf_comment_header);
  63. else PRINT_IF_GUID(g, ff_asf_codec_comment_header);
  64. else PRINT_IF_GUID(g, ff_asf_codec_comment1_header);
  65. else PRINT_IF_GUID(g, ff_asf_data_header);
  66. else PRINT_IF_GUID(g, index_guid);
  67. else PRINT_IF_GUID(g, ff_asf_head1_guid);
  68. else PRINT_IF_GUID(g, ff_asf_head2_guid);
  69. else PRINT_IF_GUID(g, ff_asf_my_guid);
  70. else PRINT_IF_GUID(g, ff_asf_ext_stream_header);
  71. else PRINT_IF_GUID(g, ff_asf_extended_content_header);
  72. else PRINT_IF_GUID(g, ff_asf_ext_stream_embed_stream_header);
  73. else PRINT_IF_GUID(g, ff_asf_ext_stream_audio_stream);
  74. else PRINT_IF_GUID(g, ff_asf_metadata_header);
  75. else PRINT_IF_GUID(g, stream_bitrate_guid);
  76. else PRINT_IF_GUID(g, ff_asf_language_guid);
  77. else
  78. dprintf(NULL, "(GUID: unknown) ");
  79. for(i=0;i<16;i++)
  80. dprintf(NULL, " 0x%02x,", (*g)[i]);
  81. dprintf(NULL, "}\n");
  82. }
  83. #undef PRINT_IF_GUID
  84. #else
  85. #define print_guid(g)
  86. #endif
  87. static void get_guid(ByteIOContext *s, ff_asf_guid *g)
  88. {
  89. assert(sizeof(*g) == 16);
  90. get_buffer(s, *g, sizeof(*g));
  91. }
  92. #if 0
  93. static void get_str16(ByteIOContext *pb, char *buf, int buf_size)
  94. {
  95. int len, c;
  96. char *q;
  97. len = get_le16(pb);
  98. q = buf;
  99. while (len > 0) {
  100. c = get_le16(pb);
  101. if ((q - buf) < buf_size - 1)
  102. *q++ = c;
  103. len--;
  104. }
  105. *q = '\0';
  106. }
  107. #endif
  108. static void get_str16_nolen(ByteIOContext *pb, int len, char *buf, int buf_size)
  109. {
  110. char* q = buf;
  111. while (len > 1) {
  112. uint8_t tmp;
  113. uint32_t ch;
  114. GET_UTF16(ch, (len -= 2) >= 0 ? get_le16(pb) : 0, break;)
  115. PUT_UTF8(ch, tmp, if (q - buf < buf_size - 1) *q++ = tmp;)
  116. }
  117. if (len > 0)
  118. url_fskip(pb, len);
  119. *q = '\0';
  120. }
  121. static int asf_probe(AVProbeData *pd)
  122. {
  123. /* check file header */
  124. if (!guidcmp(pd->buf, &ff_asf_header))
  125. return AVPROBE_SCORE_MAX;
  126. else
  127. return 0;
  128. }
  129. static int get_value(ByteIOContext *pb, int type){
  130. switch(type){
  131. case 2: return get_le32(pb);
  132. case 3: return get_le32(pb);
  133. case 4: return get_le64(pb);
  134. case 5: return get_le16(pb);
  135. default:return INT_MIN;
  136. }
  137. }
  138. static void get_tag(AVFormatContext *s, const char *key, int type, int len)
  139. {
  140. char *value;
  141. if ((unsigned)len >= (UINT_MAX - 1)/2)
  142. return;
  143. value = av_malloc(2*len+1);
  144. if (!value)
  145. return;
  146. if (type == 0) { // UTF16-LE
  147. get_str16_nolen(s->pb, len, value, 2*len + 1);
  148. } else if (type > 1 && type <= 5) { // boolean or DWORD or QWORD or WORD
  149. uint64_t num = get_value(s->pb, type);
  150. snprintf(value, len, "%"PRIu64, num);
  151. } else {
  152. url_fskip(s->pb, len);
  153. av_freep(&value);
  154. av_log(s, AV_LOG_DEBUG, "Unsupported value type %d in tag %s.\n", type, key);
  155. return;
  156. }
  157. if (!strncmp(key, "WM/", 3))
  158. key += 3;
  159. av_metadata_set2(&s->metadata, key, value, 0);
  160. av_freep(&value);
  161. }
  162. static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
  163. {
  164. ASFContext *asf = s->priv_data;
  165. ff_asf_guid g;
  166. ByteIOContext *pb = s->pb;
  167. AVStream *st;
  168. ASFStream *asf_st;
  169. int size, i;
  170. int64_t gsize;
  171. AVRational dar[128];
  172. uint32_t bitrate[128];
  173. memset(dar, 0, sizeof(dar));
  174. memset(bitrate, 0, sizeof(bitrate));
  175. get_guid(pb, &g);
  176. if (guidcmp(&g, &ff_asf_header))
  177. return -1;
  178. get_le64(pb);
  179. get_le32(pb);
  180. get_byte(pb);
  181. get_byte(pb);
  182. memset(&asf->asfid2avid, -1, sizeof(asf->asfid2avid));
  183. for(;;) {
  184. get_guid(pb, &g);
  185. gsize = get_le64(pb);
  186. dprintf(s, "%08"PRIx64": ", url_ftell(pb) - 24);
  187. print_guid(&g);
  188. dprintf(s, " size=0x%"PRIx64"\n", gsize);
  189. if (!guidcmp(&g, &ff_asf_data_header)) {
  190. asf->data_object_offset = url_ftell(pb);
  191. // if not streaming, gsize is not unlimited (how?), and there is enough space in the file..
  192. if (!(asf->hdr.flags & 0x01) && gsize >= 100) {
  193. asf->data_object_size = gsize - 24;
  194. } else {
  195. asf->data_object_size = (uint64_t)-1;
  196. }
  197. break;
  198. }
  199. if (gsize < 24)
  200. return -1;
  201. if (!guidcmp(&g, &ff_asf_file_header)) {
  202. get_guid(pb, &asf->hdr.guid);
  203. asf->hdr.file_size = get_le64(pb);
  204. asf->hdr.create_time = get_le64(pb);
  205. asf->nb_packets = get_le64(pb);
  206. asf->hdr.play_time = get_le64(pb);
  207. asf->hdr.send_time = get_le64(pb);
  208. asf->hdr.preroll = get_le32(pb);
  209. asf->hdr.ignore = get_le32(pb);
  210. asf->hdr.flags = get_le32(pb);
  211. asf->hdr.min_pktsize = get_le32(pb);
  212. asf->hdr.max_pktsize = get_le32(pb);
  213. asf->hdr.max_bitrate = get_le32(pb);
  214. s->packet_size = asf->hdr.max_pktsize;
  215. } else if (!guidcmp(&g, &ff_asf_stream_header)) {
  216. enum CodecType type;
  217. int type_specific_size, sizeX;
  218. uint64_t total_size;
  219. unsigned int tag1;
  220. int64_t pos1, pos2, start_time;
  221. int test_for_ext_stream_audio, is_dvr_ms_audio=0;
  222. pos1 = url_ftell(pb);
  223. st = av_new_stream(s, 0);
  224. if (!st)
  225. return AVERROR(ENOMEM);
  226. av_set_pts_info(st, 32, 1, 1000); /* 32 bit pts in ms */
  227. asf_st = av_mallocz(sizeof(ASFStream));
  228. if (!asf_st)
  229. return AVERROR(ENOMEM);
  230. st->priv_data = asf_st;
  231. start_time = asf->hdr.preroll;
  232. asf_st->stream_language_index = 128; // invalid stream index means no language info
  233. if(!(asf->hdr.flags & 0x01)) { // if we aren't streaming...
  234. st->duration = asf->hdr.play_time /
  235. (10000000 / 1000) - start_time;
  236. }
  237. get_guid(pb, &g);
  238. test_for_ext_stream_audio = 0;
  239. if (!guidcmp(&g, &ff_asf_audio_stream)) {
  240. type = CODEC_TYPE_AUDIO;
  241. } else if (!guidcmp(&g, &ff_asf_video_stream)) {
  242. type = CODEC_TYPE_VIDEO;
  243. } else if (!guidcmp(&g, &ff_asf_command_stream)) {
  244. type = CODEC_TYPE_DATA;
  245. } else if (!guidcmp(&g, &ff_asf_ext_stream_embed_stream_header)) {
  246. test_for_ext_stream_audio = 1;
  247. type = CODEC_TYPE_UNKNOWN;
  248. } else {
  249. return -1;
  250. }
  251. get_guid(pb, &g);
  252. total_size = get_le64(pb);
  253. type_specific_size = get_le32(pb);
  254. get_le32(pb);
  255. st->id = get_le16(pb) & 0x7f; /* stream id */
  256. // mapping of asf ID to AV stream ID;
  257. asf->asfid2avid[st->id] = s->nb_streams - 1;
  258. get_le32(pb);
  259. if (test_for_ext_stream_audio) {
  260. get_guid(pb, &g);
  261. if (!guidcmp(&g, &ff_asf_ext_stream_audio_stream)) {
  262. type = CODEC_TYPE_AUDIO;
  263. is_dvr_ms_audio=1;
  264. get_guid(pb, &g);
  265. get_le32(pb);
  266. get_le32(pb);
  267. get_le32(pb);
  268. get_guid(pb, &g);
  269. get_le32(pb);
  270. }
  271. }
  272. st->codec->codec_type = type;
  273. if (type == CODEC_TYPE_AUDIO) {
  274. ff_get_wav_header(pb, st->codec, type_specific_size);
  275. if (is_dvr_ms_audio) {
  276. // codec_id and codec_tag are unreliable in dvr_ms
  277. // files. Set them later by probing stream.
  278. st->codec->codec_id = CODEC_ID_PROBE;
  279. st->codec->codec_tag = 0;
  280. }
  281. if (st->codec->codec_id == CODEC_ID_AAC) {
  282. st->need_parsing = AVSTREAM_PARSE_NONE;
  283. } else {
  284. st->need_parsing = AVSTREAM_PARSE_FULL;
  285. }
  286. /* We have to init the frame size at some point .... */
  287. pos2 = url_ftell(pb);
  288. if (gsize >= (pos2 + 8 - pos1 + 24)) {
  289. asf_st->ds_span = get_byte(pb);
  290. asf_st->ds_packet_size = get_le16(pb);
  291. asf_st->ds_chunk_size = get_le16(pb);
  292. get_le16(pb); //ds_data_size
  293. get_byte(pb); //ds_silence_data
  294. }
  295. //printf("Descrambling: ps:%d cs:%d ds:%d s:%d sd:%d\n",
  296. // asf_st->ds_packet_size, asf_st->ds_chunk_size,
  297. // asf_st->ds_data_size, asf_st->ds_span, asf_st->ds_silence_data);
  298. if (asf_st->ds_span > 1) {
  299. if (!asf_st->ds_chunk_size
  300. || (asf_st->ds_packet_size/asf_st->ds_chunk_size <= 1)
  301. || asf_st->ds_packet_size % asf_st->ds_chunk_size)
  302. asf_st->ds_span = 0; // disable descrambling
  303. }
  304. switch (st->codec->codec_id) {
  305. case CODEC_ID_MP3:
  306. st->codec->frame_size = MPA_FRAME_SIZE;
  307. break;
  308. case CODEC_ID_PCM_S16LE:
  309. case CODEC_ID_PCM_S16BE:
  310. case CODEC_ID_PCM_U16LE:
  311. case CODEC_ID_PCM_U16BE:
  312. case CODEC_ID_PCM_S8:
  313. case CODEC_ID_PCM_U8:
  314. case CODEC_ID_PCM_ALAW:
  315. case CODEC_ID_PCM_MULAW:
  316. st->codec->frame_size = 1;
  317. break;
  318. default:
  319. /* This is probably wrong, but it prevents a crash later */
  320. st->codec->frame_size = 1;
  321. break;
  322. }
  323. } else if (type == CODEC_TYPE_VIDEO) {
  324. get_le32(pb);
  325. get_le32(pb);
  326. get_byte(pb);
  327. size = get_le16(pb); /* size */
  328. sizeX= get_le32(pb); /* size */
  329. st->codec->width = get_le32(pb);
  330. st->codec->height = get_le32(pb);
  331. /* not available for asf */
  332. get_le16(pb); /* panes */
  333. st->codec->bits_per_coded_sample = get_le16(pb); /* depth */
  334. tag1 = get_le32(pb);
  335. url_fskip(pb, 20);
  336. // av_log(s, AV_LOG_DEBUG, "size:%d tsize:%d sizeX:%d\n", size, total_size, sizeX);
  337. size= sizeX;
  338. if (size > 40) {
  339. st->codec->extradata_size = size - 40;
  340. st->codec->extradata = av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
  341. get_buffer(pb, st->codec->extradata, st->codec->extradata_size);
  342. }
  343. /* Extract palette from extradata if bpp <= 8 */
  344. /* This code assumes that extradata contains only palette */
  345. /* This is true for all paletted codecs implemented in ffmpeg */
  346. if (st->codec->extradata_size && (st->codec->bits_per_coded_sample <= 8)) {
  347. st->codec->palctrl = av_mallocz(sizeof(AVPaletteControl));
  348. #if HAVE_BIGENDIAN
  349. for (i = 0; i < FFMIN(st->codec->extradata_size, AVPALETTE_SIZE)/4; i++)
  350. st->codec->palctrl->palette[i] = bswap_32(((uint32_t*)st->codec->extradata)[i]);
  351. #else
  352. memcpy(st->codec->palctrl->palette, st->codec->extradata,
  353. FFMIN(st->codec->extradata_size, AVPALETTE_SIZE));
  354. #endif
  355. st->codec->palctrl->palette_changed = 1;
  356. }
  357. st->codec->codec_tag = tag1;
  358. st->codec->codec_id = ff_codec_get_id(ff_codec_bmp_tags, tag1);
  359. if(tag1 == MKTAG('D', 'V', 'R', ' '))
  360. st->need_parsing = AVSTREAM_PARSE_FULL;
  361. }
  362. pos2 = url_ftell(pb);
  363. url_fskip(pb, gsize - (pos2 - pos1 + 24));
  364. } else if (!guidcmp(&g, &ff_asf_comment_header)) {
  365. int len1, len2, len3, len4, len5;
  366. len1 = get_le16(pb);
  367. len2 = get_le16(pb);
  368. len3 = get_le16(pb);
  369. len4 = get_le16(pb);
  370. len5 = get_le16(pb);
  371. get_tag(s, "title" , 0, len1);
  372. get_tag(s, "author" , 0, len2);
  373. get_tag(s, "copyright", 0, len3);
  374. get_tag(s, "comment" , 0, len4);
  375. url_fskip(pb, len5);
  376. } else if (!guidcmp(&g, &stream_bitrate_guid)) {
  377. int stream_count = get_le16(pb);
  378. int j;
  379. // av_log(s, AV_LOG_ERROR, "stream bitrate properties\n");
  380. // av_log(s, AV_LOG_ERROR, "streams %d\n", streams);
  381. for(j = 0; j < stream_count; j++) {
  382. int flags, bitrate, stream_id;
  383. flags= get_le16(pb);
  384. bitrate= get_le32(pb);
  385. stream_id= (flags & 0x7f);
  386. // av_log(s, AV_LOG_ERROR, "flags: 0x%x stream id %d, bitrate %d\n", flags, stream_id, bitrate);
  387. asf->stream_bitrates[stream_id]= bitrate;
  388. }
  389. } else if (!guidcmp(&g, &ff_asf_language_guid)) {
  390. int j;
  391. int stream_count = get_le16(pb);
  392. for(j = 0; j < stream_count; j++) {
  393. char lang[6];
  394. unsigned int lang_len = get_byte(pb);
  395. get_str16_nolen(pb, lang_len, lang, sizeof(lang));
  396. if (j < 128)
  397. av_strlcpy(asf->stream_languages[j], lang, sizeof(*asf->stream_languages));
  398. }
  399. } else if (!guidcmp(&g, &ff_asf_extended_content_header)) {
  400. int desc_count, i;
  401. desc_count = get_le16(pb);
  402. for(i=0;i<desc_count;i++) {
  403. int name_len,value_type,value_len;
  404. char name[1024];
  405. name_len = get_le16(pb);
  406. if (name_len%2) // must be even, broken lavf versions wrote len-1
  407. name_len += 1;
  408. get_str16_nolen(pb, name_len, name, sizeof(name));
  409. value_type = get_le16(pb);
  410. value_len = get_le16(pb);
  411. if (!value_type && value_len%2)
  412. value_len += 1;
  413. get_tag(s, name, value_type, value_len);
  414. }
  415. } else if (!guidcmp(&g, &ff_asf_metadata_header)) {
  416. int n, stream_num, name_len, value_len, value_type, value_num;
  417. n = get_le16(pb);
  418. for(i=0;i<n;i++) {
  419. char name[1024];
  420. get_le16(pb); //lang_list_index
  421. stream_num= get_le16(pb);
  422. name_len= get_le16(pb);
  423. value_type= get_le16(pb);
  424. value_len= get_le32(pb);
  425. get_str16_nolen(pb, name_len, name, sizeof(name));
  426. //av_log(s, AV_LOG_ERROR, "%d %d %d %d %d <%s>\n", i, stream_num, name_len, value_type, value_len, name);
  427. value_num= get_le16(pb);//we should use get_value() here but it does not work 2 is le16 here but le32 elsewhere
  428. url_fskip(pb, value_len - 2);
  429. if(stream_num<128){
  430. if (!strcmp(name, "AspectRatioX")) dar[stream_num].num= value_num;
  431. else if(!strcmp(name, "AspectRatioY")) dar[stream_num].den= value_num;
  432. }
  433. }
  434. } else if (!guidcmp(&g, &ff_asf_ext_stream_header)) {
  435. int ext_len, payload_ext_ct, stream_ct;
  436. uint32_t ext_d, leak_rate, stream_num;
  437. unsigned int stream_languageid_index;
  438. get_le64(pb); // starttime
  439. get_le64(pb); // endtime
  440. leak_rate = get_le32(pb); // leak-datarate
  441. get_le32(pb); // bucket-datasize
  442. get_le32(pb); // init-bucket-fullness
  443. get_le32(pb); // alt-leak-datarate
  444. get_le32(pb); // alt-bucket-datasize
  445. get_le32(pb); // alt-init-bucket-fullness
  446. get_le32(pb); // max-object-size
  447. get_le32(pb); // flags (reliable,seekable,no_cleanpoints?,resend-live-cleanpoints, rest of bits reserved)
  448. stream_num = get_le16(pb); // stream-num
  449. stream_languageid_index = get_le16(pb); // stream-language-id-index
  450. if (stream_num < 128)
  451. asf->streams[stream_num].stream_language_index = stream_languageid_index;
  452. get_le64(pb); // avg frametime in 100ns units
  453. stream_ct = get_le16(pb); //stream-name-count
  454. payload_ext_ct = get_le16(pb); //payload-extension-system-count
  455. if (stream_num < 128)
  456. bitrate[stream_num] = leak_rate;
  457. for (i=0; i<stream_ct; i++){
  458. get_le16(pb);
  459. ext_len = get_le16(pb);
  460. url_fseek(pb, ext_len, SEEK_CUR);
  461. }
  462. for (i=0; i<payload_ext_ct; i++){
  463. get_guid(pb, &g);
  464. ext_d=get_le16(pb);
  465. ext_len=get_le32(pb);
  466. url_fseek(pb, ext_len, SEEK_CUR);
  467. }
  468. // there could be a optional stream properties object to follow
  469. // if so the next iteration will pick it up
  470. } else if (!guidcmp(&g, &ff_asf_head1_guid)) {
  471. int v1, v2;
  472. get_guid(pb, &g);
  473. v1 = get_le32(pb);
  474. v2 = get_le16(pb);
  475. #if 0
  476. } else if (!guidcmp(&g, &ff_asf_codec_comment_header)) {
  477. int len, v1, n, num;
  478. char str[256], *q;
  479. char tag[16];
  480. get_guid(pb, &g);
  481. print_guid(&g);
  482. n = get_le32(pb);
  483. for(i=0;i<n;i++) {
  484. num = get_le16(pb); /* stream number */
  485. get_str16(pb, str, sizeof(str));
  486. get_str16(pb, str, sizeof(str));
  487. len = get_le16(pb);
  488. q = tag;
  489. while (len > 0) {
  490. v1 = get_byte(pb);
  491. if ((q - tag) < sizeof(tag) - 1)
  492. *q++ = v1;
  493. len--;
  494. }
  495. *q = '\0';
  496. }
  497. #endif
  498. } else if (url_feof(pb)) {
  499. return -1;
  500. } else {
  501. if (!s->keylen) {
  502. if (!guidcmp(&g, &ff_asf_content_encryption)) {
  503. av_log(s, AV_LOG_WARNING, "DRM protected stream detected, decoding will likely fail!\n");
  504. } else if (!guidcmp(&g, &ff_asf_ext_content_encryption)) {
  505. av_log(s, AV_LOG_WARNING, "Ext DRM protected stream detected, decoding will likely fail!\n");
  506. } else if (!guidcmp(&g, &ff_asf_digital_signature)) {
  507. av_log(s, AV_LOG_WARNING, "Digital signature detected, decoding will likely fail!\n");
  508. }
  509. }
  510. url_fseek(pb, gsize - 24, SEEK_CUR);
  511. }
  512. }
  513. get_guid(pb, &g);
  514. get_le64(pb);
  515. get_byte(pb);
  516. get_byte(pb);
  517. if (url_feof(pb))
  518. return -1;
  519. asf->data_offset = url_ftell(pb);
  520. asf->packet_size_left = 0;
  521. for(i=0; i<128; i++){
  522. int stream_num= asf->asfid2avid[i];
  523. if(stream_num>=0){
  524. AVStream *st = s->streams[stream_num];
  525. if (!st->codec->bit_rate)
  526. st->codec->bit_rate = bitrate[i];
  527. if (dar[i].num > 0 && dar[i].den > 0)
  528. av_reduce(&st->sample_aspect_ratio.num,
  529. &st->sample_aspect_ratio.den,
  530. dar[i].num, dar[i].den, INT_MAX);
  531. //av_log(s, AV_LOG_ERROR, "dar %d:%d sar=%d:%d\n", dar[i].num, dar[i].den, st->sample_aspect_ratio.num, st->sample_aspect_ratio.den);
  532. // copy and convert language codes to the frontend
  533. if (asf->streams[i].stream_language_index < 128) {
  534. const char *rfc1766 = asf->stream_languages[asf->streams[i].stream_language_index];
  535. if (rfc1766 && strlen(rfc1766) > 1) {
  536. const char primary_tag[3] = { rfc1766[0], rfc1766[1], '\0' }; // ignore country code if any
  537. const char *iso6392 = av_convert_lang_to(primary_tag, AV_LANG_ISO639_2_BIBL);
  538. if (iso6392)
  539. av_metadata_set(&st->metadata, "language", iso6392);
  540. }
  541. }
  542. }
  543. }
  544. return 0;
  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. * Load a single ASF packet into the demuxer.
  556. * @param s demux context
  557. * @param pb context to read data from
  558. * @returns 0 on success, <0 on error
  559. */
  560. static int ff_asf_get_packet(AVFormatContext *s, ByteIOContext *pb)
  561. {
  562. ASFContext *asf = s->priv_data;
  563. uint32_t packet_length, padsize;
  564. int rsize = 8;
  565. int c, d, e, off;
  566. // if we do not know packet size, allow skipping up to 32 kB
  567. off= 32768;
  568. if (s->packet_size > 0)
  569. off= (url_ftell(pb) - s->data_offset) % s->packet_size + 3;
  570. c=d=e=-1;
  571. while(off-- > 0){
  572. c=d; d=e;
  573. e= get_byte(pb);
  574. if(c == 0x82 && !d && !e)
  575. break;
  576. }
  577. if (c != 0x82) {
  578. /**
  579. * This code allows handling of -EAGAIN at packet boundaries (i.e.
  580. * if the packet sync code above triggers -EAGAIN). This does not
  581. * imply complete -EAGAIN handling support at random positions in
  582. * the stream.
  583. */
  584. if (url_ferror(pb) == AVERROR(EAGAIN))
  585. return AVERROR(EAGAIN);
  586. if (!url_feof(pb))
  587. av_log(s, AV_LOG_ERROR, "ff asf bad header %x at:%"PRId64"\n", c, url_ftell(pb));
  588. }
  589. if ((c & 0x8f) == 0x82) {
  590. if (d || e) {
  591. if (!url_feof(pb))
  592. av_log(s, AV_LOG_ERROR, "ff asf bad non zero\n");
  593. return -1;
  594. }
  595. c= get_byte(pb);
  596. d= get_byte(pb);
  597. rsize+=3;
  598. }else{
  599. url_fseek(pb, -1, SEEK_CUR); //FIXME
  600. }
  601. asf->packet_flags = c;
  602. asf->packet_property = d;
  603. DO_2BITS(asf->packet_flags >> 5, packet_length, s->packet_size);
  604. DO_2BITS(asf->packet_flags >> 1, padsize, 0); // sequence ignored
  605. DO_2BITS(asf->packet_flags >> 3, padsize, 0); // padding length
  606. //the following checks prevent overflows and infinite loops
  607. if(!packet_length || packet_length >= (1U<<29)){
  608. av_log(s, AV_LOG_ERROR, "invalid packet_length %d at:%"PRId64"\n", packet_length, url_ftell(pb));
  609. return -1;
  610. }
  611. if(padsize >= packet_length){
  612. av_log(s, AV_LOG_ERROR, "invalid padsize %d at:%"PRId64"\n", padsize, url_ftell(pb));
  613. return -1;
  614. }
  615. asf->packet_timestamp = get_le32(pb);
  616. get_le16(pb); /* duration */
  617. // rsize has at least 11 bytes which have to be present
  618. if (asf->packet_flags & 0x01) {
  619. asf->packet_segsizetype = get_byte(pb); rsize++;
  620. asf->packet_segments = asf->packet_segsizetype & 0x3f;
  621. } else {
  622. asf->packet_segments = 1;
  623. asf->packet_segsizetype = 0x80;
  624. }
  625. asf->packet_size_left = packet_length - padsize - rsize;
  626. if (packet_length < asf->hdr.min_pktsize)
  627. padsize += asf->hdr.min_pktsize - packet_length;
  628. asf->packet_padsize = padsize;
  629. dprintf(s, "packet: size=%d padsize=%d left=%d\n", s->packet_size, asf->packet_padsize, asf->packet_size_left);
  630. return 0;
  631. }
  632. /**
  633. *
  634. * @return <0 if error
  635. */
  636. static int asf_read_frame_header(AVFormatContext *s, ByteIOContext *pb){
  637. ASFContext *asf = s->priv_data;
  638. int rsize = 1;
  639. int num = get_byte(pb);
  640. int64_t ts0, ts1;
  641. asf->packet_segments--;
  642. asf->packet_key_frame = num >> 7;
  643. asf->stream_index = asf->asfid2avid[num & 0x7f];
  644. // sequence should be ignored!
  645. DO_2BITS(asf->packet_property >> 4, asf->packet_seq, 0);
  646. DO_2BITS(asf->packet_property >> 2, asf->packet_frag_offset, 0);
  647. DO_2BITS(asf->packet_property, asf->packet_replic_size, 0);
  648. //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);
  649. if (asf->packet_replic_size >= 8) {
  650. asf->packet_obj_size = get_le32(pb);
  651. if(asf->packet_obj_size >= (1<<24) || asf->packet_obj_size <= 0){
  652. av_log(s, AV_LOG_ERROR, "packet_obj_size invalid\n");
  653. return -1;
  654. }
  655. asf->packet_frag_timestamp = get_le32(pb); // timestamp
  656. if(asf->packet_replic_size >= 8+38+4){
  657. // for(i=0; i<asf->packet_replic_size-8; i++)
  658. // av_log(s, AV_LOG_DEBUG, "%02X ",get_byte(pb));
  659. // av_log(s, AV_LOG_DEBUG, "\n");
  660. url_fskip(pb, 10);
  661. ts0= get_le64(pb);
  662. ts1= get_le64(pb);
  663. url_fskip(pb, 12);
  664. get_le32(pb);
  665. url_fskip(pb, asf->packet_replic_size - 8 - 38 - 4);
  666. if(ts0!= -1) asf->packet_frag_timestamp= ts0/10000;
  667. else asf->packet_frag_timestamp= AV_NOPTS_VALUE;
  668. }else
  669. url_fskip(pb, asf->packet_replic_size - 8);
  670. rsize += asf->packet_replic_size; // FIXME - check validity
  671. } else if (asf->packet_replic_size==1){
  672. // multipacket - frag_offset is beginning timestamp
  673. asf->packet_time_start = asf->packet_frag_offset;
  674. asf->packet_frag_offset = 0;
  675. asf->packet_frag_timestamp = asf->packet_timestamp;
  676. asf->packet_time_delta = get_byte(pb);
  677. rsize++;
  678. }else if(asf->packet_replic_size!=0){
  679. av_log(s, AV_LOG_ERROR, "unexpected packet_replic_size of %d\n", asf->packet_replic_size);
  680. return -1;
  681. }
  682. if (asf->packet_flags & 0x01) {
  683. DO_2BITS(asf->packet_segsizetype >> 6, asf->packet_frag_size, 0); // 0 is illegal
  684. if(asf->packet_frag_size > asf->packet_size_left - rsize){
  685. av_log(s, AV_LOG_ERROR, "packet_frag_size is invalid\n");
  686. return -1;
  687. }
  688. //printf("Fragsize %d\n", asf->packet_frag_size);
  689. } else {
  690. asf->packet_frag_size = asf->packet_size_left - rsize;
  691. //printf("Using rest %d %d %d\n", asf->packet_frag_size, asf->packet_size_left, rsize);
  692. }
  693. if (asf->packet_replic_size == 1) {
  694. asf->packet_multi_size = asf->packet_frag_size;
  695. if (asf->packet_multi_size > asf->packet_size_left)
  696. return -1;
  697. }
  698. asf->packet_size_left -= rsize;
  699. //printf("___objsize____ %d %d rs:%d\n", asf->packet_obj_size, asf->packet_frag_offset, rsize);
  700. return 0;
  701. }
  702. /**
  703. * Parse data from individual ASF packets (which were previously loaded
  704. * with asf_get_packet()).
  705. * @param s demux context
  706. * @param pb context to read data from
  707. * @param pkt pointer to store packet data into
  708. * @returns 0 if data was stored in pkt, <0 on error or 1 if more ASF
  709. * packets need to be loaded (through asf_get_packet())
  710. */
  711. static int ff_asf_parse_packet(AVFormatContext *s, ByteIOContext *pb, AVPacket *pkt)
  712. {
  713. ASFContext *asf = s->priv_data;
  714. ASFStream *asf_st = 0;
  715. for (;;) {
  716. if(url_feof(pb))
  717. return AVERROR_EOF;
  718. if (asf->packet_size_left < FRAME_HEADER_SIZE
  719. || asf->packet_segments < 1) {
  720. //asf->packet_size_left <= asf->packet_padsize) {
  721. int ret = asf->packet_size_left + asf->packet_padsize;
  722. //printf("PacketLeftSize:%d Pad:%d Pos:%"PRId64"\n", asf->packet_size_left, asf->packet_padsize, url_ftell(pb));
  723. assert(ret>=0);
  724. /* fail safe */
  725. url_fskip(pb, ret);
  726. asf->packet_pos= url_ftell(pb);
  727. if (asf->data_object_size != (uint64_t)-1 &&
  728. (asf->packet_pos - asf->data_object_offset >= asf->data_object_size))
  729. return AVERROR_EOF; /* Do not exceed the size of the data object */
  730. return 1;
  731. }
  732. if (asf->packet_time_start == 0) {
  733. if(asf_read_frame_header(s, pb) < 0){
  734. asf->packet_segments= 0;
  735. continue;
  736. }
  737. if (asf->stream_index < 0
  738. || s->streams[asf->stream_index]->discard >= AVDISCARD_ALL
  739. || (!asf->packet_key_frame && s->streams[asf->stream_index]->discard >= AVDISCARD_NONKEY)
  740. ) {
  741. asf->packet_time_start = 0;
  742. /* unhandled packet (should not happen) */
  743. url_fskip(pb, asf->packet_frag_size);
  744. asf->packet_size_left -= asf->packet_frag_size;
  745. if(asf->stream_index < 0)
  746. av_log(s, AV_LOG_ERROR, "ff asf skip %d (unknown stream)\n", asf->packet_frag_size);
  747. continue;
  748. }
  749. asf->asf_st = s->streams[asf->stream_index]->priv_data;
  750. }
  751. asf_st = asf->asf_st;
  752. if (asf->packet_replic_size == 1) {
  753. // frag_offset is here used as the beginning timestamp
  754. asf->packet_frag_timestamp = asf->packet_time_start;
  755. asf->packet_time_start += asf->packet_time_delta;
  756. asf->packet_obj_size = asf->packet_frag_size = get_byte(pb);
  757. asf->packet_size_left--;
  758. asf->packet_multi_size--;
  759. if (asf->packet_multi_size < asf->packet_obj_size)
  760. {
  761. asf->packet_time_start = 0;
  762. url_fskip(pb, asf->packet_multi_size);
  763. asf->packet_size_left -= asf->packet_multi_size;
  764. continue;
  765. }
  766. asf->packet_multi_size -= asf->packet_obj_size;
  767. //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);
  768. }
  769. if( /*asf->packet_frag_size == asf->packet_obj_size*/
  770. asf_st->frag_offset + asf->packet_frag_size <= asf_st->pkt.size
  771. && asf_st->frag_offset + asf->packet_frag_size > asf->packet_obj_size){
  772. av_log(s, AV_LOG_INFO, "ignoring invalid packet_obj_size (%d %d %d %d)\n",
  773. asf_st->frag_offset, asf->packet_frag_size,
  774. asf->packet_obj_size, asf_st->pkt.size);
  775. asf->packet_obj_size= asf_st->pkt.size;
  776. }
  777. if ( asf_st->pkt.size != asf->packet_obj_size
  778. || asf_st->frag_offset + asf->packet_frag_size > asf_st->pkt.size) { //FIXME is this condition sufficient?
  779. if(asf_st->pkt.data){
  780. av_log(s, AV_LOG_INFO, "freeing incomplete packet size %d, new %d\n", asf_st->pkt.size, asf->packet_obj_size);
  781. asf_st->frag_offset = 0;
  782. av_free_packet(&asf_st->pkt);
  783. }
  784. /* new packet */
  785. av_new_packet(&asf_st->pkt, asf->packet_obj_size);
  786. asf_st->seq = asf->packet_seq;
  787. asf_st->pkt.dts = asf->packet_frag_timestamp;
  788. asf_st->pkt.stream_index = asf->stream_index;
  789. asf_st->pkt.pos =
  790. asf_st->packet_pos= asf->packet_pos;
  791. //printf("new packet: stream:%d key:%d packet_key:%d audio:%d size:%d\n",
  792. //asf->stream_index, asf->packet_key_frame, asf_st->pkt.flags & PKT_FLAG_KEY,
  793. //s->streams[asf->stream_index]->codec->codec_type == CODEC_TYPE_AUDIO, asf->packet_obj_size);
  794. if (s->streams[asf->stream_index]->codec->codec_type == CODEC_TYPE_AUDIO)
  795. asf->packet_key_frame = 1;
  796. if (asf->packet_key_frame)
  797. asf_st->pkt.flags |= PKT_FLAG_KEY;
  798. }
  799. /* read data */
  800. //printf("READ PACKET s:%d os:%d o:%d,%d l:%d DATA:%p\n",
  801. // s->packet_size, asf_st->pkt.size, asf->packet_frag_offset,
  802. // asf_st->frag_offset, asf->packet_frag_size, asf_st->pkt.data);
  803. asf->packet_size_left -= asf->packet_frag_size;
  804. if (asf->packet_size_left < 0)
  805. continue;
  806. if( asf->packet_frag_offset >= asf_st->pkt.size
  807. || asf->packet_frag_size > asf_st->pkt.size - asf->packet_frag_offset){
  808. av_log(s, AV_LOG_ERROR, "packet fragment position invalid %u,%u not in %u\n",
  809. asf->packet_frag_offset, asf->packet_frag_size, asf_st->pkt.size);
  810. continue;
  811. }
  812. get_buffer(pb, asf_st->pkt.data + asf->packet_frag_offset,
  813. asf->packet_frag_size);
  814. if (s->key && s->keylen == 20)
  815. ff_asfcrypt_dec(s->key, asf_st->pkt.data + asf->packet_frag_offset,
  816. asf->packet_frag_size);
  817. asf_st->frag_offset += asf->packet_frag_size;
  818. /* test if whole packet is read */
  819. if (asf_st->frag_offset == asf_st->pkt.size) {
  820. //workaround for macroshit radio DVR-MS files
  821. if( s->streams[asf->stream_index]->codec->codec_id == CODEC_ID_MPEG2VIDEO
  822. && asf_st->pkt.size > 100){
  823. int i;
  824. for(i=0; i<asf_st->pkt.size && !asf_st->pkt.data[i]; i++);
  825. if(i == asf_st->pkt.size){
  826. av_log(s, AV_LOG_DEBUG, "discarding ms fart\n");
  827. asf_st->frag_offset = 0;
  828. av_free_packet(&asf_st->pkt);
  829. continue;
  830. }
  831. }
  832. /* return packet */
  833. if (asf_st->ds_span > 1) {
  834. if(asf_st->pkt.size != asf_st->ds_packet_size * asf_st->ds_span){
  835. av_log(s, AV_LOG_ERROR, "pkt.size != ds_packet_size * ds_span (%d %d %d)\n", asf_st->pkt.size, asf_st->ds_packet_size, asf_st->ds_span);
  836. }else{
  837. /* packet descrambling */
  838. uint8_t *newdata = av_malloc(asf_st->pkt.size);
  839. if (newdata) {
  840. int offset = 0;
  841. while (offset < asf_st->pkt.size) {
  842. int off = offset / asf_st->ds_chunk_size;
  843. int row = off / asf_st->ds_span;
  844. int col = off % asf_st->ds_span;
  845. int idx = row + col * asf_st->ds_packet_size / asf_st->ds_chunk_size;
  846. //printf("off:%d row:%d col:%d idx:%d\n", off, row, col, idx);
  847. assert(offset + asf_st->ds_chunk_size <= asf_st->pkt.size);
  848. assert(idx+1 <= asf_st->pkt.size / asf_st->ds_chunk_size);
  849. memcpy(newdata + offset,
  850. asf_st->pkt.data + idx * asf_st->ds_chunk_size,
  851. asf_st->ds_chunk_size);
  852. offset += asf_st->ds_chunk_size;
  853. }
  854. av_free(asf_st->pkt.data);
  855. asf_st->pkt.data = newdata;
  856. }
  857. }
  858. }
  859. asf_st->frag_offset = 0;
  860. *pkt= asf_st->pkt;
  861. //printf("packet %d %d\n", asf_st->pkt.size, asf->packet_frag_size);
  862. asf_st->pkt.size = 0;
  863. asf_st->pkt.data = 0;
  864. break; // packet completed
  865. }
  866. }
  867. return 0;
  868. }
  869. static int asf_read_packet(AVFormatContext *s, AVPacket *pkt)
  870. {
  871. ASFContext *asf = s->priv_data;
  872. for (;;) {
  873. int ret;
  874. /* parse cached packets, if any */
  875. if ((ret = ff_asf_parse_packet(s, s->pb, pkt)) <= 0)
  876. return ret;
  877. if ((ret = ff_asf_get_packet(s, s->pb)) < 0)
  878. assert(asf->packet_size_left < FRAME_HEADER_SIZE || asf->packet_segments < 1);
  879. asf->packet_time_start = 0;
  880. }
  881. return 0;
  882. }
  883. // Added to support seeking after packets have been read
  884. // If information is not reset, read_packet fails due to
  885. // leftover information from previous reads
  886. static void asf_reset_header(AVFormatContext *s)
  887. {
  888. ASFContext *asf = s->priv_data;
  889. ASFStream *asf_st;
  890. int i;
  891. asf->packet_nb_frames = 0;
  892. asf->packet_size_left = 0;
  893. asf->packet_segments = 0;
  894. asf->packet_flags = 0;
  895. asf->packet_property = 0;
  896. asf->packet_timestamp = 0;
  897. asf->packet_segsizetype = 0;
  898. asf->packet_segments = 0;
  899. asf->packet_seq = 0;
  900. asf->packet_replic_size = 0;
  901. asf->packet_key_frame = 0;
  902. asf->packet_padsize = 0;
  903. asf->packet_frag_offset = 0;
  904. asf->packet_frag_size = 0;
  905. asf->packet_frag_timestamp = 0;
  906. asf->packet_multi_size = 0;
  907. asf->packet_obj_size = 0;
  908. asf->packet_time_delta = 0;
  909. asf->packet_time_start = 0;
  910. for(i=0; i<s->nb_streams; i++){
  911. asf_st= s->streams[i]->priv_data;
  912. av_free_packet(&asf_st->pkt);
  913. asf_st->frag_offset=0;
  914. asf_st->seq=0;
  915. }
  916. asf->asf_st= NULL;
  917. }
  918. static int asf_read_close(AVFormatContext *s)
  919. {
  920. int i;
  921. asf_reset_header(s);
  922. for(i=0;i<s->nb_streams;i++) {
  923. AVStream *st = s->streams[i];
  924. av_free(st->codec->palctrl);
  925. }
  926. return 0;
  927. }
  928. static int64_t asf_read_pts(AVFormatContext *s, int stream_index, int64_t *ppos, int64_t pos_limit)
  929. {
  930. AVPacket pkt1, *pkt = &pkt1;
  931. ASFStream *asf_st;
  932. int64_t pts;
  933. int64_t pos= *ppos;
  934. int i;
  935. int64_t start_pos[s->nb_streams];
  936. for(i=0; i<s->nb_streams; i++){
  937. start_pos[i]= pos;
  938. }
  939. if (s->packet_size > 0)
  940. pos= (pos+s->packet_size-1-s->data_offset)/s->packet_size*s->packet_size+ s->data_offset;
  941. *ppos= pos;
  942. url_fseek(s->pb, pos, SEEK_SET);
  943. //printf("asf_read_pts\n");
  944. asf_reset_header(s);
  945. for(;;){
  946. if (av_read_frame(s, pkt) < 0){
  947. av_log(s, AV_LOG_INFO, "asf_read_pts failed\n");
  948. return AV_NOPTS_VALUE;
  949. }
  950. pts= pkt->pts;
  951. av_free_packet(pkt);
  952. if(pkt->flags&PKT_FLAG_KEY){
  953. i= pkt->stream_index;
  954. asf_st= s->streams[i]->priv_data;
  955. // assert((asf_st->packet_pos - s->data_offset) % s->packet_size == 0);
  956. pos= asf_st->packet_pos;
  957. av_add_index_entry(s->streams[i], pos, pts, pkt->size, pos - start_pos[i] + 1, AVINDEX_KEYFRAME);
  958. start_pos[i]= asf_st->packet_pos + 1;
  959. if(pkt->stream_index == stream_index)
  960. break;
  961. }
  962. }
  963. *ppos= pos;
  964. //printf("found keyframe at %"PRId64" stream %d stamp:%"PRId64"\n", *ppos, stream_index, pts);
  965. return pts;
  966. }
  967. static void asf_build_simple_index(AVFormatContext *s, int stream_index)
  968. {
  969. ff_asf_guid g;
  970. ASFContext *asf = s->priv_data;
  971. int64_t current_pos= url_ftell(s->pb);
  972. int i;
  973. url_fseek(s->pb, asf->data_object_offset + asf->data_object_size, SEEK_SET);
  974. get_guid(s->pb, &g);
  975. if (!guidcmp(&g, &index_guid)) {
  976. int64_t itime, last_pos=-1;
  977. int pct, ict;
  978. int64_t av_unused gsize= get_le64(s->pb);
  979. get_guid(s->pb, &g);
  980. itime=get_le64(s->pb);
  981. pct=get_le32(s->pb);
  982. ict=get_le32(s->pb);
  983. av_log(s, AV_LOG_DEBUG, "itime:0x%"PRIx64", pct:%d, ict:%d\n",itime,pct,ict);
  984. for (i=0;i<ict;i++){
  985. int pktnum=get_le32(s->pb);
  986. int pktct =get_le16(s->pb);
  987. int64_t pos = s->data_offset + s->packet_size*(int64_t)pktnum;
  988. int64_t index_pts= av_rescale(itime, i, 10000);
  989. if(pos != last_pos){
  990. av_log(s, AV_LOG_DEBUG, "pktnum:%d, pktct:%d\n", pktnum, pktct);
  991. av_add_index_entry(s->streams[stream_index], pos, index_pts, s->packet_size, 0, AVINDEX_KEYFRAME);
  992. last_pos=pos;
  993. }
  994. }
  995. asf->index_read= 1;
  996. }
  997. url_fseek(s->pb, current_pos, SEEK_SET);
  998. }
  999. static int asf_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags)
  1000. {
  1001. ASFContext *asf = s->priv_data;
  1002. AVStream *st = s->streams[stream_index];
  1003. int64_t pos;
  1004. int index;
  1005. if (s->packet_size <= 0)
  1006. return -1;
  1007. /* Try using the protocol's read_seek if available */
  1008. if(s->pb) {
  1009. int ret = av_url_read_fseek(s->pb, stream_index, pts, flags);
  1010. if(ret >= 0)
  1011. asf_reset_header(s);
  1012. if (ret != AVERROR(ENOSYS))
  1013. return ret;
  1014. }
  1015. if (!asf->index_read)
  1016. asf_build_simple_index(s, stream_index);
  1017. if(!(asf->index_read && st->index_entries)){
  1018. if(av_seek_frame_binary(s, stream_index, pts, flags)<0)
  1019. return -1;
  1020. }else{
  1021. index= av_index_search_timestamp(st, pts, flags);
  1022. if(index<0)
  1023. return -1;
  1024. /* find the position */
  1025. pos = st->index_entries[index].pos;
  1026. // various attempts to find key frame have failed so far
  1027. // asf_reset_header(s);
  1028. // url_fseek(s->pb, pos, SEEK_SET);
  1029. // key_pos = pos;
  1030. // for(i=0;i<16;i++){
  1031. // pos = url_ftell(s->pb);
  1032. // if (av_read_frame(s, &pkt) < 0){
  1033. // av_log(s, AV_LOG_INFO, "seek failed\n");
  1034. // return -1;
  1035. // }
  1036. // asf_st = s->streams[stream_index]->priv_data;
  1037. // pos += st->parser->frame_offset;
  1038. //
  1039. // if (pkt.size > b) {
  1040. // b = pkt.size;
  1041. // key_pos = pos;
  1042. // }
  1043. //
  1044. // av_free_packet(&pkt);
  1045. // }
  1046. /* do the seek */
  1047. av_log(s, AV_LOG_DEBUG, "SEEKTO: %"PRId64"\n", pos);
  1048. url_fseek(s->pb, pos, SEEK_SET);
  1049. }
  1050. asf_reset_header(s);
  1051. return 0;
  1052. }
  1053. AVInputFormat asf_demuxer = {
  1054. "asf",
  1055. NULL_IF_CONFIG_SMALL("ASF format"),
  1056. sizeof(ASFContext),
  1057. asf_probe,
  1058. asf_read_header,
  1059. asf_read_packet,
  1060. asf_read_close,
  1061. asf_read_seek,
  1062. asf_read_pts,
  1063. .metadata_conv = ff_asf_metadata_conv,
  1064. };