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.

548 lines
18KB

  1. /*
  2. * GXF demuxer.
  3. * Copyright (c) 2006 Reimar Doeffinger
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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 "avformat.h"
  23. #include "internal.h"
  24. #include "gxf.h"
  25. #include "libavcodec/mpeg12data.h"
  26. struct gxf_stream_info {
  27. int64_t first_field;
  28. int64_t last_field;
  29. AVRational frames_per_second;
  30. int32_t fields_per_frame;
  31. };
  32. /**
  33. * @brief parses a packet header, extracting type and length
  34. * @param pb AVIOContext to read header from
  35. * @param type detected packet type is stored here
  36. * @param length detected packet length, excluding header is stored here
  37. * @return 0 if header not found or contains invalid data, 1 otherwise
  38. */
  39. static int parse_packet_header(AVIOContext *pb, GXFPktType *type, int *length) {
  40. if (avio_rb32(pb))
  41. return 0;
  42. if (avio_r8(pb) != 1)
  43. return 0;
  44. *type = avio_r8(pb);
  45. *length = avio_rb32(pb);
  46. if ((*length >> 24) || *length < 16)
  47. return 0;
  48. *length -= 16;
  49. if (avio_rb32(pb))
  50. return 0;
  51. if (avio_r8(pb) != 0xe1)
  52. return 0;
  53. if (avio_r8(pb) != 0xe2)
  54. return 0;
  55. return 1;
  56. }
  57. /**
  58. * @brief check if file starts with a PKT_MAP header
  59. */
  60. static int gxf_probe(AVProbeData *p) {
  61. static const uint8_t startcode[] = {0, 0, 0, 0, 1, 0xbc}; // start with map packet
  62. static const uint8_t endcode[] = {0, 0, 0, 0, 0xe1, 0xe2};
  63. if (!memcmp(p->buf, startcode, sizeof(startcode)) &&
  64. !memcmp(&p->buf[16 - sizeof(endcode)], endcode, sizeof(endcode)))
  65. return AVPROBE_SCORE_MAX;
  66. return 0;
  67. }
  68. /**
  69. * @brief gets the stream index for the track with the specified id, creates new
  70. * stream if not found
  71. * @param id id of stream to find / add
  72. * @param format stream format identifier
  73. */
  74. static int get_sindex(AVFormatContext *s, int id, int format) {
  75. int i;
  76. AVStream *st = NULL;
  77. i = ff_find_stream_index(s, id);
  78. if (i >= 0)
  79. return i;
  80. st = avformat_new_stream(s, NULL);
  81. if (!st)
  82. return AVERROR(ENOMEM);
  83. st->id = id;
  84. switch (format) {
  85. case 3:
  86. case 4:
  87. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  88. st->codec->codec_id = AV_CODEC_ID_MJPEG;
  89. break;
  90. case 13:
  91. case 15:
  92. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  93. st->codec->codec_id = AV_CODEC_ID_DVVIDEO;
  94. break;
  95. case 14:
  96. case 16:
  97. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  98. st->codec->codec_id = AV_CODEC_ID_DVVIDEO;
  99. break;
  100. case 11:
  101. case 12:
  102. case 20:
  103. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  104. st->codec->codec_id = AV_CODEC_ID_MPEG2VIDEO;
  105. st->need_parsing = AVSTREAM_PARSE_HEADERS; //get keyframe flag etc.
  106. break;
  107. case 22:
  108. case 23:
  109. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  110. st->codec->codec_id = AV_CODEC_ID_MPEG1VIDEO;
  111. st->need_parsing = AVSTREAM_PARSE_HEADERS; //get keyframe flag etc.
  112. break;
  113. case 9:
  114. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  115. st->codec->codec_id = AV_CODEC_ID_PCM_S24LE;
  116. st->codec->channels = 1;
  117. st->codec->sample_rate = 48000;
  118. st->codec->bit_rate = 3 * 1 * 48000 * 8;
  119. st->codec->block_align = 3 * 1;
  120. st->codec->bits_per_coded_sample = 24;
  121. break;
  122. case 10:
  123. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  124. st->codec->codec_id = AV_CODEC_ID_PCM_S16LE;
  125. st->codec->channels = 1;
  126. st->codec->sample_rate = 48000;
  127. st->codec->bit_rate = 2 * 1 * 48000 * 8;
  128. st->codec->block_align = 2 * 1;
  129. st->codec->bits_per_coded_sample = 16;
  130. break;
  131. case 17:
  132. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  133. st->codec->codec_id = AV_CODEC_ID_AC3;
  134. st->codec->channels = 2;
  135. st->codec->sample_rate = 48000;
  136. break;
  137. // timecode tracks:
  138. case 7:
  139. case 8:
  140. case 24:
  141. st->codec->codec_type = AVMEDIA_TYPE_DATA;
  142. st->codec->codec_id = AV_CODEC_ID_NONE;
  143. break;
  144. default:
  145. st->codec->codec_type = AVMEDIA_TYPE_UNKNOWN;
  146. st->codec->codec_id = AV_CODEC_ID_NONE;
  147. break;
  148. }
  149. return s->nb_streams - 1;
  150. }
  151. /**
  152. * @brief filters out interesting tags from material information.
  153. * @param len length of tag section, will be adjusted to contain remaining bytes
  154. * @param si struct to store collected information into
  155. */
  156. static void gxf_material_tags(AVIOContext *pb, int *len, struct gxf_stream_info *si) {
  157. si->first_field = AV_NOPTS_VALUE;
  158. si->last_field = AV_NOPTS_VALUE;
  159. while (*len >= 2) {
  160. GXFMatTag tag = avio_r8(pb);
  161. int tlen = avio_r8(pb);
  162. *len -= 2;
  163. if (tlen > *len)
  164. return;
  165. *len -= tlen;
  166. if (tlen == 4) {
  167. uint32_t value = avio_rb32(pb);
  168. if (tag == MAT_FIRST_FIELD)
  169. si->first_field = value;
  170. else if (tag == MAT_LAST_FIELD)
  171. si->last_field = value;
  172. } else
  173. avio_skip(pb, tlen);
  174. }
  175. }
  176. static const AVRational frame_rate_tab[] = {
  177. { 60, 1},
  178. {60000, 1001},
  179. { 50, 1},
  180. { 30, 1},
  181. {30000, 1001},
  182. { 25, 1},
  183. { 24, 1},
  184. {24000, 1001},
  185. { 0, 0},
  186. };
  187. /**
  188. * @brief convert fps tag value to AVRational fps
  189. * @param fps fps value from tag
  190. * @return fps as AVRational, or 0 / 0 if unknown
  191. */
  192. static AVRational fps_tag2avr(int32_t fps) {
  193. if (fps < 1 || fps > 9) fps = 9;
  194. return frame_rate_tab[fps - 1];
  195. }
  196. /**
  197. * @brief convert UMF attributes flags to AVRational fps
  198. * @param flags UMF flags to convert
  199. * @return fps as AVRational, or 0 / 0 if unknown
  200. */
  201. static AVRational fps_umf2avr(uint32_t flags) {
  202. static const AVRational map[] = {{50, 1}, {60000, 1001}, {24, 1},
  203. {25, 1}, {30000, 1001}};
  204. int idx = av_log2((flags & 0x7c0) >> 6);
  205. return map[idx];
  206. }
  207. /**
  208. * @brief filters out interesting tags from track information.
  209. * @param len length of tag section, will be adjusted to contain remaining bytes
  210. * @param si struct to store collected information into
  211. */
  212. static void gxf_track_tags(AVIOContext *pb, int *len, struct gxf_stream_info *si) {
  213. si->frames_per_second = (AVRational){0, 0};
  214. si->fields_per_frame = 0;
  215. while (*len >= 2) {
  216. GXFTrackTag tag = avio_r8(pb);
  217. int tlen = avio_r8(pb);
  218. *len -= 2;
  219. if (tlen > *len)
  220. return;
  221. *len -= tlen;
  222. if (tlen == 4) {
  223. uint32_t value = avio_rb32(pb);
  224. if (tag == TRACK_FPS)
  225. si->frames_per_second = fps_tag2avr(value);
  226. else if (tag == TRACK_FPF && (value == 1 || value == 2))
  227. si->fields_per_frame = value;
  228. } else
  229. avio_skip(pb, tlen);
  230. }
  231. }
  232. /**
  233. * @brief read index from FLT packet into stream 0 av_index
  234. */
  235. static void gxf_read_index(AVFormatContext *s, int pkt_len) {
  236. AVIOContext *pb = s->pb;
  237. AVStream *st = s->streams[0];
  238. uint32_t fields_per_map = avio_rl32(pb);
  239. uint32_t map_cnt = avio_rl32(pb);
  240. int i;
  241. pkt_len -= 8;
  242. if (s->flags & AVFMT_FLAG_IGNIDX) {
  243. avio_skip(pb, pkt_len);
  244. return;
  245. }
  246. if (map_cnt > 1000) {
  247. av_log(s, AV_LOG_ERROR, "too many index entries %u (%x)\n", map_cnt, map_cnt);
  248. map_cnt = 1000;
  249. }
  250. if (pkt_len < 4 * map_cnt) {
  251. av_log(s, AV_LOG_ERROR, "invalid index length\n");
  252. avio_skip(pb, pkt_len);
  253. return;
  254. }
  255. pkt_len -= 4 * map_cnt;
  256. av_add_index_entry(st, 0, 0, 0, 0, 0);
  257. for (i = 0; i < map_cnt; i++)
  258. av_add_index_entry(st, (uint64_t)avio_rl32(pb) * 1024,
  259. i * (uint64_t)fields_per_map + 1, 0, 0, 0);
  260. avio_skip(pb, pkt_len);
  261. }
  262. static int gxf_header(AVFormatContext *s) {
  263. AVIOContext *pb = s->pb;
  264. GXFPktType pkt_type;
  265. int map_len;
  266. int len;
  267. AVRational main_timebase = {0, 0};
  268. struct gxf_stream_info *si = s->priv_data;
  269. int i;
  270. if (!parse_packet_header(pb, &pkt_type, &map_len) || pkt_type != PKT_MAP) {
  271. av_log(s, AV_LOG_ERROR, "map packet not found\n");
  272. return 0;
  273. }
  274. map_len -= 2;
  275. if (avio_r8(pb) != 0x0e0 || avio_r8(pb) != 0xff) {
  276. av_log(s, AV_LOG_ERROR, "unknown version or invalid map preamble\n");
  277. return 0;
  278. }
  279. map_len -= 2;
  280. len = avio_rb16(pb); // length of material data section
  281. if (len > map_len) {
  282. av_log(s, AV_LOG_ERROR, "material data longer than map data\n");
  283. return 0;
  284. }
  285. map_len -= len;
  286. gxf_material_tags(pb, &len, si);
  287. avio_skip(pb, len);
  288. map_len -= 2;
  289. len = avio_rb16(pb); // length of track description
  290. if (len > map_len) {
  291. av_log(s, AV_LOG_ERROR, "track description longer than map data\n");
  292. return 0;
  293. }
  294. map_len -= len;
  295. while (len > 0) {
  296. int track_type, track_id, track_len;
  297. AVStream *st;
  298. int idx;
  299. len -= 4;
  300. track_type = avio_r8(pb);
  301. track_id = avio_r8(pb);
  302. track_len = avio_rb16(pb);
  303. len -= track_len;
  304. gxf_track_tags(pb, &track_len, si);
  305. avio_skip(pb, track_len);
  306. if (!(track_type & 0x80)) {
  307. av_log(s, AV_LOG_ERROR, "invalid track type %x\n", track_type);
  308. continue;
  309. }
  310. track_type &= 0x7f;
  311. if ((track_id & 0xc0) != 0xc0) {
  312. av_log(s, AV_LOG_ERROR, "invalid track id %x\n", track_id);
  313. continue;
  314. }
  315. track_id &= 0x3f;
  316. idx = get_sindex(s, track_id, track_type);
  317. if (idx < 0) continue;
  318. st = s->streams[idx];
  319. if (!main_timebase.num || !main_timebase.den) {
  320. main_timebase.num = si->frames_per_second.den;
  321. main_timebase.den = si->frames_per_second.num * 2;
  322. }
  323. st->start_time = si->first_field;
  324. if (si->first_field != AV_NOPTS_VALUE && si->last_field != AV_NOPTS_VALUE)
  325. st->duration = si->last_field - si->first_field;
  326. }
  327. if (len < 0)
  328. av_log(s, AV_LOG_ERROR, "invalid track description length specified\n");
  329. if (map_len)
  330. avio_skip(pb, map_len);
  331. if (!parse_packet_header(pb, &pkt_type, &len)) {
  332. av_log(s, AV_LOG_ERROR, "sync lost in header\n");
  333. return -1;
  334. }
  335. if (pkt_type == PKT_FLT) {
  336. gxf_read_index(s, len);
  337. if (!parse_packet_header(pb, &pkt_type, &len)) {
  338. av_log(s, AV_LOG_ERROR, "sync lost in header\n");
  339. return -1;
  340. }
  341. }
  342. if (pkt_type == PKT_UMF) {
  343. if (len >= 0x39) {
  344. AVRational fps;
  345. len -= 0x39;
  346. avio_skip(pb, 5); // preamble
  347. avio_skip(pb, 0x30); // payload description
  348. fps = fps_umf2avr(avio_rl32(pb));
  349. if (!main_timebase.num || !main_timebase.den) {
  350. // this may not always be correct, but simply the best we can get
  351. main_timebase.num = fps.den;
  352. main_timebase.den = fps.num * 2;
  353. }
  354. } else
  355. av_log(s, AV_LOG_INFO, "UMF packet too short\n");
  356. } else
  357. av_log(s, AV_LOG_INFO, "UMF packet missing\n");
  358. avio_skip(pb, len);
  359. // set a fallback value, 60000/1001 is specified for audio-only files
  360. // so use that regardless of why we do not know the video frame rate.
  361. if (!main_timebase.num || !main_timebase.den)
  362. main_timebase = (AVRational){1001, 60000};
  363. for (i = 0; i < s->nb_streams; i++) {
  364. AVStream *st = s->streams[i];
  365. avpriv_set_pts_info(st, 32, main_timebase.num, main_timebase.den);
  366. }
  367. return 0;
  368. }
  369. #define READ_ONE() \
  370. { \
  371. if (!max_interval-- || pb->eof_reached) \
  372. goto out; \
  373. tmp = tmp << 8 | avio_r8(pb); \
  374. }
  375. /**
  376. * @brief resync the stream on the next media packet with specified properties
  377. * @param max_interval how many bytes to search for matching packet at most
  378. * @param track track id the media packet must belong to, -1 for any
  379. * @param timestamp minimum timestamp (== field number) the packet must have, -1 for any
  380. * @return timestamp of packet found
  381. */
  382. static int64_t gxf_resync_media(AVFormatContext *s, uint64_t max_interval, int track, int timestamp) {
  383. uint32_t tmp;
  384. uint64_t last_pos;
  385. uint64_t last_found_pos = 0;
  386. int cur_track;
  387. int64_t cur_timestamp = AV_NOPTS_VALUE;
  388. int len;
  389. AVIOContext *pb = s->pb;
  390. GXFPktType type;
  391. tmp = avio_rb32(pb);
  392. start:
  393. while (tmp)
  394. READ_ONE();
  395. READ_ONE();
  396. if (tmp != 1)
  397. goto start;
  398. last_pos = avio_tell(pb);
  399. if (avio_seek(pb, -5, SEEK_CUR) < 0)
  400. goto out;
  401. if (!parse_packet_header(pb, &type, &len) || type != PKT_MEDIA) {
  402. if (avio_seek(pb, last_pos, SEEK_SET) < 0)
  403. goto out;
  404. goto start;
  405. }
  406. avio_r8(pb);
  407. cur_track = avio_r8(pb);
  408. cur_timestamp = avio_rb32(pb);
  409. last_found_pos = avio_tell(pb) - 16 - 6;
  410. if ((track >= 0 && track != cur_track) || (timestamp >= 0 && timestamp > cur_timestamp)) {
  411. if (avio_seek(pb, last_pos, SEEK_SET) >= 0)
  412. goto start;
  413. }
  414. out:
  415. if (last_found_pos)
  416. avio_seek(pb, last_found_pos, SEEK_SET);
  417. return cur_timestamp;
  418. }
  419. static int gxf_packet(AVFormatContext *s, AVPacket *pkt) {
  420. AVIOContext *pb = s->pb;
  421. GXFPktType pkt_type;
  422. int pkt_len;
  423. struct gxf_stream_info *si = s->priv_data;
  424. while (!pb->eof_reached) {
  425. AVStream *st;
  426. int track_type, track_id, ret;
  427. int field_nr, field_info, skip = 0;
  428. int stream_index;
  429. if (!parse_packet_header(pb, &pkt_type, &pkt_len)) {
  430. if (!pb->eof_reached)
  431. av_log(s, AV_LOG_ERROR, "sync lost\n");
  432. return -1;
  433. }
  434. if (pkt_type == PKT_FLT) {
  435. gxf_read_index(s, pkt_len);
  436. continue;
  437. }
  438. if (pkt_type != PKT_MEDIA) {
  439. avio_skip(pb, pkt_len);
  440. continue;
  441. }
  442. if (pkt_len < 16) {
  443. av_log(s, AV_LOG_ERROR, "invalid media packet length\n");
  444. continue;
  445. }
  446. pkt_len -= 16;
  447. track_type = avio_r8(pb);
  448. track_id = avio_r8(pb);
  449. stream_index = get_sindex(s, track_id, track_type);
  450. if (stream_index < 0)
  451. return stream_index;
  452. st = s->streams[stream_index];
  453. field_nr = avio_rb32(pb);
  454. field_info = avio_rb32(pb);
  455. avio_rb32(pb); // "timeline" field number
  456. avio_r8(pb); // flags
  457. avio_r8(pb); // reserved
  458. if (st->codec->codec_id == AV_CODEC_ID_PCM_S24LE ||
  459. st->codec->codec_id == AV_CODEC_ID_PCM_S16LE) {
  460. int first = field_info >> 16;
  461. int last = field_info & 0xffff; // last is exclusive
  462. int bps = av_get_bits_per_sample(st->codec->codec_id)>>3;
  463. if (first <= last && last*bps <= pkt_len) {
  464. avio_skip(pb, first*bps);
  465. skip = pkt_len - last*bps;
  466. pkt_len = (last-first)*bps;
  467. } else
  468. av_log(s, AV_LOG_ERROR, "invalid first and last sample values\n");
  469. }
  470. ret = av_get_packet(pb, pkt, pkt_len);
  471. if (skip)
  472. avio_skip(pb, skip);
  473. pkt->stream_index = stream_index;
  474. pkt->dts = field_nr;
  475. //set duration manually for DV or else lavf misdetects the frame rate
  476. if (st->codec->codec_id == AV_CODEC_ID_DVVIDEO)
  477. pkt->duration = si->fields_per_frame;
  478. return ret;
  479. }
  480. return AVERROR(EIO);
  481. }
  482. static int gxf_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags) {
  483. int res = 0;
  484. uint64_t pos;
  485. uint64_t maxlen = 100 * 1024 * 1024;
  486. AVStream *st = s->streams[0];
  487. int64_t start_time = s->streams[stream_index]->start_time;
  488. int64_t found;
  489. int idx;
  490. if (timestamp < start_time) timestamp = start_time;
  491. idx = av_index_search_timestamp(st, timestamp - start_time,
  492. AVSEEK_FLAG_ANY | AVSEEK_FLAG_BACKWARD);
  493. if (idx < 0)
  494. return -1;
  495. pos = st->index_entries[idx].pos;
  496. if (idx < st->nb_index_entries - 2)
  497. maxlen = st->index_entries[idx + 2].pos - pos;
  498. maxlen = FFMAX(maxlen, 200 * 1024);
  499. res = avio_seek(s->pb, pos, SEEK_SET);
  500. if (res < 0)
  501. return res;
  502. found = gxf_resync_media(s, maxlen, -1, timestamp);
  503. if (FFABS(found - timestamp) > 4)
  504. return -1;
  505. return 0;
  506. }
  507. static int64_t gxf_read_timestamp(AVFormatContext *s, int stream_index,
  508. int64_t *pos, int64_t pos_limit) {
  509. AVIOContext *pb = s->pb;
  510. int64_t res;
  511. if (avio_seek(pb, *pos, SEEK_SET) < 0)
  512. return AV_NOPTS_VALUE;
  513. res = gxf_resync_media(s, pos_limit - *pos, -1, -1);
  514. *pos = avio_tell(pb);
  515. return res;
  516. }
  517. AVInputFormat ff_gxf_demuxer = {
  518. .name = "gxf",
  519. .long_name = NULL_IF_CONFIG_SMALL("GXF (General eXchange Format)"),
  520. .priv_data_size = sizeof(struct gxf_stream_info),
  521. .read_probe = gxf_probe,
  522. .read_header = gxf_header,
  523. .read_packet = gxf_packet,
  524. .read_seek = gxf_seek,
  525. .read_timestamp = gxf_read_timestamp,
  526. };