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.

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