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.

1121 lines
41KB

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