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.

870 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 "avi.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. break;
  305. } else if (!memcmp(&g, &comment_header, sizeof(GUID))) {
  306. int len1, len2, len3, len4, len5;
  307. len1 = get_le16(pb);
  308. len2 = get_le16(pb);
  309. len3 = get_le16(pb);
  310. len4 = get_le16(pb);
  311. len5 = get_le16(pb);
  312. get_str16_nolen(pb, len1, s->title, sizeof(s->title));
  313. get_str16_nolen(pb, len2, s->author, sizeof(s->author));
  314. get_str16_nolen(pb, len3, s->copyright, sizeof(s->copyright));
  315. get_str16_nolen(pb, len4, s->comment, sizeof(s->comment));
  316. url_fskip(pb, len5);
  317. } else if (!memcmp(&g, &extended_content_header, sizeof(GUID))) {
  318. int desc_count, i;
  319. desc_count = get_le16(pb);
  320. for(i=0;i<desc_count;i++)
  321. {
  322. int name_len,value_type,value_len,value_num = 0;
  323. char *name, *value;
  324. name_len = get_le16(pb);
  325. name = (char *)av_mallocz(name_len);
  326. get_str16_nolen(pb, name_len, name, name_len);
  327. value_type = get_le16(pb);
  328. value_len = get_le16(pb);
  329. if ((value_type == 0) || (value_type == 1)) // unicode or byte
  330. {
  331. value = (char *)av_mallocz(value_len);
  332. get_str16_nolen(pb, value_len, value, value_len);
  333. if (strcmp(name,"WM/AlbumTitle")==0) { pstrcpy(s->album, sizeof(s->album), value); }
  334. av_free(value);
  335. }
  336. if ((value_type >= 2) && (value_type <= 5)) // boolean or DWORD or QWORD or WORD
  337. {
  338. if (value_type==2) value_num = get_le32(pb);
  339. if (value_type==3) value_num = get_le32(pb);
  340. if (value_type==4) value_num = get_le64(pb);
  341. if (value_type==5) value_num = get_le16(pb);
  342. if (strcmp(name,"WM/Track")==0) s->track = value_num + 1;
  343. if (strcmp(name,"WM/TrackNumber")==0) s->track = value_num;
  344. }
  345. av_free(name);
  346. }
  347. } else if (!memcmp(&g, &ext_stream_header, sizeof(GUID))) {
  348. int ext_len, payload_ext_ct, stream_ct;
  349. uint32_t ext_d;
  350. int64_t pos_ex_st;
  351. pos_ex_st = url_ftell(pb);
  352. get_le64(pb);
  353. get_le64(pb);
  354. get_le32(pb);
  355. get_le32(pb);
  356. get_le32(pb);
  357. get_le32(pb);
  358. get_le32(pb);
  359. get_le32(pb);
  360. get_le32(pb);
  361. get_le32(pb);
  362. get_le16(pb);
  363. get_le16(pb);
  364. get_le64(pb);
  365. stream_ct = get_le16(pb);
  366. payload_ext_ct = get_le16(pb);
  367. for (i=0; i<stream_ct; i++){
  368. get_le16(pb);
  369. ext_len = get_le16(pb);
  370. url_fseek(pb, ext_len, SEEK_CUR);
  371. }
  372. for (i=0; i<payload_ext_ct; i++){
  373. get_guid(pb, &g);
  374. ext_d=get_le16(pb);
  375. ext_len=get_le32(pb);
  376. url_fseek(pb, ext_len, SEEK_CUR);
  377. }
  378. // there could be a optional stream properties object to follow
  379. // if so the next iteration will pick it up
  380. } else if (!memcmp(&g, &head1_guid, sizeof(GUID))) {
  381. int v1, v2;
  382. get_guid(pb, &g);
  383. v1 = get_le32(pb);
  384. v2 = get_le16(pb);
  385. #if 0
  386. } else if (!memcmp(&g, &codec_comment_header, sizeof(GUID))) {
  387. int len, v1, n, num;
  388. char str[256], *q;
  389. char tag[16];
  390. get_guid(pb, &g);
  391. print_guid(&g);
  392. n = get_le32(pb);
  393. for(i=0;i<n;i++) {
  394. num = get_le16(pb); /* stream number */
  395. get_str16(pb, str, sizeof(str));
  396. get_str16(pb, str, sizeof(str));
  397. len = get_le16(pb);
  398. q = tag;
  399. while (len > 0) {
  400. v1 = get_byte(pb);
  401. if ((q - tag) < sizeof(tag) - 1)
  402. *q++ = v1;
  403. len--;
  404. }
  405. *q = '\0';
  406. }
  407. #endif
  408. } else if (url_feof(pb)) {
  409. goto fail;
  410. } else {
  411. url_fseek(pb, gsize - 24, SEEK_CUR);
  412. }
  413. }
  414. get_guid(pb, &g);
  415. get_le64(pb);
  416. get_byte(pb);
  417. get_byte(pb);
  418. if (url_feof(pb))
  419. goto fail;
  420. asf->data_offset = url_ftell(pb);
  421. asf->packet_size_left = 0;
  422. return 0;
  423. fail:
  424. for(i=0;i<s->nb_streams;i++) {
  425. AVStream *st = s->streams[i];
  426. if (st) {
  427. av_free(st->priv_data);
  428. av_free(st->codec->extradata);
  429. }
  430. av_free(st);
  431. }
  432. return -1;
  433. }
  434. #define DO_2BITS(bits, var, defval) \
  435. switch (bits & 3) \
  436. { \
  437. case 3: var = get_le32(pb); rsize += 4; break; \
  438. case 2: var = get_le16(pb); rsize += 2; break; \
  439. case 1: var = get_byte(pb); rsize++; break; \
  440. default: var = defval; break; \
  441. }
  442. static int asf_get_packet(AVFormatContext *s)
  443. {
  444. ASFContext *asf = s->priv_data;
  445. ByteIOContext *pb = &s->pb;
  446. uint32_t packet_length, padsize;
  447. int rsize = 9;
  448. int c;
  449. assert((url_ftell(&s->pb) - s->data_offset) % asf->packet_size == 0);
  450. c = get_byte(pb);
  451. if (c != 0x82) {
  452. if (!url_feof(pb))
  453. av_log(s, AV_LOG_ERROR, "ff asf bad header %x at:%"PRId64"\n", c, url_ftell(pb));
  454. }
  455. if ((c & 0x0f) == 2) { // always true for now
  456. if (get_le16(pb) != 0) {
  457. if (!url_feof(pb))
  458. av_log(s, AV_LOG_ERROR, "ff asf bad non zero\n");
  459. return AVERROR_IO;
  460. }
  461. rsize+=2;
  462. /* }else{
  463. if (!url_feof(pb))
  464. printf("ff asf bad header %x at:%lld\n", c, url_ftell(pb));
  465. return AVERROR_IO;*/
  466. }
  467. asf->packet_flags = get_byte(pb);
  468. asf->packet_property = get_byte(pb);
  469. DO_2BITS(asf->packet_flags >> 5, packet_length, asf->packet_size);
  470. DO_2BITS(asf->packet_flags >> 1, padsize, 0); // sequence ignored
  471. DO_2BITS(asf->packet_flags >> 3, padsize, 0); // padding length
  472. asf->packet_timestamp = get_le32(pb);
  473. get_le16(pb); /* duration */
  474. // rsize has at least 11 bytes which have to be present
  475. if (asf->packet_flags & 0x01) {
  476. asf->packet_segsizetype = get_byte(pb); rsize++;
  477. asf->packet_segments = asf->packet_segsizetype & 0x3f;
  478. } else {
  479. asf->packet_segments = 1;
  480. asf->packet_segsizetype = 0x80;
  481. }
  482. asf->packet_size_left = packet_length - padsize - rsize;
  483. if (packet_length < asf->hdr.min_pktsize)
  484. padsize += asf->hdr.min_pktsize - packet_length;
  485. asf->packet_padsize = padsize;
  486. #ifdef DEBUG
  487. printf("packet: size=%d padsize=%d left=%d\n", asf->packet_size, asf->packet_padsize, asf->packet_size_left);
  488. #endif
  489. return 0;
  490. }
  491. static int asf_read_packet(AVFormatContext *s, AVPacket *pkt)
  492. {
  493. ASFContext *asf = s->priv_data;
  494. ASFStream *asf_st = 0;
  495. ByteIOContext *pb = &s->pb;
  496. //static int pc = 0;
  497. for (;;) {
  498. int rsize = 0;
  499. if (asf->packet_size_left < FRAME_HEADER_SIZE
  500. || asf->packet_segments < 1) {
  501. //asf->packet_size_left <= asf->packet_padsize) {
  502. int ret = asf->packet_size_left + asf->packet_padsize;
  503. //printf("PacketLeftSize:%d Pad:%d Pos:%Ld\n", asf->packet_size_left, asf->packet_padsize, url_ftell(pb));
  504. if((url_ftell(&s->pb) + ret - s->data_offset) % asf->packet_size)
  505. ret += asf->packet_size - ((url_ftell(&s->pb) + ret - s->data_offset) % asf->packet_size);
  506. /* fail safe */
  507. url_fskip(pb, ret);
  508. asf->packet_pos= url_ftell(&s->pb);
  509. ret = asf_get_packet(s);
  510. //printf("READ ASF PACKET %d r:%d c:%d\n", ret, asf->packet_size_left, pc++);
  511. if (ret < 0 || url_feof(pb))
  512. return AVERROR_IO;
  513. asf->packet_time_start = 0;
  514. continue;
  515. }
  516. if (asf->packet_time_start == 0) {
  517. /* read frame header */
  518. int num = get_byte(pb);
  519. asf->packet_segments--;
  520. rsize++;
  521. asf->packet_key_frame = (num & 0x80) >> 7;
  522. asf->stream_index = asf->asfid2avid[num & 0x7f];
  523. // sequence should be ignored!
  524. DO_2BITS(asf->packet_property >> 4, asf->packet_seq, 0);
  525. DO_2BITS(asf->packet_property >> 2, asf->packet_frag_offset, 0);
  526. DO_2BITS(asf->packet_property, asf->packet_replic_size, 0);
  527. //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);
  528. if (asf->packet_replic_size > 1) {
  529. assert(asf->packet_replic_size >= 8);
  530. // it should be always at least 8 bytes - FIXME validate
  531. asf->packet_obj_size = get_le32(pb);
  532. asf->packet_frag_timestamp = get_le32(pb); // timestamp
  533. if (asf->packet_replic_size > 8)
  534. url_fskip(pb, asf->packet_replic_size - 8);
  535. rsize += asf->packet_replic_size; // FIXME - check validity
  536. } else if (asf->packet_replic_size==1){
  537. // multipacket - frag_offset is begining timestamp
  538. asf->packet_time_start = asf->packet_frag_offset;
  539. asf->packet_frag_offset = 0;
  540. asf->packet_frag_timestamp = asf->packet_timestamp;
  541. asf->packet_time_delta = get_byte(pb);
  542. rsize++;
  543. }else{
  544. assert(asf->packet_replic_size==0);
  545. }
  546. if (asf->packet_flags & 0x01) {
  547. DO_2BITS(asf->packet_segsizetype >> 6, asf->packet_frag_size, 0); // 0 is illegal
  548. #undef DO_2BITS
  549. //printf("Fragsize %d\n", asf->packet_frag_size);
  550. } else {
  551. asf->packet_frag_size = asf->packet_size_left - rsize;
  552. //printf("Using rest %d %d %d\n", asf->packet_frag_size, asf->packet_size_left, rsize);
  553. }
  554. if (asf->packet_replic_size == 1) {
  555. asf->packet_multi_size = asf->packet_frag_size;
  556. if (asf->packet_multi_size > asf->packet_size_left) {
  557. asf->packet_segments = 0;
  558. continue;
  559. }
  560. }
  561. asf->packet_size_left -= rsize;
  562. //printf("___objsize____ %d %d rs:%d\n", asf->packet_obj_size, asf->packet_frag_offset, rsize);
  563. if (asf->stream_index < 0
  564. || s->streams[asf->stream_index]->discard >= AVDISCARD_ALL
  565. || (!asf->packet_key_frame && s->streams[asf->stream_index]->discard >= AVDISCARD_NONKEY)
  566. ) {
  567. asf->packet_time_start = 0;
  568. /* unhandled packet (should not happen) */
  569. url_fskip(pb, asf->packet_frag_size);
  570. asf->packet_size_left -= asf->packet_frag_size;
  571. if(asf->stream_index < 0)
  572. av_log(s, AV_LOG_ERROR, "ff asf skip %d %d\n", asf->packet_frag_size, num & 0x7f);
  573. continue;
  574. }
  575. asf->asf_st = s->streams[asf->stream_index]->priv_data;
  576. }
  577. asf_st = asf->asf_st;
  578. if ((asf->packet_frag_offset != asf_st->frag_offset
  579. || (asf->packet_frag_offset
  580. && asf->packet_seq != asf_st->seq)) // seq should be ignored
  581. ) {
  582. /* cannot continue current packet: free it */
  583. // FIXME better check if packet was already allocated
  584. av_log(s, AV_LOG_INFO, "ff asf parser skips: %d - %d o:%d - %d %d %d fl:%d\n",
  585. asf_st->pkt.size,
  586. asf->packet_obj_size,
  587. asf->packet_frag_offset, asf_st->frag_offset,
  588. asf->packet_seq, asf_st->seq, asf->packet_frag_size);
  589. if (asf_st->pkt.size)
  590. av_free_packet(&asf_st->pkt);
  591. asf_st->frag_offset = 0;
  592. if (asf->packet_frag_offset != 0) {
  593. url_fskip(pb, asf->packet_frag_size);
  594. av_log(s, AV_LOG_INFO, "ff asf parser skipping %db\n", asf->packet_frag_size);
  595. asf->packet_size_left -= asf->packet_frag_size;
  596. continue;
  597. }
  598. }
  599. if (asf->packet_replic_size == 1) {
  600. // frag_offset is here used as the begining timestamp
  601. asf->packet_frag_timestamp = asf->packet_time_start;
  602. asf->packet_time_start += asf->packet_time_delta;
  603. asf->packet_obj_size = asf->packet_frag_size = get_byte(pb);
  604. asf->packet_size_left--;
  605. asf->packet_multi_size--;
  606. if (asf->packet_multi_size < asf->packet_obj_size)
  607. {
  608. asf->packet_time_start = 0;
  609. url_fskip(pb, asf->packet_multi_size);
  610. asf->packet_size_left -= asf->packet_multi_size;
  611. continue;
  612. }
  613. asf->packet_multi_size -= asf->packet_obj_size;
  614. //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);
  615. }
  616. if (asf_st->frag_offset == 0) {
  617. /* new packet */
  618. av_new_packet(&asf_st->pkt, asf->packet_obj_size);
  619. asf_st->seq = asf->packet_seq;
  620. asf_st->pkt.pts = asf->packet_frag_timestamp;
  621. asf_st->pkt.stream_index = asf->stream_index;
  622. asf_st->pkt.pos =
  623. asf_st->packet_pos= asf->packet_pos;
  624. //printf("new packet: stream:%d key:%d packet_key:%d audio:%d size:%d\n",
  625. //asf->stream_index, asf->packet_key_frame, asf_st->pkt.flags & PKT_FLAG_KEY,
  626. //s->streams[asf->stream_index]->codec->codec_type == CODEC_TYPE_AUDIO, asf->packet_obj_size);
  627. if (s->streams[asf->stream_index]->codec->codec_type == CODEC_TYPE_AUDIO)
  628. asf->packet_key_frame = 1;
  629. if (asf->packet_key_frame)
  630. asf_st->pkt.flags |= PKT_FLAG_KEY;
  631. }
  632. /* read data */
  633. //printf("READ PACKET s:%d os:%d o:%d,%d l:%d DATA:%p\n",
  634. // asf->packet_size, asf_st->pkt.size, asf->packet_frag_offset,
  635. // asf_st->frag_offset, asf->packet_frag_size, asf_st->pkt.data);
  636. asf->packet_size_left -= asf->packet_frag_size;
  637. if (asf->packet_size_left < 0)
  638. continue;
  639. get_buffer(pb, asf_st->pkt.data + asf->packet_frag_offset,
  640. asf->packet_frag_size);
  641. asf_st->frag_offset += asf->packet_frag_size;
  642. /* test if whole packet is read */
  643. if (asf_st->frag_offset == asf_st->pkt.size) {
  644. /* return packet */
  645. if (asf_st->ds_span > 1) {
  646. /* packet descrambling */
  647. char* newdata = av_malloc(asf_st->pkt.size);
  648. if (newdata) {
  649. int offset = 0;
  650. while (offset < asf_st->pkt.size) {
  651. int off = offset / asf_st->ds_chunk_size;
  652. int row = off / asf_st->ds_span;
  653. int col = off % asf_st->ds_span;
  654. int idx = row + col * asf_st->ds_packet_size / asf_st->ds_chunk_size;
  655. //printf("off:%d row:%d col:%d idx:%d\n", off, row, col, idx);
  656. memcpy(newdata + offset,
  657. asf_st->pkt.data + idx * asf_st->ds_chunk_size,
  658. asf_st->ds_chunk_size);
  659. offset += asf_st->ds_chunk_size;
  660. }
  661. av_free(asf_st->pkt.data);
  662. asf_st->pkt.data = newdata;
  663. }
  664. }
  665. asf_st->frag_offset = 0;
  666. memcpy(pkt, &asf_st->pkt, sizeof(AVPacket));
  667. //printf("packet %d %d\n", asf_st->pkt.size, asf->packet_frag_size);
  668. asf_st->pkt.size = 0;
  669. asf_st->pkt.data = 0;
  670. break; // packet completed
  671. }
  672. }
  673. return 0;
  674. }
  675. static int asf_read_close(AVFormatContext *s)
  676. {
  677. int i;
  678. for(i=0;i<s->nb_streams;i++) {
  679. AVStream *st = s->streams[i];
  680. av_free(st->priv_data);
  681. av_free(st->codec->extradata);
  682. av_free(st->codec->palctrl);
  683. }
  684. return 0;
  685. }
  686. // Added to support seeking after packets have been read
  687. // If information is not reset, read_packet fails due to
  688. // leftover information from previous reads
  689. static void asf_reset_header(AVFormatContext *s)
  690. {
  691. ASFContext *asf = s->priv_data;
  692. ASFStream *asf_st;
  693. int i;
  694. asf->packet_nb_frames = 0;
  695. asf->packet_timestamp_start = -1;
  696. asf->packet_timestamp_end = -1;
  697. asf->packet_size_left = 0;
  698. asf->packet_segments = 0;
  699. asf->packet_flags = 0;
  700. asf->packet_property = 0;
  701. asf->packet_timestamp = 0;
  702. asf->packet_segsizetype = 0;
  703. asf->packet_segments = 0;
  704. asf->packet_seq = 0;
  705. asf->packet_replic_size = 0;
  706. asf->packet_key_frame = 0;
  707. asf->packet_padsize = 0;
  708. asf->packet_frag_offset = 0;
  709. asf->packet_frag_size = 0;
  710. asf->packet_frag_timestamp = 0;
  711. asf->packet_multi_size = 0;
  712. asf->packet_obj_size = 0;
  713. asf->packet_time_delta = 0;
  714. asf->packet_time_start = 0;
  715. for(i=0; i<s->nb_streams; i++){
  716. asf_st= s->streams[i]->priv_data;
  717. av_free_packet(&asf_st->pkt);
  718. asf_st->frag_offset=0;
  719. asf_st->seq=0;
  720. }
  721. asf->asf_st= NULL;
  722. }
  723. static int64_t asf_read_pts(AVFormatContext *s, int stream_index, int64_t *ppos, int64_t pos_limit)
  724. {
  725. ASFContext *asf = s->priv_data;
  726. AVPacket pkt1, *pkt = &pkt1;
  727. ASFStream *asf_st;
  728. int64_t pts;
  729. int64_t pos= *ppos;
  730. int i;
  731. int64_t start_pos[s->nb_streams];
  732. for(i=0; i<s->nb_streams; i++){
  733. start_pos[i]= pos;
  734. }
  735. pos= (pos+asf->packet_size-1-s->data_offset)/asf->packet_size*asf->packet_size+ s->data_offset;
  736. *ppos= pos;
  737. url_fseek(&s->pb, pos, SEEK_SET);
  738. //printf("asf_read_pts\n");
  739. asf_reset_header(s);
  740. for(;;){
  741. if (av_read_frame(s, pkt) < 0){
  742. av_log(s, AV_LOG_INFO, "seek failed\n");
  743. return AV_NOPTS_VALUE;
  744. }
  745. pts= pkt->pts;
  746. av_free_packet(pkt);
  747. if(pkt->flags&PKT_FLAG_KEY){
  748. i= pkt->stream_index;
  749. asf_st= s->streams[i]->priv_data;
  750. assert((asf_st->packet_pos - s->data_offset) % asf->packet_size == 0);
  751. pos= asf_st->packet_pos;
  752. av_add_index_entry(s->streams[i], pos, pkt->size, pts, pos - start_pos[i] + 1, AVINDEX_KEYFRAME);
  753. start_pos[i]= asf_st->packet_pos + 1;
  754. if(pkt->stream_index == stream_index)
  755. break;
  756. }
  757. }
  758. *ppos= pos;
  759. //printf("found keyframe at %Ld stream %d stamp:%Ld\n", *ppos, stream_index, pts);
  760. return pts;
  761. }
  762. static int asf_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags)
  763. {
  764. ASFContext *asf = s->priv_data;
  765. if (asf->packet_size <= 0)
  766. return -1;
  767. if(av_seek_frame_binary(s, stream_index, pts, flags)<0)
  768. return -1;
  769. asf_reset_header(s);
  770. return 0;
  771. }
  772. static AVInputFormat asf_iformat = {
  773. "asf",
  774. "asf format",
  775. sizeof(ASFContext),
  776. asf_probe,
  777. asf_read_header,
  778. asf_read_packet,
  779. asf_read_close,
  780. asf_read_seek,
  781. asf_read_pts,
  782. };
  783. #ifdef CONFIG_MUXERS
  784. extern AVOutputFormat asf_oformat;
  785. extern AVOutputFormat asf_stream_oformat;
  786. #endif //CONFIG_MUXERS
  787. int asf_init(void)
  788. {
  789. av_register_input_format(&asf_iformat);
  790. #ifdef CONFIG_MUXERS
  791. av_register_output_format(&asf_oformat);
  792. av_register_output_format(&asf_stream_oformat);
  793. #endif //CONFIG_MUXERS
  794. return 0;
  795. }