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.

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