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.

863 lines
31KB

  1. /*
  2. * ASF compatible decoder.
  3. * Copyright (c) 2000, 2001 Fabrice Bellard.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  18. */
  19. #include "avformat.h"
  20. #include "riff.h"
  21. #include "mpegaudio.h"
  22. #include "asf.h"
  23. #undef NDEBUG
  24. #include <assert.h>
  25. #define FRAME_HEADER_SIZE 17
  26. // Fix Me! FRAME_HEADER_SIZE may be different.
  27. static const GUID index_guid = {
  28. 0x33000890, 0xe5b1, 0x11cf, { 0x89, 0xf4, 0x00, 0xa0, 0xc9, 0x03, 0x49, 0xcb },
  29. };
  30. /**********************************/
  31. /* decoding */
  32. //#define DEBUG
  33. #ifdef DEBUG
  34. #define PRINT_IF_GUID(g,cmp) \
  35. if (!memcmp(g, &cmp, sizeof(GUID))) \
  36. printf("(GUID: %s) ", #cmp)
  37. static void print_guid(const GUID *g)
  38. {
  39. int i;
  40. PRINT_IF_GUID(g, asf_header);
  41. else PRINT_IF_GUID(g, file_header);
  42. else PRINT_IF_GUID(g, stream_header);
  43. else PRINT_IF_GUID(g, audio_stream);
  44. else PRINT_IF_GUID(g, audio_conceal_none);
  45. else PRINT_IF_GUID(g, video_stream);
  46. else PRINT_IF_GUID(g, video_conceal_none);
  47. else PRINT_IF_GUID(g, command_stream);
  48. else PRINT_IF_GUID(g, comment_header);
  49. else PRINT_IF_GUID(g, codec_comment_header);
  50. else PRINT_IF_GUID(g, codec_comment1_header);
  51. else PRINT_IF_GUID(g, data_header);
  52. else PRINT_IF_GUID(g, index_guid);
  53. else PRINT_IF_GUID(g, head1_guid);
  54. else PRINT_IF_GUID(g, head2_guid);
  55. else PRINT_IF_GUID(g, my_guid);
  56. else PRINT_IF_GUID(g, ext_stream_header);
  57. else PRINT_IF_GUID(g, extended_content_header);
  58. else PRINT_IF_GUID(g, ext_stream_embed_stream_header);
  59. else PRINT_IF_GUID(g, ext_stream_audio_stream);
  60. else
  61. printf("(GUID: unknown) ");
  62. printf("0x%08x, 0x%04x, 0x%04x, {", g->v1, g->v2, g->v3);
  63. for(i=0;i<8;i++)
  64. printf(" 0x%02x,", g->v4[i]);
  65. printf("}\n");
  66. }
  67. #undef PRINT_IF_GUID
  68. #endif
  69. static void get_guid(ByteIOContext *s, GUID *g)
  70. {
  71. int i;
  72. g->v1 = get_le32(s);
  73. g->v2 = get_le16(s);
  74. g->v3 = get_le16(s);
  75. for(i=0;i<8;i++)
  76. g->v4[i] = get_byte(s);
  77. }
  78. #if 0
  79. static void get_str16(ByteIOContext *pb, char *buf, int buf_size)
  80. {
  81. int len, c;
  82. char *q;
  83. len = get_le16(pb);
  84. q = buf;
  85. while (len > 0) {
  86. c = get_le16(pb);
  87. if ((q - buf) < buf_size - 1)
  88. *q++ = c;
  89. len--;
  90. }
  91. *q = '\0';
  92. }
  93. #endif
  94. static void get_str16_nolen(ByteIOContext *pb, int len, char *buf, int buf_size)
  95. {
  96. int c;
  97. char *q;
  98. q = buf;
  99. while (len > 0) {
  100. c = get_le16(pb);
  101. if ((q - buf) < buf_size - 1)
  102. *q++ = c;
  103. len-=2;
  104. }
  105. *q = '\0';
  106. }
  107. static int asf_probe(AVProbeData *pd)
  108. {
  109. GUID g;
  110. const unsigned char *p;
  111. int i;
  112. /* check file header */
  113. if (pd->buf_size <= 32)
  114. return 0;
  115. p = pd->buf;
  116. g.v1 = p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24);
  117. p += 4;
  118. g.v2 = p[0] | (p[1] << 8);
  119. p += 2;
  120. g.v3 = p[0] | (p[1] << 8);
  121. p += 2;
  122. for(i=0;i<8;i++)
  123. g.v4[i] = *p++;
  124. if (!memcmp(&g, &asf_header, sizeof(GUID)))
  125. return AVPROBE_SCORE_MAX;
  126. else
  127. return 0;
  128. }
  129. static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
  130. {
  131. ASFContext *asf = s->priv_data;
  132. GUID g;
  133. ByteIOContext *pb = &s->pb;
  134. AVStream *st;
  135. ASFStream *asf_st;
  136. int size, i;
  137. int64_t gsize;
  138. get_guid(pb, &g);
  139. if (memcmp(&g, &asf_header, sizeof(GUID)))
  140. goto fail;
  141. get_le64(pb);
  142. get_le32(pb);
  143. get_byte(pb);
  144. get_byte(pb);
  145. memset(&asf->asfid2avid, -1, sizeof(asf->asfid2avid));
  146. for(;;) {
  147. get_guid(pb, &g);
  148. gsize = get_le64(pb);
  149. #ifdef DEBUG
  150. printf("%08Lx: ", url_ftell(pb) - 24);
  151. print_guid(&g);
  152. printf(" size=0x%Lx\n", gsize);
  153. #endif
  154. if (gsize < 24)
  155. goto fail;
  156. if (!memcmp(&g, &file_header, sizeof(GUID))) {
  157. get_guid(pb, &asf->hdr.guid);
  158. asf->hdr.file_size = get_le64(pb);
  159. asf->hdr.create_time = get_le64(pb);
  160. asf->hdr.packets_count = get_le64(pb);
  161. asf->hdr.send_time = get_le64(pb);
  162. asf->hdr.play_time = get_le64(pb);
  163. asf->hdr.preroll = get_le32(pb);
  164. asf->hdr.ignore = get_le32(pb);
  165. asf->hdr.flags = get_le32(pb);
  166. asf->hdr.min_pktsize = get_le32(pb);
  167. asf->hdr.max_pktsize = get_le32(pb);
  168. asf->hdr.max_bitrate = get_le32(pb);
  169. asf->packet_size = asf->hdr.max_pktsize;
  170. asf->nb_packets = asf->hdr.packets_count;
  171. } else if (!memcmp(&g, &stream_header, sizeof(GUID))) {
  172. int type, total_size, type_specific_size, sizeX;
  173. unsigned int tag1;
  174. int64_t pos1, pos2;
  175. int test_for_ext_stream_audio;
  176. pos1 = url_ftell(pb);
  177. st = av_new_stream(s, 0);
  178. if (!st)
  179. goto fail;
  180. av_set_pts_info(st, 32, 1, 1000); /* 32 bit pts in ms */
  181. asf_st = av_mallocz(sizeof(ASFStream));
  182. if (!asf_st)
  183. goto fail;
  184. st->priv_data = asf_st;
  185. st->start_time = asf->hdr.preroll;
  186. st->duration = asf->hdr.send_time /
  187. (10000000 / 1000) - st->start_time;
  188. get_guid(pb, &g);
  189. test_for_ext_stream_audio = 0;
  190. if (!memcmp(&g, &audio_stream, sizeof(GUID))) {
  191. type = CODEC_TYPE_AUDIO;
  192. } else if (!memcmp(&g, &video_stream, sizeof(GUID))) {
  193. type = CODEC_TYPE_VIDEO;
  194. } else if (!memcmp(&g, &command_stream, sizeof(GUID))) {
  195. type = CODEC_TYPE_UNKNOWN;
  196. } else if (!memcmp(&g, &ext_stream_embed_stream_header, sizeof(GUID))) {
  197. test_for_ext_stream_audio = 1;
  198. type = CODEC_TYPE_UNKNOWN;
  199. } else {
  200. goto fail;
  201. }
  202. get_guid(pb, &g);
  203. total_size = get_le64(pb);
  204. type_specific_size = get_le32(pb);
  205. get_le32(pb);
  206. st->id = get_le16(pb) & 0x7f; /* stream id */
  207. // mapping of asf ID to AV stream ID;
  208. asf->asfid2avid[st->id] = s->nb_streams - 1;
  209. get_le32(pb);
  210. if (test_for_ext_stream_audio) {
  211. get_guid(pb, &g);
  212. if (!memcmp(&g, &ext_stream_audio_stream, sizeof(GUID))) {
  213. type = CODEC_TYPE_AUDIO;
  214. get_guid(pb, &g);
  215. get_le32(pb);
  216. get_le32(pb);
  217. get_le32(pb);
  218. get_guid(pb, &g);
  219. get_le32(pb);
  220. }
  221. }
  222. st->codec->codec_type = type;
  223. if (type == CODEC_TYPE_AUDIO) {
  224. get_wav_header(pb, st->codec, type_specific_size);
  225. st->need_parsing = 1;
  226. /* We have to init the frame size at some point .... */
  227. pos2 = url_ftell(pb);
  228. if (gsize > (pos2 + 8 - pos1 + 24)) {
  229. asf_st->ds_span = get_byte(pb);
  230. asf_st->ds_packet_size = get_le16(pb);
  231. asf_st->ds_chunk_size = get_le16(pb);
  232. asf_st->ds_data_size = get_le16(pb);
  233. asf_st->ds_silence_data = get_byte(pb);
  234. }
  235. //printf("Descrambling: ps:%d cs:%d ds:%d s:%d sd:%d\n",
  236. // asf_st->ds_packet_size, asf_st->ds_chunk_size,
  237. // asf_st->ds_data_size, asf_st->ds_span, asf_st->ds_silence_data);
  238. if (asf_st->ds_span > 1) {
  239. if (!asf_st->ds_chunk_size
  240. || (asf_st->ds_packet_size/asf_st->ds_chunk_size <= 1))
  241. asf_st->ds_span = 0; // disable descrambling
  242. }
  243. switch (st->codec->codec_id) {
  244. case CODEC_ID_MP3:
  245. st->codec->frame_size = MPA_FRAME_SIZE;
  246. break;
  247. case CODEC_ID_PCM_S16LE:
  248. case CODEC_ID_PCM_S16BE:
  249. case CODEC_ID_PCM_U16LE:
  250. case CODEC_ID_PCM_U16BE:
  251. case CODEC_ID_PCM_S8:
  252. case CODEC_ID_PCM_U8:
  253. case CODEC_ID_PCM_ALAW:
  254. case CODEC_ID_PCM_MULAW:
  255. st->codec->frame_size = 1;
  256. break;
  257. default:
  258. /* This is probably wrong, but it prevents a crash later */
  259. st->codec->frame_size = 1;
  260. break;
  261. }
  262. } else if (type == CODEC_TYPE_VIDEO) {
  263. get_le32(pb);
  264. get_le32(pb);
  265. get_byte(pb);
  266. size = get_le16(pb); /* size */
  267. sizeX= get_le32(pb); /* size */
  268. st->codec->width = get_le32(pb);
  269. st->codec->height = get_le32(pb);
  270. /* not available for asf */
  271. get_le16(pb); /* panes */
  272. st->codec->bits_per_sample = get_le16(pb); /* depth */
  273. tag1 = get_le32(pb);
  274. url_fskip(pb, 20);
  275. // av_log(NULL, AV_LOG_DEBUG, "size:%d tsize:%d sizeX:%d\n", size, total_size, sizeX);
  276. size= sizeX;
  277. if (size > 40) {
  278. st->codec->extradata_size = size - 40;
  279. st->codec->extradata = av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
  280. get_buffer(pb, st->codec->extradata, st->codec->extradata_size);
  281. }
  282. /* Extract palette from extradata if bpp <= 8 */
  283. /* This code assumes that extradata contains only palette */
  284. /* This is true for all paletted codecs implemented in ffmpeg */
  285. if (st->codec->extradata_size && (st->codec->bits_per_sample <= 8)) {
  286. st->codec->palctrl = av_mallocz(sizeof(AVPaletteControl));
  287. #ifdef WORDS_BIGENDIAN
  288. for (i = 0; i < FFMIN(st->codec->extradata_size, AVPALETTE_SIZE)/4; i++)
  289. st->codec->palctrl->palette[i] = bswap_32(((uint32_t*)st->codec->extradata)[i]);
  290. #else
  291. memcpy(st->codec->palctrl->palette, st->codec->extradata,
  292. FFMIN(st->codec->extradata_size, AVPALETTE_SIZE));
  293. #endif
  294. st->codec->palctrl->palette_changed = 1;
  295. }
  296. st->codec->codec_tag = tag1;
  297. st->codec->codec_id = codec_get_id(codec_bmp_tags, tag1);
  298. if(tag1 == MKTAG('D', 'V', 'R', ' '))
  299. st->need_parsing = 1;
  300. }
  301. pos2 = url_ftell(pb);
  302. url_fskip(pb, gsize - (pos2 - pos1 + 24));
  303. } else if (!memcmp(&g, &data_header, sizeof(GUID))) {
  304. asf->data_object_offset = url_ftell(pb);
  305. if (gsize != (uint64_t)-1 && gsize >= 24) {
  306. asf->data_object_size = gsize - 24;
  307. } else {
  308. asf->data_object_size = (uint64_t)-1;
  309. }
  310. break;
  311. } else if (!memcmp(&g, &comment_header, sizeof(GUID))) {
  312. int len1, len2, len3, len4, len5;
  313. len1 = get_le16(pb);
  314. len2 = get_le16(pb);
  315. len3 = get_le16(pb);
  316. len4 = get_le16(pb);
  317. len5 = get_le16(pb);
  318. get_str16_nolen(pb, len1, s->title, sizeof(s->title));
  319. get_str16_nolen(pb, len2, s->author, sizeof(s->author));
  320. get_str16_nolen(pb, len3, s->copyright, sizeof(s->copyright));
  321. get_str16_nolen(pb, len4, s->comment, sizeof(s->comment));
  322. url_fskip(pb, len5);
  323. } else if (!memcmp(&g, &extended_content_header, sizeof(GUID))) {
  324. int desc_count, i;
  325. desc_count = get_le16(pb);
  326. for(i=0;i<desc_count;i++)
  327. {
  328. int name_len,value_type,value_len,value_num = 0;
  329. char *name, *value;
  330. name_len = get_le16(pb);
  331. name = (char *)av_mallocz(name_len);
  332. get_str16_nolen(pb, name_len, name, name_len);
  333. value_type = get_le16(pb);
  334. value_len = get_le16(pb);
  335. if ((value_type == 0) || (value_type == 1)) // unicode or byte
  336. {
  337. value = (char *)av_mallocz(value_len);
  338. get_str16_nolen(pb, value_len, value, value_len);
  339. if (strcmp(name,"WM/AlbumTitle")==0) { pstrcpy(s->album, sizeof(s->album), value); }
  340. av_free(value);
  341. }
  342. if ((value_type >= 2) && (value_type <= 5)) // boolean or DWORD or QWORD or WORD
  343. {
  344. if (value_type==2) value_num = get_le32(pb);
  345. if (value_type==3) value_num = get_le32(pb);
  346. if (value_type==4) value_num = get_le64(pb);
  347. if (value_type==5) value_num = get_le16(pb);
  348. if (strcmp(name,"WM/Track")==0) s->track = value_num + 1;
  349. if (strcmp(name,"WM/TrackNumber")==0) s->track = value_num;
  350. }
  351. av_free(name);
  352. }
  353. } else if (!memcmp(&g, &ext_stream_header, sizeof(GUID))) {
  354. int ext_len, payload_ext_ct, stream_ct;
  355. uint32_t ext_d;
  356. int64_t pos_ex_st;
  357. pos_ex_st = url_ftell(pb);
  358. get_le64(pb);
  359. get_le64(pb);
  360. get_le32(pb);
  361. get_le32(pb);
  362. get_le32(pb);
  363. get_le32(pb);
  364. get_le32(pb);
  365. get_le32(pb);
  366. get_le32(pb);
  367. get_le32(pb);
  368. get_le16(pb);
  369. get_le16(pb);
  370. get_le64(pb);
  371. stream_ct = get_le16(pb);
  372. payload_ext_ct = get_le16(pb);
  373. for (i=0; i<stream_ct; i++){
  374. get_le16(pb);
  375. ext_len = get_le16(pb);
  376. url_fseek(pb, ext_len, SEEK_CUR);
  377. }
  378. for (i=0; i<payload_ext_ct; i++){
  379. get_guid(pb, &g);
  380. ext_d=get_le16(pb);
  381. ext_len=get_le32(pb);
  382. url_fseek(pb, ext_len, SEEK_CUR);
  383. }
  384. // there could be a optional stream properties object to follow
  385. // if so the next iteration will pick it up
  386. } else if (!memcmp(&g, &head1_guid, sizeof(GUID))) {
  387. int v1, v2;
  388. get_guid(pb, &g);
  389. v1 = get_le32(pb);
  390. v2 = get_le16(pb);
  391. #if 0
  392. } else if (!memcmp(&g, &codec_comment_header, sizeof(GUID))) {
  393. int len, v1, n, num;
  394. char str[256], *q;
  395. char tag[16];
  396. get_guid(pb, &g);
  397. print_guid(&g);
  398. n = get_le32(pb);
  399. for(i=0;i<n;i++) {
  400. num = get_le16(pb); /* stream number */
  401. get_str16(pb, str, sizeof(str));
  402. get_str16(pb, str, sizeof(str));
  403. len = get_le16(pb);
  404. q = tag;
  405. while (len > 0) {
  406. v1 = get_byte(pb);
  407. if ((q - tag) < sizeof(tag) - 1)
  408. *q++ = v1;
  409. len--;
  410. }
  411. *q = '\0';
  412. }
  413. #endif
  414. } else if (url_feof(pb)) {
  415. goto fail;
  416. } else {
  417. url_fseek(pb, gsize - 24, SEEK_CUR);
  418. }
  419. }
  420. get_guid(pb, &g);
  421. get_le64(pb);
  422. get_byte(pb);
  423. get_byte(pb);
  424. if (url_feof(pb))
  425. goto fail;
  426. asf->data_offset = url_ftell(pb);
  427. asf->packet_size_left = 0;
  428. return 0;
  429. fail:
  430. for(i=0;i<s->nb_streams;i++) {
  431. AVStream *st = s->streams[i];
  432. if (st) {
  433. av_free(st->priv_data);
  434. av_free(st->codec->extradata);
  435. }
  436. av_free(st);
  437. }
  438. return -1;
  439. }
  440. #define DO_2BITS(bits, var, defval) \
  441. switch (bits & 3) \
  442. { \
  443. case 3: var = get_le32(pb); rsize += 4; break; \
  444. case 2: var = get_le16(pb); rsize += 2; break; \
  445. case 1: var = get_byte(pb); rsize++; break; \
  446. default: var = defval; break; \
  447. }
  448. static int asf_get_packet(AVFormatContext *s)
  449. {
  450. ASFContext *asf = s->priv_data;
  451. ByteIOContext *pb = &s->pb;
  452. uint32_t packet_length, padsize;
  453. int rsize = 9;
  454. int c;
  455. assert((url_ftell(&s->pb) - s->data_offset) % asf->packet_size == 0);
  456. c = get_byte(pb);
  457. if (c != 0x82) {
  458. if (!url_feof(pb))
  459. av_log(s, AV_LOG_ERROR, "ff asf bad header %x at:%"PRId64"\n", c, url_ftell(pb));
  460. }
  461. if ((c & 0x0f) == 2) { // always true for now
  462. if (get_le16(pb) != 0) {
  463. if (!url_feof(pb))
  464. av_log(s, AV_LOG_ERROR, "ff asf bad non zero\n");
  465. return AVERROR_IO;
  466. }
  467. rsize+=2;
  468. /* }else{
  469. if (!url_feof(pb))
  470. printf("ff asf bad header %x at:%lld\n", c, url_ftell(pb));
  471. return AVERROR_IO;*/
  472. }
  473. asf->packet_flags = get_byte(pb);
  474. asf->packet_property = get_byte(pb);
  475. DO_2BITS(asf->packet_flags >> 5, packet_length, asf->packet_size);
  476. DO_2BITS(asf->packet_flags >> 1, padsize, 0); // sequence ignored
  477. DO_2BITS(asf->packet_flags >> 3, padsize, 0); // padding length
  478. asf->packet_timestamp = get_le32(pb);
  479. get_le16(pb); /* duration */
  480. // rsize has at least 11 bytes which have to be present
  481. if (asf->packet_flags & 0x01) {
  482. asf->packet_segsizetype = get_byte(pb); rsize++;
  483. asf->packet_segments = asf->packet_segsizetype & 0x3f;
  484. } else {
  485. asf->packet_segments = 1;
  486. asf->packet_segsizetype = 0x80;
  487. }
  488. asf->packet_size_left = packet_length - padsize - rsize;
  489. if (packet_length < asf->hdr.min_pktsize)
  490. padsize += asf->hdr.min_pktsize - packet_length;
  491. asf->packet_padsize = padsize;
  492. #ifdef DEBUG
  493. printf("packet: size=%d padsize=%d left=%d\n", asf->packet_size, asf->packet_padsize, asf->packet_size_left);
  494. #endif
  495. return 0;
  496. }
  497. static int asf_read_packet(AVFormatContext *s, AVPacket *pkt)
  498. {
  499. ASFContext *asf = s->priv_data;
  500. ASFStream *asf_st = 0;
  501. ByteIOContext *pb = &s->pb;
  502. //static int pc = 0;
  503. for (;;) {
  504. int rsize = 0;
  505. if (asf->packet_size_left < FRAME_HEADER_SIZE
  506. || asf->packet_segments < 1) {
  507. //asf->packet_size_left <= asf->packet_padsize) {
  508. int ret = asf->packet_size_left + asf->packet_padsize;
  509. //printf("PacketLeftSize:%d Pad:%d Pos:%Ld\n", asf->packet_size_left, asf->packet_padsize, url_ftell(pb));
  510. if((url_ftell(&s->pb) + ret - s->data_offset) % asf->packet_size)
  511. ret += asf->packet_size - ((url_ftell(&s->pb) + ret - s->data_offset) % asf->packet_size);
  512. /* fail safe */
  513. url_fskip(pb, ret);
  514. asf->packet_pos= url_ftell(&s->pb);
  515. if (asf->data_object_size != (uint64_t)-1 &&
  516. (asf->packet_pos - asf->data_object_offset >= asf->data_object_size))
  517. return AVERROR_IO; /* Do not exceed the size of the data object */
  518. ret = asf_get_packet(s);
  519. //printf("READ ASF PACKET %d r:%d c:%d\n", ret, asf->packet_size_left, pc++);
  520. if (ret < 0 || url_feof(pb))
  521. return AVERROR_IO;
  522. asf->packet_time_start = 0;
  523. continue;
  524. }
  525. if (asf->packet_time_start == 0) {
  526. /* read frame header */
  527. int num = get_byte(pb);
  528. asf->packet_segments--;
  529. rsize++;
  530. asf->packet_key_frame = (num & 0x80) >> 7;
  531. asf->stream_index = asf->asfid2avid[num & 0x7f];
  532. // sequence should be ignored!
  533. DO_2BITS(asf->packet_property >> 4, asf->packet_seq, 0);
  534. DO_2BITS(asf->packet_property >> 2, asf->packet_frag_offset, 0);
  535. DO_2BITS(asf->packet_property, asf->packet_replic_size, 0);
  536. //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);
  537. if (asf->packet_replic_size > 1) {
  538. assert(asf->packet_replic_size >= 8);
  539. // it should be always at least 8 bytes - FIXME validate
  540. asf->packet_obj_size = get_le32(pb);
  541. asf->packet_frag_timestamp = get_le32(pb); // timestamp
  542. if (asf->packet_replic_size > 8)
  543. url_fskip(pb, asf->packet_replic_size - 8);
  544. rsize += asf->packet_replic_size; // FIXME - check validity
  545. } else if (asf->packet_replic_size==1){
  546. // multipacket - frag_offset is begining timestamp
  547. asf->packet_time_start = asf->packet_frag_offset;
  548. asf->packet_frag_offset = 0;
  549. asf->packet_frag_timestamp = asf->packet_timestamp;
  550. asf->packet_time_delta = get_byte(pb);
  551. rsize++;
  552. }else{
  553. assert(asf->packet_replic_size==0);
  554. }
  555. if (asf->packet_flags & 0x01) {
  556. DO_2BITS(asf->packet_segsizetype >> 6, asf->packet_frag_size, 0); // 0 is illegal
  557. #undef DO_2BITS
  558. //printf("Fragsize %d\n", asf->packet_frag_size);
  559. } else {
  560. asf->packet_frag_size = asf->packet_size_left - rsize;
  561. //printf("Using rest %d %d %d\n", asf->packet_frag_size, asf->packet_size_left, rsize);
  562. }
  563. if (asf->packet_replic_size == 1) {
  564. asf->packet_multi_size = asf->packet_frag_size;
  565. if (asf->packet_multi_size > asf->packet_size_left) {
  566. asf->packet_segments = 0;
  567. continue;
  568. }
  569. }
  570. asf->packet_size_left -= rsize;
  571. //printf("___objsize____ %d %d rs:%d\n", asf->packet_obj_size, asf->packet_frag_offset, rsize);
  572. if (asf->stream_index < 0
  573. || s->streams[asf->stream_index]->discard >= AVDISCARD_ALL
  574. || (!asf->packet_key_frame && s->streams[asf->stream_index]->discard >= AVDISCARD_NONKEY)
  575. ) {
  576. asf->packet_time_start = 0;
  577. /* unhandled packet (should not happen) */
  578. url_fskip(pb, asf->packet_frag_size);
  579. asf->packet_size_left -= asf->packet_frag_size;
  580. if(asf->stream_index < 0)
  581. av_log(s, AV_LOG_ERROR, "ff asf skip %d %d\n", asf->packet_frag_size, num & 0x7f);
  582. continue;
  583. }
  584. asf->asf_st = s->streams[asf->stream_index]->priv_data;
  585. }
  586. asf_st = asf->asf_st;
  587. if ((asf->packet_frag_offset != asf_st->frag_offset
  588. || (asf->packet_frag_offset
  589. && asf->packet_seq != asf_st->seq)) // seq should be ignored
  590. ) {
  591. /* cannot continue current packet: free it */
  592. // FIXME better check if packet was already allocated
  593. av_log(s, AV_LOG_INFO, "ff asf parser skips: %d - %d o:%d - %d %d %d fl:%d\n",
  594. asf_st->pkt.size,
  595. asf->packet_obj_size,
  596. asf->packet_frag_offset, asf_st->frag_offset,
  597. asf->packet_seq, asf_st->seq, asf->packet_frag_size);
  598. if (asf_st->pkt.size)
  599. av_free_packet(&asf_st->pkt);
  600. asf_st->frag_offset = 0;
  601. if (asf->packet_frag_offset != 0) {
  602. url_fskip(pb, asf->packet_frag_size);
  603. av_log(s, AV_LOG_INFO, "ff asf parser skipping %db\n", asf->packet_frag_size);
  604. asf->packet_size_left -= asf->packet_frag_size;
  605. continue;
  606. }
  607. }
  608. if (asf->packet_replic_size == 1) {
  609. // frag_offset is here used as the begining timestamp
  610. asf->packet_frag_timestamp = asf->packet_time_start;
  611. asf->packet_time_start += asf->packet_time_delta;
  612. asf->packet_obj_size = asf->packet_frag_size = get_byte(pb);
  613. asf->packet_size_left--;
  614. asf->packet_multi_size--;
  615. if (asf->packet_multi_size < asf->packet_obj_size)
  616. {
  617. asf->packet_time_start = 0;
  618. url_fskip(pb, asf->packet_multi_size);
  619. asf->packet_size_left -= asf->packet_multi_size;
  620. continue;
  621. }
  622. asf->packet_multi_size -= asf->packet_obj_size;
  623. //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);
  624. }
  625. if (asf_st->frag_offset == 0) {
  626. /* new packet */
  627. av_new_packet(&asf_st->pkt, asf->packet_obj_size);
  628. asf_st->seq = asf->packet_seq;
  629. asf_st->pkt.pts = asf->packet_frag_timestamp;
  630. asf_st->pkt.stream_index = asf->stream_index;
  631. asf_st->pkt.pos =
  632. asf_st->packet_pos= asf->packet_pos;
  633. //printf("new packet: stream:%d key:%d packet_key:%d audio:%d size:%d\n",
  634. //asf->stream_index, asf->packet_key_frame, asf_st->pkt.flags & PKT_FLAG_KEY,
  635. //s->streams[asf->stream_index]->codec->codec_type == CODEC_TYPE_AUDIO, asf->packet_obj_size);
  636. if (s->streams[asf->stream_index]->codec->codec_type == CODEC_TYPE_AUDIO)
  637. asf->packet_key_frame = 1;
  638. if (asf->packet_key_frame)
  639. asf_st->pkt.flags |= PKT_FLAG_KEY;
  640. }
  641. /* read data */
  642. //printf("READ PACKET s:%d os:%d o:%d,%d l:%d DATA:%p\n",
  643. // asf->packet_size, asf_st->pkt.size, asf->packet_frag_offset,
  644. // asf_st->frag_offset, asf->packet_frag_size, asf_st->pkt.data);
  645. asf->packet_size_left -= asf->packet_frag_size;
  646. if (asf->packet_size_left < 0)
  647. continue;
  648. get_buffer(pb, asf_st->pkt.data + asf->packet_frag_offset,
  649. asf->packet_frag_size);
  650. asf_st->frag_offset += asf->packet_frag_size;
  651. /* test if whole packet is read */
  652. if (asf_st->frag_offset == asf_st->pkt.size) {
  653. /* return packet */
  654. if (asf_st->ds_span > 1) {
  655. /* packet descrambling */
  656. char* newdata = av_malloc(asf_st->pkt.size);
  657. if (newdata) {
  658. int offset = 0;
  659. while (offset < asf_st->pkt.size) {
  660. int off = offset / asf_st->ds_chunk_size;
  661. int row = off / asf_st->ds_span;
  662. int col = off % asf_st->ds_span;
  663. int idx = row + col * asf_st->ds_packet_size / asf_st->ds_chunk_size;
  664. //printf("off:%d row:%d col:%d idx:%d\n", off, row, col, idx);
  665. memcpy(newdata + offset,
  666. asf_st->pkt.data + idx * asf_st->ds_chunk_size,
  667. asf_st->ds_chunk_size);
  668. offset += asf_st->ds_chunk_size;
  669. }
  670. av_free(asf_st->pkt.data);
  671. asf_st->pkt.data = newdata;
  672. }
  673. }
  674. asf_st->frag_offset = 0;
  675. memcpy(pkt, &asf_st->pkt, sizeof(AVPacket));
  676. //printf("packet %d %d\n", asf_st->pkt.size, asf->packet_frag_size);
  677. asf_st->pkt.size = 0;
  678. asf_st->pkt.data = 0;
  679. break; // packet completed
  680. }
  681. }
  682. return 0;
  683. }
  684. static int asf_read_close(AVFormatContext *s)
  685. {
  686. int i;
  687. for(i=0;i<s->nb_streams;i++) {
  688. AVStream *st = s->streams[i];
  689. av_free(st->priv_data);
  690. av_free(st->codec->palctrl);
  691. }
  692. return 0;
  693. }
  694. // Added to support seeking after packets have been read
  695. // If information is not reset, read_packet fails due to
  696. // leftover information from previous reads
  697. static void asf_reset_header(AVFormatContext *s)
  698. {
  699. ASFContext *asf = s->priv_data;
  700. ASFStream *asf_st;
  701. int i;
  702. asf->packet_nb_frames = 0;
  703. asf->packet_timestamp_start = -1;
  704. asf->packet_timestamp_end = -1;
  705. asf->packet_size_left = 0;
  706. asf->packet_segments = 0;
  707. asf->packet_flags = 0;
  708. asf->packet_property = 0;
  709. asf->packet_timestamp = 0;
  710. asf->packet_segsizetype = 0;
  711. asf->packet_segments = 0;
  712. asf->packet_seq = 0;
  713. asf->packet_replic_size = 0;
  714. asf->packet_key_frame = 0;
  715. asf->packet_padsize = 0;
  716. asf->packet_frag_offset = 0;
  717. asf->packet_frag_size = 0;
  718. asf->packet_frag_timestamp = 0;
  719. asf->packet_multi_size = 0;
  720. asf->packet_obj_size = 0;
  721. asf->packet_time_delta = 0;
  722. asf->packet_time_start = 0;
  723. for(i=0; i<s->nb_streams; i++){
  724. asf_st= s->streams[i]->priv_data;
  725. av_free_packet(&asf_st->pkt);
  726. asf_st->frag_offset=0;
  727. asf_st->seq=0;
  728. }
  729. asf->asf_st= NULL;
  730. }
  731. static int64_t asf_read_pts(AVFormatContext *s, int stream_index, int64_t *ppos, int64_t pos_limit)
  732. {
  733. ASFContext *asf = s->priv_data;
  734. AVPacket pkt1, *pkt = &pkt1;
  735. ASFStream *asf_st;
  736. int64_t pts;
  737. int64_t pos= *ppos;
  738. int i;
  739. int64_t start_pos[s->nb_streams];
  740. for(i=0; i<s->nb_streams; i++){
  741. start_pos[i]= pos;
  742. }
  743. pos= (pos+asf->packet_size-1-s->data_offset)/asf->packet_size*asf->packet_size+ s->data_offset;
  744. *ppos= pos;
  745. url_fseek(&s->pb, pos, SEEK_SET);
  746. //printf("asf_read_pts\n");
  747. asf_reset_header(s);
  748. for(;;){
  749. if (av_read_frame(s, pkt) < 0){
  750. av_log(s, AV_LOG_INFO, "seek failed\n");
  751. return AV_NOPTS_VALUE;
  752. }
  753. pts= pkt->pts;
  754. av_free_packet(pkt);
  755. if(pkt->flags&PKT_FLAG_KEY){
  756. i= pkt->stream_index;
  757. asf_st= s->streams[i]->priv_data;
  758. assert((asf_st->packet_pos - s->data_offset) % asf->packet_size == 0);
  759. pos= asf_st->packet_pos;
  760. av_add_index_entry(s->streams[i], pos, pkt->size, pts, pos - start_pos[i] + 1, AVINDEX_KEYFRAME);
  761. start_pos[i]= asf_st->packet_pos + 1;
  762. if(pkt->stream_index == stream_index)
  763. break;
  764. }
  765. }
  766. *ppos= pos;
  767. //printf("found keyframe at %Ld stream %d stamp:%Ld\n", *ppos, stream_index, pts);
  768. return pts;
  769. }
  770. static int asf_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags)
  771. {
  772. ASFContext *asf = s->priv_data;
  773. if (asf->packet_size <= 0)
  774. return -1;
  775. if(av_seek_frame_binary(s, stream_index, pts, flags)<0)
  776. return -1;
  777. asf_reset_header(s);
  778. return 0;
  779. }
  780. AVInputFormat asf_demuxer = {
  781. "asf",
  782. "asf format",
  783. sizeof(ASFContext),
  784. asf_probe,
  785. asf_read_header,
  786. asf_read_packet,
  787. asf_read_close,
  788. asf_read_seek,
  789. asf_read_pts,
  790. };