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.

2005 lines
74KB

  1. /*
  2. * MXF demuxer.
  3. * Copyright (c) 2006 SmartJog S.A., Baptiste Coudurier <baptiste dot coudurier at smartjog dot com>
  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. /*
  22. * References
  23. * SMPTE 336M KLV Data Encoding Protocol Using Key-Length-Value
  24. * SMPTE 377M MXF File Format Specifications
  25. * SMPTE 378M Operational Pattern 1a
  26. * SMPTE 379M MXF Generic Container
  27. * SMPTE 381M Mapping MPEG Streams into the MXF Generic Container
  28. * SMPTE 382M Mapping AES3 and Broadcast Wave Audio into the MXF Generic Container
  29. * SMPTE 383M Mapping DV-DIF Data to the MXF Generic Container
  30. *
  31. * Principle
  32. * Search for Track numbers which will identify essence element KLV packets.
  33. * Search for SourcePackage which define tracks which contains Track numbers.
  34. * Material Package contains tracks with reference to SourcePackage tracks.
  35. * Search for Descriptors (Picture, Sound) which contains codec info and parameters.
  36. * Assign Descriptors to correct Tracks.
  37. *
  38. * Metadata reading functions read Local Tags, get InstanceUID(0x3C0A) then add MetaDataSet to MXFContext.
  39. * Metadata parsing resolves Strong References to objects.
  40. *
  41. * Simple demuxer, only OP1A supported and some files might not work at all.
  42. * Only tracks with associated descriptors will be decoded. "Highly Desirable" SMPTE 377M D.1
  43. */
  44. //#define DEBUG
  45. #include "libavutil/aes.h"
  46. #include "libavutil/mathematics.h"
  47. #include "libavcodec/bytestream.h"
  48. #include "avformat.h"
  49. #include "internal.h"
  50. #include "mxf.h"
  51. typedef enum {
  52. Header,
  53. BodyPartition,
  54. Footer
  55. } MXFPartitionType;
  56. typedef enum {
  57. OP1a,
  58. OP1b,
  59. OP1c,
  60. OP2a,
  61. OP2b,
  62. OP2c,
  63. OP3a,
  64. OP3b,
  65. OP3c,
  66. OPAtom,
  67. OPSonyOpt, /* FATE sample, violates the spec in places */
  68. } MXFOP;
  69. typedef struct {
  70. int closed;
  71. int complete;
  72. MXFPartitionType type;
  73. uint64_t previous_partition;
  74. int index_sid;
  75. int body_sid;
  76. int64_t this_partition;
  77. int64_t essence_offset; ///< absolute offset of essence
  78. int64_t essence_length;
  79. int32_t kag_size;
  80. int64_t header_byte_count;
  81. int64_t index_byte_count;
  82. int pack_length;
  83. } MXFPartition;
  84. typedef struct {
  85. UID uid;
  86. enum MXFMetadataSetType type;
  87. UID source_container_ul;
  88. } MXFCryptoContext;
  89. typedef struct {
  90. UID uid;
  91. enum MXFMetadataSetType type;
  92. UID source_package_uid;
  93. UID data_definition_ul;
  94. int64_t duration;
  95. int64_t start_position;
  96. int source_track_id;
  97. } MXFStructuralComponent;
  98. typedef struct {
  99. UID uid;
  100. enum MXFMetadataSetType type;
  101. UID data_definition_ul;
  102. UID *structural_components_refs;
  103. int structural_components_count;
  104. int64_t duration;
  105. } MXFSequence;
  106. typedef struct {
  107. UID uid;
  108. enum MXFMetadataSetType type;
  109. MXFSequence *sequence; /* mandatory, and only one */
  110. UID sequence_ref;
  111. int track_id;
  112. uint8_t track_number[4];
  113. AVRational edit_rate;
  114. } MXFTrack;
  115. typedef struct {
  116. UID uid;
  117. enum MXFMetadataSetType type;
  118. UID essence_container_ul;
  119. UID essence_codec_ul;
  120. AVRational sample_rate;
  121. AVRational aspect_ratio;
  122. int width;
  123. int height;
  124. int channels;
  125. int bits_per_sample;
  126. UID *sub_descriptors_refs;
  127. int sub_descriptors_count;
  128. int linked_track_id;
  129. uint8_t *extradata;
  130. int extradata_size;
  131. enum PixelFormat pix_fmt;
  132. } MXFDescriptor;
  133. typedef struct {
  134. UID uid;
  135. enum MXFMetadataSetType type;
  136. int edit_unit_byte_count;
  137. int index_sid;
  138. int body_sid;
  139. AVRational index_edit_rate;
  140. uint64_t index_start_position;
  141. uint64_t index_duration;
  142. int8_t *temporal_offset_entries;
  143. int *flag_entries;
  144. uint64_t *stream_offset_entries;
  145. int nb_index_entries;
  146. } MXFIndexTableSegment;
  147. typedef struct {
  148. UID uid;
  149. enum MXFMetadataSetType type;
  150. UID package_uid;
  151. UID *tracks_refs;
  152. int tracks_count;
  153. MXFDescriptor *descriptor; /* only one */
  154. UID descriptor_ref;
  155. } MXFPackage;
  156. typedef struct {
  157. UID uid;
  158. enum MXFMetadataSetType type;
  159. } MXFMetadataSet;
  160. /* decoded index table */
  161. typedef struct {
  162. int index_sid;
  163. int body_sid;
  164. int nb_ptses; /* number of PTSes or total duration of index */
  165. int64_t first_dts; /* DTS = EditUnit + first_dts */
  166. int64_t *ptses; /* maps EditUnit -> PTS */
  167. int nb_segments;
  168. MXFIndexTableSegment **segments; /* sorted by IndexStartPosition */
  169. AVIndexEntry *fake_index; /* used for calling ff_index_search_timestamp() */
  170. } MXFIndexTable;
  171. typedef struct {
  172. MXFPartition *partitions;
  173. unsigned partitions_count;
  174. MXFOP op;
  175. UID *packages_refs;
  176. int packages_count;
  177. MXFMetadataSet **metadata_sets;
  178. int metadata_sets_count;
  179. AVFormatContext *fc;
  180. struct AVAES *aesc;
  181. uint8_t *local_tags;
  182. int local_tags_count;
  183. uint64_t footer_partition;
  184. KLVPacket current_klv_data;
  185. int current_klv_index;
  186. int run_in;
  187. MXFPartition *current_partition;
  188. int parsing_backward;
  189. int64_t last_forward_tell;
  190. int last_forward_partition;
  191. int current_edit_unit;
  192. int nb_index_tables;
  193. MXFIndexTable *index_tables;
  194. } MXFContext;
  195. enum MXFWrappingScheme {
  196. Frame,
  197. Clip,
  198. };
  199. /* NOTE: klv_offset is not set (-1) for local keys */
  200. typedef int MXFMetadataReadFunc(void *arg, AVIOContext *pb, int tag, int size, UID uid, int64_t klv_offset);
  201. typedef struct {
  202. const UID key;
  203. MXFMetadataReadFunc *read;
  204. int ctx_size;
  205. enum MXFMetadataSetType type;
  206. } MXFMetadataReadTableEntry;
  207. /* partial keys to match */
  208. static const uint8_t mxf_header_partition_pack_key[] = { 0x06,0x0e,0x2b,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x02 };
  209. static const uint8_t mxf_essence_element_key[] = { 0x06,0x0e,0x2b,0x34,0x01,0x02,0x01,0x01,0x0d,0x01,0x03,0x01 };
  210. static const uint8_t mxf_avid_essence_element_key[] = { 0x06,0x0e,0x2b,0x34,0x01,0x02,0x01,0x01,0x0e,0x04,0x03,0x01 };
  211. static const uint8_t mxf_system_item_key[] = { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0D,0x01,0x03,0x01,0x04 };
  212. static const uint8_t mxf_klv_key[] = { 0x06,0x0e,0x2b,0x34 };
  213. /* complete keys to match */
  214. static const uint8_t mxf_crypto_source_container_ul[] = { 0x06,0x0e,0x2b,0x34,0x01,0x01,0x01,0x09,0x06,0x01,0x01,0x02,0x02,0x00,0x00,0x00 };
  215. static const uint8_t mxf_encrypted_triplet_key[] = { 0x06,0x0e,0x2b,0x34,0x02,0x04,0x01,0x07,0x0d,0x01,0x03,0x01,0x02,0x7e,0x01,0x00 };
  216. static const uint8_t mxf_encrypted_essence_container[] = { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x07,0x0d,0x01,0x03,0x01,0x02,0x0b,0x01,0x00 };
  217. static const uint8_t mxf_sony_mpeg4_extradata[] = { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x01,0x0e,0x06,0x06,0x02,0x02,0x01,0x00,0x00 };
  218. #define IS_KLV_KEY(x, y) (!memcmp(x, y, sizeof(y)))
  219. static int64_t klv_decode_ber_length(AVIOContext *pb)
  220. {
  221. uint64_t size = avio_r8(pb);
  222. if (size & 0x80) { /* long form */
  223. int bytes_num = size & 0x7f;
  224. /* SMPTE 379M 5.3.4 guarantee that bytes_num must not exceed 8 bytes */
  225. if (bytes_num > 8)
  226. return AVERROR_INVALIDDATA;
  227. size = 0;
  228. while (bytes_num--)
  229. size = size << 8 | avio_r8(pb);
  230. }
  231. return size;
  232. }
  233. static int mxf_read_sync(AVIOContext *pb, const uint8_t *key, unsigned size)
  234. {
  235. int i, b;
  236. for (i = 0; i < size && !pb->eof_reached; i++) {
  237. b = avio_r8(pb);
  238. if (b == key[0])
  239. i = 0;
  240. else if (b != key[i])
  241. i = -1;
  242. }
  243. return i == size;
  244. }
  245. static int klv_read_packet(KLVPacket *klv, AVIOContext *pb)
  246. {
  247. if (!mxf_read_sync(pb, mxf_klv_key, 4))
  248. return AVERROR_INVALIDDATA;
  249. klv->offset = avio_tell(pb) - 4;
  250. memcpy(klv->key, mxf_klv_key, 4);
  251. avio_read(pb, klv->key + 4, 12);
  252. klv->length = klv_decode_ber_length(pb);
  253. return klv->length == -1 ? -1 : 0;
  254. }
  255. static int mxf_get_stream_index(AVFormatContext *s, KLVPacket *klv)
  256. {
  257. int i;
  258. for (i = 0; i < s->nb_streams; i++) {
  259. MXFTrack *track = s->streams[i]->priv_data;
  260. /* SMPTE 379M 7.3 */
  261. if (!memcmp(klv->key + sizeof(mxf_essence_element_key), track->track_number, sizeof(track->track_number)))
  262. return i;
  263. }
  264. /* return 0 if only one stream, for OP Atom files with 0 as track number */
  265. return s->nb_streams == 1 ? 0 : -1;
  266. }
  267. /* XXX: use AVBitStreamFilter */
  268. static int mxf_get_d10_aes3_packet(AVIOContext *pb, AVStream *st, AVPacket *pkt, int64_t length)
  269. {
  270. const uint8_t *buf_ptr, *end_ptr;
  271. uint8_t *data_ptr;
  272. int i;
  273. if (length > 61444) /* worst case PAL 1920 samples 8 channels */
  274. return AVERROR_INVALIDDATA;
  275. length = av_get_packet(pb, pkt, length);
  276. if (length < 0)
  277. return length;
  278. data_ptr = pkt->data;
  279. end_ptr = pkt->data + length;
  280. buf_ptr = pkt->data + 4; /* skip SMPTE 331M header */
  281. for (; buf_ptr + st->codec->channels*4 < end_ptr; ) {
  282. for (i = 0; i < st->codec->channels; i++) {
  283. uint32_t sample = bytestream_get_le32(&buf_ptr);
  284. if (st->codec->bits_per_coded_sample == 24)
  285. bytestream_put_le24(&data_ptr, (sample >> 4) & 0xffffff);
  286. else
  287. bytestream_put_le16(&data_ptr, (sample >> 12) & 0xffff);
  288. }
  289. buf_ptr += 32 - st->codec->channels*4; // always 8 channels stored SMPTE 331M
  290. }
  291. av_shrink_packet(pkt, data_ptr - pkt->data);
  292. return 0;
  293. }
  294. static int mxf_decrypt_triplet(AVFormatContext *s, AVPacket *pkt, KLVPacket *klv)
  295. {
  296. static const uint8_t checkv[16] = {0x43, 0x48, 0x55, 0x4b, 0x43, 0x48, 0x55, 0x4b, 0x43, 0x48, 0x55, 0x4b, 0x43, 0x48, 0x55, 0x4b};
  297. MXFContext *mxf = s->priv_data;
  298. AVIOContext *pb = s->pb;
  299. int64_t end = avio_tell(pb) + klv->length;
  300. int64_t size;
  301. uint64_t orig_size;
  302. uint64_t plaintext_size;
  303. uint8_t ivec[16];
  304. uint8_t tmpbuf[16];
  305. int index;
  306. if (!mxf->aesc && s->key && s->keylen == 16) {
  307. mxf->aesc = av_malloc(av_aes_size);
  308. if (!mxf->aesc)
  309. return AVERROR(ENOMEM);
  310. av_aes_init(mxf->aesc, s->key, 128, 1);
  311. }
  312. // crypto context
  313. avio_skip(pb, klv_decode_ber_length(pb));
  314. // plaintext offset
  315. klv_decode_ber_length(pb);
  316. plaintext_size = avio_rb64(pb);
  317. // source klv key
  318. klv_decode_ber_length(pb);
  319. avio_read(pb, klv->key, 16);
  320. if (!IS_KLV_KEY(klv, mxf_essence_element_key))
  321. return AVERROR_INVALIDDATA;
  322. index = mxf_get_stream_index(s, klv);
  323. if (index < 0)
  324. return AVERROR_INVALIDDATA;
  325. // source size
  326. klv_decode_ber_length(pb);
  327. orig_size = avio_rb64(pb);
  328. if (orig_size < plaintext_size)
  329. return AVERROR_INVALIDDATA;
  330. // enc. code
  331. size = klv_decode_ber_length(pb);
  332. if (size < 32 || size - 32 < orig_size)
  333. return AVERROR_INVALIDDATA;
  334. avio_read(pb, ivec, 16);
  335. avio_read(pb, tmpbuf, 16);
  336. if (mxf->aesc)
  337. av_aes_crypt(mxf->aesc, tmpbuf, tmpbuf, 1, ivec, 1);
  338. if (memcmp(tmpbuf, checkv, 16))
  339. av_log(s, AV_LOG_ERROR, "probably incorrect decryption key\n");
  340. size -= 32;
  341. size = av_get_packet(pb, pkt, size);
  342. if (size < 0)
  343. return size;
  344. else if (size < plaintext_size)
  345. return AVERROR_INVALIDDATA;
  346. size -= plaintext_size;
  347. if (mxf->aesc)
  348. av_aes_crypt(mxf->aesc, &pkt->data[plaintext_size],
  349. &pkt->data[plaintext_size], size >> 4, ivec, 1);
  350. av_shrink_packet(pkt, orig_size);
  351. pkt->stream_index = index;
  352. avio_skip(pb, end - avio_tell(pb));
  353. return 0;
  354. }
  355. static int mxf_read_primer_pack(void *arg, AVIOContext *pb, int tag, int size, UID uid, int64_t klv_offset)
  356. {
  357. MXFContext *mxf = arg;
  358. int item_num = avio_rb32(pb);
  359. int item_len = avio_rb32(pb);
  360. if (item_len != 18) {
  361. av_log_ask_for_sample(pb, "unsupported primer pack item length %d\n",
  362. item_len);
  363. return AVERROR_PATCHWELCOME;
  364. }
  365. if (item_num > UINT_MAX / item_len)
  366. return AVERROR_INVALIDDATA;
  367. mxf->local_tags_count = item_num;
  368. mxf->local_tags = av_malloc(item_num*item_len);
  369. if (!mxf->local_tags)
  370. return AVERROR(ENOMEM);
  371. avio_read(pb, mxf->local_tags, item_num*item_len);
  372. return 0;
  373. }
  374. static int mxf_read_partition_pack(void *arg, AVIOContext *pb, int tag, int size, UID uid, int64_t klv_offset)
  375. {
  376. MXFContext *mxf = arg;
  377. MXFPartition *partition, *tmp_part;
  378. UID op;
  379. uint64_t footer_partition;
  380. if (mxf->partitions_count+1 >= UINT_MAX / sizeof(*mxf->partitions))
  381. return AVERROR(ENOMEM);
  382. tmp_part = av_realloc(mxf->partitions, (mxf->partitions_count + 1) * sizeof(*mxf->partitions));
  383. if (!tmp_part)
  384. return AVERROR(ENOMEM);
  385. mxf->partitions = tmp_part;
  386. if (mxf->parsing_backward) {
  387. /* insert the new partition pack in the middle
  388. * this makes the entries in mxf->partitions sorted by offset */
  389. memmove(&mxf->partitions[mxf->last_forward_partition+1],
  390. &mxf->partitions[mxf->last_forward_partition],
  391. (mxf->partitions_count - mxf->last_forward_partition)*sizeof(*mxf->partitions));
  392. partition = mxf->current_partition = &mxf->partitions[mxf->last_forward_partition];
  393. } else {
  394. mxf->last_forward_partition++;
  395. partition = mxf->current_partition = &mxf->partitions[mxf->partitions_count];
  396. }
  397. memset(partition, 0, sizeof(*partition));
  398. mxf->partitions_count++;
  399. partition->pack_length = avio_tell(pb) - klv_offset + size;
  400. switch(uid[13]) {
  401. case 2:
  402. partition->type = Header;
  403. break;
  404. case 3:
  405. partition->type = BodyPartition;
  406. break;
  407. case 4:
  408. partition->type = Footer;
  409. break;
  410. default:
  411. av_log(mxf->fc, AV_LOG_ERROR, "unknown partition type %i\n", uid[13]);
  412. return AVERROR_INVALIDDATA;
  413. }
  414. /* consider both footers to be closed (there is only Footer and CompleteFooter) */
  415. partition->closed = partition->type == Footer || !(uid[14] & 1);
  416. partition->complete = uid[14] > 2;
  417. avio_skip(pb, 4);
  418. partition->kag_size = avio_rb32(pb);
  419. partition->this_partition = avio_rb64(pb);
  420. partition->previous_partition = avio_rb64(pb);
  421. footer_partition = avio_rb64(pb);
  422. partition->header_byte_count = avio_rb64(pb);
  423. partition->index_byte_count = avio_rb64(pb);
  424. partition->index_sid = avio_rb32(pb);
  425. avio_skip(pb, 8);
  426. partition->body_sid = avio_rb32(pb);
  427. avio_read(pb, op, sizeof(UID));
  428. /* some files don'thave FooterPartition set in every partition */
  429. if (footer_partition) {
  430. if (mxf->footer_partition && mxf->footer_partition != footer_partition) {
  431. av_log(mxf->fc, AV_LOG_ERROR,
  432. "inconsistent FooterPartition value: %"PRIu64" != %"PRIu64"\n",
  433. mxf->footer_partition, footer_partition);
  434. } else {
  435. mxf->footer_partition = footer_partition;
  436. }
  437. }
  438. av_dlog(mxf->fc,
  439. "PartitionPack: ThisPartition = 0x%"PRIX64
  440. ", PreviousPartition = 0x%"PRIX64", "
  441. "FooterPartition = 0x%"PRIX64", IndexSID = %i, BodySID = %i\n",
  442. partition->this_partition,
  443. partition->previous_partition, footer_partition,
  444. partition->index_sid, partition->body_sid);
  445. if (op[12] == 1 && op[13] == 1) mxf->op = OP1a;
  446. else if (op[12] == 1 && op[13] == 2) mxf->op = OP1b;
  447. else if (op[12] == 1 && op[13] == 3) mxf->op = OP1c;
  448. else if (op[12] == 2 && op[13] == 1) mxf->op = OP2a;
  449. else if (op[12] == 2 && op[13] == 2) mxf->op = OP2b;
  450. else if (op[12] == 2 && op[13] == 3) mxf->op = OP2c;
  451. else if (op[12] == 3 && op[13] == 1) mxf->op = OP3a;
  452. else if (op[12] == 3 && op[13] == 2) mxf->op = OP3b;
  453. else if (op[12] == 3 && op[13] == 3) mxf->op = OP3c;
  454. else if (op[12] == 0x10) mxf->op = OPAtom;
  455. else if (op[12] == 64&& op[13] == 1) mxf->op = OPSonyOpt;
  456. else {
  457. av_log(mxf->fc, AV_LOG_ERROR, "unknown operational pattern: %02xh %02xh - guessing OP1a\n", op[12], op[13]);
  458. mxf->op = OP1a;
  459. }
  460. if (partition->kag_size <= 0 || partition->kag_size > (1 << 20)) {
  461. av_log(mxf->fc, AV_LOG_WARNING, "invalid KAGSize %i - guessing ", partition->kag_size);
  462. if (mxf->op == OPSonyOpt)
  463. partition->kag_size = 512;
  464. else
  465. partition->kag_size = 1;
  466. av_log(mxf->fc, AV_LOG_WARNING, "%i\n", partition->kag_size);
  467. }
  468. return 0;
  469. }
  470. static int mxf_add_metadata_set(MXFContext *mxf, void *metadata_set)
  471. {
  472. MXFMetadataSet **tmp;
  473. if (mxf->metadata_sets_count+1 >= UINT_MAX / sizeof(*mxf->metadata_sets))
  474. return AVERROR(ENOMEM);
  475. tmp = av_realloc(mxf->metadata_sets, (mxf->metadata_sets_count + 1) * sizeof(*mxf->metadata_sets));
  476. if (!tmp)
  477. return AVERROR(ENOMEM);
  478. mxf->metadata_sets = tmp;
  479. mxf->metadata_sets[mxf->metadata_sets_count] = metadata_set;
  480. mxf->metadata_sets_count++;
  481. return 0;
  482. }
  483. static int mxf_read_cryptographic_context(void *arg, AVIOContext *pb, int tag, int size, UID uid, int64_t klv_offset)
  484. {
  485. MXFCryptoContext *cryptocontext = arg;
  486. if (size != 16)
  487. return AVERROR_INVALIDDATA;
  488. if (IS_KLV_KEY(uid, mxf_crypto_source_container_ul))
  489. avio_read(pb, cryptocontext->source_container_ul, 16);
  490. return 0;
  491. }
  492. static int mxf_read_content_storage(void *arg, AVIOContext *pb, int tag, int size, UID uid, int64_t klv_offset)
  493. {
  494. MXFContext *mxf = arg;
  495. switch (tag) {
  496. case 0x1901:
  497. mxf->packages_count = avio_rb32(pb);
  498. if (mxf->packages_count >= UINT_MAX / sizeof(UID))
  499. return AVERROR_INVALIDDATA;
  500. mxf->packages_refs = av_malloc(mxf->packages_count * sizeof(UID));
  501. if (!mxf->packages_refs)
  502. return AVERROR(ENOMEM);
  503. avio_skip(pb, 4); /* useless size of objects, always 16 according to specs */
  504. avio_read(pb, (uint8_t *)mxf->packages_refs, mxf->packages_count * sizeof(UID));
  505. break;
  506. }
  507. return 0;
  508. }
  509. static int mxf_read_source_clip(void *arg, AVIOContext *pb, int tag, int size, UID uid, int64_t klv_offset)
  510. {
  511. MXFStructuralComponent *source_clip = arg;
  512. switch(tag) {
  513. case 0x0202:
  514. source_clip->duration = avio_rb64(pb);
  515. break;
  516. case 0x1201:
  517. source_clip->start_position = avio_rb64(pb);
  518. break;
  519. case 0x1101:
  520. /* UMID, only get last 16 bytes */
  521. avio_skip(pb, 16);
  522. avio_read(pb, source_clip->source_package_uid, 16);
  523. break;
  524. case 0x1102:
  525. source_clip->source_track_id = avio_rb32(pb);
  526. break;
  527. }
  528. return 0;
  529. }
  530. static int mxf_read_material_package(void *arg, AVIOContext *pb, int tag, int size, UID uid, int64_t klv_offset)
  531. {
  532. MXFPackage *package = arg;
  533. switch(tag) {
  534. case 0x4403:
  535. package->tracks_count = avio_rb32(pb);
  536. if (package->tracks_count >= UINT_MAX / sizeof(UID))
  537. return AVERROR_INVALIDDATA;
  538. package->tracks_refs = av_malloc(package->tracks_count * sizeof(UID));
  539. if (!package->tracks_refs)
  540. return AVERROR(ENOMEM);
  541. avio_skip(pb, 4); /* useless size of objects, always 16 according to specs */
  542. avio_read(pb, (uint8_t *)package->tracks_refs, package->tracks_count * sizeof(UID));
  543. break;
  544. }
  545. return 0;
  546. }
  547. static int mxf_read_track(void *arg, AVIOContext *pb, int tag, int size, UID uid, int64_t klv_offset)
  548. {
  549. MXFTrack *track = arg;
  550. switch(tag) {
  551. case 0x4801:
  552. track->track_id = avio_rb32(pb);
  553. break;
  554. case 0x4804:
  555. avio_read(pb, track->track_number, 4);
  556. break;
  557. case 0x4B01:
  558. track->edit_rate.den = avio_rb32(pb);
  559. track->edit_rate.num = avio_rb32(pb);
  560. break;
  561. case 0x4803:
  562. avio_read(pb, track->sequence_ref, 16);
  563. break;
  564. }
  565. return 0;
  566. }
  567. static int mxf_read_sequence(void *arg, AVIOContext *pb, int tag, int size, UID uid, int64_t klv_offset)
  568. {
  569. MXFSequence *sequence = arg;
  570. switch(tag) {
  571. case 0x0202:
  572. sequence->duration = avio_rb64(pb);
  573. break;
  574. case 0x0201:
  575. avio_read(pb, sequence->data_definition_ul, 16);
  576. break;
  577. case 0x1001:
  578. sequence->structural_components_count = avio_rb32(pb);
  579. if (sequence->structural_components_count >= UINT_MAX / sizeof(UID))
  580. return AVERROR_INVALIDDATA;
  581. sequence->structural_components_refs = av_malloc(sequence->structural_components_count * sizeof(UID));
  582. if (!sequence->structural_components_refs)
  583. return AVERROR(ENOMEM);
  584. avio_skip(pb, 4); /* useless size of objects, always 16 according to specs */
  585. avio_read(pb, (uint8_t *)sequence->structural_components_refs, sequence->structural_components_count * sizeof(UID));
  586. break;
  587. }
  588. return 0;
  589. }
  590. static int mxf_read_source_package(void *arg, AVIOContext *pb, int tag, int size, UID uid, int64_t klv_offset)
  591. {
  592. MXFPackage *package = arg;
  593. switch(tag) {
  594. case 0x4403:
  595. package->tracks_count = avio_rb32(pb);
  596. if (package->tracks_count >= UINT_MAX / sizeof(UID))
  597. return AVERROR_INVALIDDATA;
  598. package->tracks_refs = av_malloc(package->tracks_count * sizeof(UID));
  599. if (!package->tracks_refs)
  600. return AVERROR(ENOMEM);
  601. avio_skip(pb, 4); /* useless size of objects, always 16 according to specs */
  602. avio_read(pb, (uint8_t *)package->tracks_refs, package->tracks_count * sizeof(UID));
  603. break;
  604. case 0x4401:
  605. /* UMID, only get last 16 bytes */
  606. avio_skip(pb, 16);
  607. avio_read(pb, package->package_uid, 16);
  608. break;
  609. case 0x4701:
  610. avio_read(pb, package->descriptor_ref, 16);
  611. break;
  612. }
  613. return 0;
  614. }
  615. static int mxf_read_index_entry_array(AVIOContext *pb, MXFIndexTableSegment *segment)
  616. {
  617. int i, length;
  618. segment->nb_index_entries = avio_rb32(pb);
  619. if (!segment->nb_index_entries)
  620. return 0;
  621. else if (segment->nb_index_entries < 0 ||
  622. segment->nb_index_entries >
  623. (INT_MAX >> av_log2(sizeof(*segment->stream_offset_entries))))
  624. return AVERROR(ENOMEM);
  625. length = avio_rb32(pb);
  626. segment->temporal_offset_entries = av_mallocz(segment->nb_index_entries *
  627. sizeof(*segment->temporal_offset_entries));
  628. segment->flag_entries = av_mallocz(segment->nb_index_entries *
  629. sizeof(*segment->flag_entries));
  630. segment->stream_offset_entries = av_mallocz(segment->nb_index_entries *
  631. sizeof(*segment->stream_offset_entries));
  632. if (!segment->flag_entries || !segment->stream_offset_entries ||
  633. !segment->temporal_offset_entries) {
  634. av_freep(&segment->flag_entries);
  635. av_freep(&segment->stream_offset_entries);
  636. av_freep(&segment->temporal_offset_entries);
  637. return AVERROR(ENOMEM);
  638. }
  639. for (i = 0; i < segment->nb_index_entries; i++) {
  640. segment->temporal_offset_entries[i] = avio_r8(pb);
  641. avio_r8(pb); /* KeyFrameOffset */
  642. segment->flag_entries[i] = avio_r8(pb);
  643. segment->stream_offset_entries[i] = avio_rb64(pb);
  644. avio_skip(pb, length - 11);
  645. }
  646. return 0;
  647. }
  648. static int mxf_read_index_table_segment(void *arg, AVIOContext *pb, int tag, int size, UID uid, int64_t klv_offset)
  649. {
  650. MXFIndexTableSegment *segment = arg;
  651. switch(tag) {
  652. case 0x3F05:
  653. segment->edit_unit_byte_count = avio_rb32(pb);
  654. av_dlog(NULL, "EditUnitByteCount %d\n", segment->edit_unit_byte_count);
  655. break;
  656. case 0x3F06:
  657. segment->index_sid = avio_rb32(pb);
  658. av_dlog(NULL, "IndexSID %d\n", segment->index_sid);
  659. break;
  660. case 0x3F07:
  661. segment->body_sid = avio_rb32(pb);
  662. av_dlog(NULL, "BodySID %d\n", segment->body_sid);
  663. break;
  664. case 0x3F0A:
  665. av_dlog(NULL, "IndexEntryArray found\n");
  666. return mxf_read_index_entry_array(pb, segment);
  667. case 0x3F0B:
  668. segment->index_edit_rate.num = avio_rb32(pb);
  669. segment->index_edit_rate.den = avio_rb32(pb);
  670. av_dlog(NULL, "IndexEditRate %d/%d\n", segment->index_edit_rate.num,
  671. segment->index_edit_rate.den);
  672. break;
  673. case 0x3F0C:
  674. segment->index_start_position = avio_rb64(pb);
  675. av_dlog(NULL, "IndexStartPosition %"PRId64"\n", segment->index_start_position);
  676. break;
  677. case 0x3F0D:
  678. segment->index_duration = avio_rb64(pb);
  679. av_dlog(NULL, "IndexDuration %"PRId64"\n", segment->index_duration);
  680. break;
  681. }
  682. return 0;
  683. }
  684. static void mxf_read_pixel_layout(AVIOContext *pb, MXFDescriptor *descriptor)
  685. {
  686. int code, value, ofs = 0;
  687. char layout[16] = {0};
  688. do {
  689. code = avio_r8(pb);
  690. value = avio_r8(pb);
  691. av_dlog(NULL, "pixel layout: code %#x\n", code);
  692. if (ofs < 16) {
  693. layout[ofs++] = code;
  694. layout[ofs++] = value;
  695. }
  696. } while (code != 0); /* SMPTE 377M E.2.46 */
  697. ff_mxf_decode_pixel_layout(layout, &descriptor->pix_fmt);
  698. }
  699. static int mxf_read_generic_descriptor(void *arg, AVIOContext *pb, int tag, int size, UID uid, int64_t klv_offset)
  700. {
  701. MXFDescriptor *descriptor = arg;
  702. switch(tag) {
  703. case 0x3F01:
  704. descriptor->sub_descriptors_count = avio_rb32(pb);
  705. if (descriptor->sub_descriptors_count >= UINT_MAX / sizeof(UID))
  706. return AVERROR_INVALIDDATA;
  707. descriptor->sub_descriptors_refs = av_malloc(descriptor->sub_descriptors_count * sizeof(UID));
  708. if (!descriptor->sub_descriptors_refs)
  709. return AVERROR(ENOMEM);
  710. avio_skip(pb, 4); /* useless size of objects, always 16 according to specs */
  711. avio_read(pb, (uint8_t *)descriptor->sub_descriptors_refs, descriptor->sub_descriptors_count * sizeof(UID));
  712. break;
  713. case 0x3004:
  714. avio_read(pb, descriptor->essence_container_ul, 16);
  715. break;
  716. case 0x3006:
  717. descriptor->linked_track_id = avio_rb32(pb);
  718. break;
  719. case 0x3201: /* PictureEssenceCoding */
  720. avio_read(pb, descriptor->essence_codec_ul, 16);
  721. break;
  722. case 0x3203:
  723. descriptor->width = avio_rb32(pb);
  724. break;
  725. case 0x3202:
  726. descriptor->height = avio_rb32(pb);
  727. break;
  728. case 0x320E:
  729. descriptor->aspect_ratio.num = avio_rb32(pb);
  730. descriptor->aspect_ratio.den = avio_rb32(pb);
  731. break;
  732. case 0x3D03:
  733. descriptor->sample_rate.num = avio_rb32(pb);
  734. descriptor->sample_rate.den = avio_rb32(pb);
  735. break;
  736. case 0x3D06: /* SoundEssenceCompression */
  737. avio_read(pb, descriptor->essence_codec_ul, 16);
  738. break;
  739. case 0x3D07:
  740. descriptor->channels = avio_rb32(pb);
  741. break;
  742. case 0x3D01:
  743. descriptor->bits_per_sample = avio_rb32(pb);
  744. break;
  745. case 0x3401:
  746. mxf_read_pixel_layout(pb, descriptor);
  747. break;
  748. default:
  749. /* Private uid used by SONY C0023S01.mxf */
  750. if (IS_KLV_KEY(uid, mxf_sony_mpeg4_extradata)) {
  751. descriptor->extradata = av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE);
  752. if (!descriptor->extradata)
  753. return AVERROR(ENOMEM);
  754. descriptor->extradata_size = size;
  755. avio_read(pb, descriptor->extradata, size);
  756. }
  757. break;
  758. }
  759. return 0;
  760. }
  761. /*
  762. * Match an uid independently of the version byte and up to len common bytes
  763. * Returns: boolean
  764. */
  765. static int mxf_match_uid(const UID key, const UID uid, int len)
  766. {
  767. int i;
  768. for (i = 0; i < len; i++) {
  769. if (i != 7 && key[i] != uid[i])
  770. return 0;
  771. }
  772. return 1;
  773. }
  774. static const MXFCodecUL *mxf_get_codec_ul(const MXFCodecUL *uls, UID *uid)
  775. {
  776. while (uls->uid[0]) {
  777. if(mxf_match_uid(uls->uid, *uid, uls->matching_len))
  778. break;
  779. uls++;
  780. }
  781. return uls;
  782. }
  783. static void *mxf_resolve_strong_ref(MXFContext *mxf, UID *strong_ref, enum MXFMetadataSetType type)
  784. {
  785. int i;
  786. if (!strong_ref)
  787. return NULL;
  788. for (i = 0; i < mxf->metadata_sets_count; i++) {
  789. if (!memcmp(*strong_ref, mxf->metadata_sets[i]->uid, 16) &&
  790. (type == AnyType || mxf->metadata_sets[i]->type == type)) {
  791. return mxf->metadata_sets[i];
  792. }
  793. }
  794. return NULL;
  795. }
  796. static const MXFCodecUL mxf_picture_essence_container_uls[] = {
  797. // video essence container uls
  798. { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x02,0x0D,0x01,0x03,0x01,0x02,0x04,0x60,0x01 }, 14, CODEC_ID_MPEG2VIDEO }, /* MPEG-ES Frame wrapped */
  799. { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x0D,0x01,0x03,0x01,0x02,0x02,0x41,0x01 }, 14, CODEC_ID_DVVIDEO }, /* DV 625 25mbps */
  800. { { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }, 0, CODEC_ID_NONE },
  801. };
  802. static const MXFCodecUL mxf_sound_essence_container_uls[] = {
  803. // sound essence container uls
  804. { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x0D,0x01,0x03,0x01,0x02,0x06,0x01,0x00 }, 14, CODEC_ID_PCM_S16LE }, /* BWF Frame wrapped */
  805. { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x02,0x0D,0x01,0x03,0x01,0x02,0x04,0x40,0x01 }, 14, CODEC_ID_MP2 }, /* MPEG-ES Frame wrapped, 0x40 ??? stream id */
  806. { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x0D,0x01,0x03,0x01,0x02,0x01,0x01,0x01 }, 14, CODEC_ID_PCM_S16LE }, /* D-10 Mapping 50Mbps PAL Extended Template */
  807. { { 0x06,0x0E,0x2B,0x34,0x01,0x01,0x01,0xFF,0x4B,0x46,0x41,0x41,0x00,0x0D,0x4D,0x4F }, 14, CODEC_ID_PCM_S16LE }, /* 0001GL00.MXF.A1.mxf_opatom.mxf */
  808. { { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }, 0, CODEC_ID_NONE },
  809. };
  810. static int mxf_get_sorted_table_segments(MXFContext *mxf, int *nb_sorted_segments, MXFIndexTableSegment ***sorted_segments)
  811. {
  812. int i, j, nb_segments = 0;
  813. MXFIndexTableSegment **unsorted_segments;
  814. int last_body_sid = -1, last_index_sid = -1, last_index_start = -1;
  815. /* count number of segments, allocate arrays and copy unsorted segments */
  816. for (i = 0; i < mxf->metadata_sets_count; i++)
  817. if (mxf->metadata_sets[i]->type == IndexTableSegment)
  818. nb_segments++;
  819. *sorted_segments = av_mallocz(nb_segments * sizeof(**sorted_segments));
  820. unsorted_segments = av_mallocz(nb_segments * sizeof(*unsorted_segments));
  821. if (!sorted_segments || !unsorted_segments) {
  822. av_freep(sorted_segments);
  823. av_free(unsorted_segments);
  824. return AVERROR(ENOMEM);
  825. }
  826. for (i = j = 0; i < mxf->metadata_sets_count; i++)
  827. if (mxf->metadata_sets[i]->type == IndexTableSegment)
  828. unsorted_segments[j++] = (MXFIndexTableSegment*)mxf->metadata_sets[i];
  829. *nb_sorted_segments = 0;
  830. /* sort segments by {BodySID, IndexSID, IndexStartPosition}, remove duplicates while we're at it */
  831. for (i = 0; i < nb_segments; i++) {
  832. int best = -1, best_body_sid = -1, best_index_sid = -1, best_index_start = -1;
  833. for (j = 0; j < nb_segments; j++) {
  834. MXFIndexTableSegment *s = unsorted_segments[j];
  835. /* Require larger BosySID, IndexSID or IndexStartPosition then the previous entry. This removes duplicates.
  836. * We want the smallest values for the keys than what we currently have, unless this is the first such entry this time around.
  837. */
  838. if ((i == 0 || s->body_sid > last_body_sid || s->index_sid > last_index_sid || s->index_start_position > last_index_start) &&
  839. (best == -1 || s->body_sid < best_body_sid || s->index_sid < best_index_sid || s->index_start_position < best_index_start)) {
  840. best = j;
  841. best_body_sid = s->body_sid;
  842. best_index_sid = s->index_sid;
  843. best_index_start = s->index_start_position;
  844. }
  845. }
  846. /* no suitable entry found -> we're done */
  847. if (best == -1)
  848. break;
  849. (*sorted_segments)[(*nb_sorted_segments)++] = unsorted_segments[best];
  850. last_body_sid = best_body_sid;
  851. last_index_sid = best_index_sid;
  852. last_index_start = best_index_start;
  853. }
  854. av_free(unsorted_segments);
  855. return 0;
  856. }
  857. /**
  858. * Computes the absolute file offset of the given essence container offset
  859. */
  860. static int mxf_absolute_bodysid_offset(MXFContext *mxf, int body_sid, int64_t offset, int64_t *offset_out)
  861. {
  862. int x;
  863. int64_t offset_in = offset; /* for logging */
  864. for (x = 0; x < mxf->partitions_count; x++) {
  865. MXFPartition *p = &mxf->partitions[x];
  866. if (p->body_sid != body_sid)
  867. continue;
  868. if (offset < p->essence_length || !p->essence_length) {
  869. *offset_out = p->essence_offset + offset;
  870. return 0;
  871. }
  872. offset -= p->essence_length;
  873. }
  874. av_log(mxf->fc, AV_LOG_ERROR,
  875. "failed to find absolute offset of %"PRIX64" in BodySID %i - partial file?\n",
  876. offset_in, body_sid);
  877. return AVERROR_INVALIDDATA;
  878. }
  879. /**
  880. * Returns the end position of the essence container with given BodySID, or zero if unknown
  881. */
  882. static int64_t mxf_essence_container_end(MXFContext *mxf, int body_sid)
  883. {
  884. int x;
  885. int64_t ret = 0;
  886. for (x = 0; x < mxf->partitions_count; x++) {
  887. MXFPartition *p = &mxf->partitions[x];
  888. if (p->body_sid != body_sid)
  889. continue;
  890. if (!p->essence_length)
  891. return 0;
  892. ret = p->essence_offset + p->essence_length;
  893. }
  894. return ret;
  895. }
  896. /* EditUnit -> absolute offset */
  897. static int mxf_edit_unit_absolute_offset(MXFContext *mxf, MXFIndexTable *index_table, int64_t edit_unit, int64_t *edit_unit_out, int64_t *offset_out, int nag)
  898. {
  899. int i;
  900. int64_t offset_temp = 0;
  901. for (i = 0; i < index_table->nb_segments; i++) {
  902. MXFIndexTableSegment *s = index_table->segments[i];
  903. edit_unit = FFMAX(edit_unit, s->index_start_position); /* clamp if trying to seek before start */
  904. if (edit_unit < s->index_start_position + s->index_duration) {
  905. int64_t index = edit_unit - s->index_start_position;
  906. if (s->edit_unit_byte_count)
  907. offset_temp += s->edit_unit_byte_count * index;
  908. else if (s->nb_index_entries) {
  909. if (s->nb_index_entries == 2 * s->index_duration + 1)
  910. index *= 2; /* Avid index */
  911. if (index < 0 || index > s->nb_index_entries) {
  912. av_log(mxf->fc, AV_LOG_ERROR, "IndexSID %i segment at %"PRId64" IndexEntryArray too small\n",
  913. index_table->index_sid, s->index_start_position);
  914. return AVERROR_INVALIDDATA;
  915. }
  916. offset_temp = s->stream_offset_entries[index];
  917. } else {
  918. av_log(mxf->fc, AV_LOG_ERROR, "IndexSID %i segment at %"PRId64" missing EditUnitByteCount and IndexEntryArray\n",
  919. index_table->index_sid, s->index_start_position);
  920. return AVERROR_INVALIDDATA;
  921. }
  922. if (edit_unit_out)
  923. *edit_unit_out = edit_unit;
  924. return mxf_absolute_bodysid_offset(mxf, index_table->body_sid, offset_temp, offset_out);
  925. } else {
  926. /* EditUnitByteCount == 0 for VBR indexes, which is fine since they use explicit StreamOffsets */
  927. offset_temp += s->edit_unit_byte_count * s->index_duration;
  928. }
  929. }
  930. if (nag)
  931. av_log(mxf->fc, AV_LOG_ERROR, "failed to map EditUnit %"PRId64" in IndexSID %i to an offset\n", edit_unit, index_table->index_sid);
  932. return AVERROR_INVALIDDATA;
  933. }
  934. static int mxf_compute_ptses_fake_index(MXFContext *mxf, MXFIndexTable *index_table)
  935. {
  936. int i, j, x;
  937. int8_t max_temporal_offset = -128;
  938. /* first compute how many entries we have */
  939. for (i = 0; i < index_table->nb_segments; i++) {
  940. MXFIndexTableSegment *s = index_table->segments[i];
  941. if (!s->nb_index_entries)
  942. return 0; /* no TemporalOffsets */
  943. index_table->nb_ptses += s->index_duration;
  944. }
  945. /* paranoid check */
  946. if (index_table->nb_ptses <= 0)
  947. return 0;
  948. if (index_table->nb_ptses > INT_MAX >> av_log2(sizeof(AVIndexEntry)) + 1)
  949. return AVERROR(ENOMEM);
  950. index_table->ptses = av_mallocz(index_table->nb_ptses *
  951. sizeof(int64_t));
  952. index_table->fake_index = av_mallocz(index_table->nb_ptses *
  953. sizeof(AVIndexEntry));
  954. if (!index_table->ptses || !index_table->fake_index) {
  955. av_freep(&index_table->ptses);
  956. return AVERROR(ENOMEM);
  957. }
  958. /* we may have a few bad TemporalOffsets
  959. * make sure the corresponding PTSes don't have the bogus value 0 */
  960. for (x = 0; x < index_table->nb_ptses; x++)
  961. index_table->ptses[x] = AV_NOPTS_VALUE;
  962. /**
  963. * We have this:
  964. *
  965. * x TemporalOffset
  966. * 0: 0
  967. * 1: 1
  968. * 2: 1
  969. * 3: -2
  970. * 4: 1
  971. * 5: 1
  972. * 6: -2
  973. *
  974. * We want to transform it into this:
  975. *
  976. * x DTS PTS
  977. * 0: -1 0
  978. * 1: 0 3
  979. * 2: 1 1
  980. * 3: 2 2
  981. * 4: 3 6
  982. * 5: 4 4
  983. * 6: 5 5
  984. *
  985. * We do this by bucket sorting x by x+TemporalOffset[x] into mxf->ptses,
  986. * then settings mxf->first_dts = -max(TemporalOffset[x]).
  987. * The latter makes DTS <= PTS.
  988. */
  989. for (i = x = 0; i < index_table->nb_segments; i++) {
  990. MXFIndexTableSegment *s = index_table->segments[i];
  991. int index_delta = 1;
  992. if (s->nb_index_entries == 2 * s->index_duration + 1)
  993. index_delta = 2; /* Avid index */
  994. for (j = 0; j < s->nb_index_entries; j += index_delta, x++) {
  995. int offset = s->temporal_offset_entries[j] / index_delta;
  996. int index = x + offset;
  997. index_table->fake_index[x].timestamp = x;
  998. index_table->fake_index[x].flags = !(s->flag_entries[j] & 0x30) ? AVINDEX_KEYFRAME : 0;
  999. if (index < 0 || index >= index_table->nb_ptses) {
  1000. av_log(mxf->fc, AV_LOG_ERROR,
  1001. "index entry %i + TemporalOffset %i = %i, which is out of bounds\n",
  1002. x, offset, index);
  1003. continue;
  1004. }
  1005. index_table->ptses[index] = x;
  1006. max_temporal_offset = FFMAX(max_temporal_offset, offset);
  1007. }
  1008. }
  1009. index_table->first_dts = -max_temporal_offset;
  1010. return 0;
  1011. }
  1012. /**
  1013. * Sorts and collects index table segments into index tables.
  1014. * Also computes PTSes if possible.
  1015. */
  1016. static int mxf_compute_index_tables(MXFContext *mxf)
  1017. {
  1018. int i, j, k, ret, nb_sorted_segments;
  1019. MXFIndexTableSegment **sorted_segments = NULL;
  1020. if ((ret = mxf_get_sorted_table_segments(mxf, &nb_sorted_segments, &sorted_segments)) ||
  1021. nb_sorted_segments <= 0) {
  1022. av_log(mxf->fc, AV_LOG_WARNING, "broken or empty index\n");
  1023. return 0;
  1024. }
  1025. /* sanity check and count unique BodySIDs/IndexSIDs */
  1026. for (i = 0; i < nb_sorted_segments; i++) {
  1027. if (i == 0 || sorted_segments[i-1]->index_sid != sorted_segments[i]->index_sid)
  1028. mxf->nb_index_tables++;
  1029. else if (sorted_segments[i-1]->body_sid != sorted_segments[i]->body_sid) {
  1030. av_log(mxf->fc, AV_LOG_ERROR, "found inconsistent BodySID\n");
  1031. ret = AVERROR_INVALIDDATA;
  1032. goto finish_decoding_index;
  1033. }
  1034. }
  1035. if (mxf->nb_index_tables > INT_MAX >> av_log2(sizeof(MXFIndexTable)) + 1 ||
  1036. !(mxf->index_tables = av_mallocz(mxf->nb_index_tables *
  1037. sizeof(MXFIndexTable)))) {
  1038. av_log(mxf->fc, AV_LOG_ERROR, "failed to allocate index tables\n");
  1039. ret = AVERROR(ENOMEM);
  1040. goto finish_decoding_index;
  1041. }
  1042. /* distribute sorted segments to index tables */
  1043. for (i = j = 0; i < nb_sorted_segments; i++) {
  1044. if (i != 0 && sorted_segments[i-1]->index_sid != sorted_segments[i]->index_sid) {
  1045. /* next IndexSID */
  1046. j++;
  1047. }
  1048. mxf->index_tables[j].nb_segments++;
  1049. }
  1050. for (i = j = 0; j < mxf->nb_index_tables; i += mxf->index_tables[j++].nb_segments) {
  1051. MXFIndexTable *t = &mxf->index_tables[j];
  1052. if (t->nb_segments >
  1053. (INT_MAX >> av_log2(sizeof(MXFIndexTableSegment *))) ||
  1054. !(t->segments = av_mallocz(t->nb_segments *
  1055. sizeof(MXFIndexTableSegment*)))) {
  1056. av_log(mxf->fc, AV_LOG_ERROR, "failed to allocate IndexTableSegment"
  1057. " pointer array\n");
  1058. ret = AVERROR(ENOMEM);
  1059. goto finish_decoding_index;
  1060. }
  1061. if (sorted_segments[i]->index_start_position)
  1062. av_log(mxf->fc, AV_LOG_WARNING, "IndexSID %i starts at EditUnit %"PRId64" - seeking may not work as expected\n",
  1063. sorted_segments[i]->index_sid, sorted_segments[i]->index_start_position);
  1064. memcpy(t->segments, &sorted_segments[i], t->nb_segments * sizeof(MXFIndexTableSegment*));
  1065. t->index_sid = sorted_segments[i]->index_sid;
  1066. t->body_sid = sorted_segments[i]->body_sid;
  1067. if ((ret = mxf_compute_ptses_fake_index(mxf, t)) < 0)
  1068. goto finish_decoding_index;
  1069. /* fix zero IndexDurations */
  1070. for (k = 0; k < t->nb_segments; k++) {
  1071. if (t->segments[k]->index_duration)
  1072. continue;
  1073. if (t->nb_segments > 1)
  1074. av_log(mxf->fc, AV_LOG_WARNING, "IndexSID %i segment %i has zero IndexDuration and there's more than one segment\n",
  1075. t->index_sid, k);
  1076. if (mxf->fc->nb_streams <= 0) {
  1077. av_log(mxf->fc, AV_LOG_WARNING, "no streams?\n");
  1078. break;
  1079. }
  1080. /* assume the first stream's duration is reasonable
  1081. * leave index_duration = 0 on further segments in case we have any (unlikely)
  1082. */
  1083. t->segments[k]->index_duration = mxf->fc->streams[0]->duration;
  1084. break;
  1085. }
  1086. }
  1087. ret = 0;
  1088. finish_decoding_index:
  1089. av_free(sorted_segments);
  1090. return ret;
  1091. }
  1092. static int mxf_parse_structural_metadata(MXFContext *mxf)
  1093. {
  1094. MXFPackage *material_package = NULL;
  1095. MXFPackage *temp_package = NULL;
  1096. int i, j, k, ret;
  1097. av_dlog(mxf->fc, "metadata sets count %d\n", mxf->metadata_sets_count);
  1098. /* TODO: handle multiple material packages (OP3x) */
  1099. for (i = 0; i < mxf->packages_count; i++) {
  1100. material_package = mxf_resolve_strong_ref(mxf, &mxf->packages_refs[i], MaterialPackage);
  1101. if (material_package) break;
  1102. }
  1103. if (!material_package) {
  1104. av_log(mxf->fc, AV_LOG_ERROR, "no material package found\n");
  1105. return AVERROR_INVALIDDATA;
  1106. }
  1107. for (i = 0; i < material_package->tracks_count; i++) {
  1108. MXFPackage *source_package = NULL;
  1109. MXFTrack *material_track = NULL;
  1110. MXFTrack *source_track = NULL;
  1111. MXFTrack *temp_track = NULL;
  1112. MXFDescriptor *descriptor = NULL;
  1113. MXFStructuralComponent *component = NULL;
  1114. UID *essence_container_ul = NULL;
  1115. const MXFCodecUL *codec_ul = NULL;
  1116. const MXFCodecUL *container_ul = NULL;
  1117. AVStream *st;
  1118. if (!(material_track = mxf_resolve_strong_ref(mxf, &material_package->tracks_refs[i], Track))) {
  1119. av_log(mxf->fc, AV_LOG_ERROR, "could not resolve material track strong ref\n");
  1120. continue;
  1121. }
  1122. if (!(material_track->sequence = mxf_resolve_strong_ref(mxf, &material_track->sequence_ref, Sequence))) {
  1123. av_log(mxf->fc, AV_LOG_ERROR, "could not resolve material track sequence strong ref\n");
  1124. continue;
  1125. }
  1126. /* TODO: handle multiple source clips */
  1127. for (j = 0; j < material_track->sequence->structural_components_count; j++) {
  1128. /* TODO: handle timecode component */
  1129. component = mxf_resolve_strong_ref(mxf, &material_track->sequence->structural_components_refs[j], SourceClip);
  1130. if (!component)
  1131. continue;
  1132. for (k = 0; k < mxf->packages_count; k++) {
  1133. temp_package = mxf_resolve_strong_ref(mxf, &mxf->packages_refs[k], SourcePackage);
  1134. if (!temp_package)
  1135. continue;
  1136. if (!memcmp(temp_package->package_uid, component->source_package_uid, 16)) {
  1137. source_package = temp_package;
  1138. break;
  1139. }
  1140. }
  1141. if (!source_package) {
  1142. av_dlog(mxf->fc, "material track %d: no corresponding source package found\n", material_track->track_id);
  1143. break;
  1144. }
  1145. for (k = 0; k < source_package->tracks_count; k++) {
  1146. if (!(temp_track = mxf_resolve_strong_ref(mxf, &source_package->tracks_refs[k], Track))) {
  1147. av_log(mxf->fc, AV_LOG_ERROR, "could not resolve source track strong ref\n");
  1148. ret = AVERROR_INVALIDDATA;
  1149. goto fail_and_free;
  1150. }
  1151. if (temp_track->track_id == component->source_track_id) {
  1152. source_track = temp_track;
  1153. break;
  1154. }
  1155. }
  1156. if (!source_track) {
  1157. av_log(mxf->fc, AV_LOG_ERROR, "material track %d: no corresponding source track found\n", material_track->track_id);
  1158. break;
  1159. }
  1160. }
  1161. if (!source_track)
  1162. continue;
  1163. if (!(source_track->sequence = mxf_resolve_strong_ref(mxf, &source_track->sequence_ref, Sequence))) {
  1164. av_log(mxf->fc, AV_LOG_ERROR, "could not resolve source track sequence strong ref\n");
  1165. ret = AVERROR_INVALIDDATA;
  1166. goto fail_and_free;
  1167. }
  1168. /* 0001GL00.MXF.A1.mxf_opatom.mxf has the same SourcePackageID as 0001GL.MXF.V1.mxf_opatom.mxf
  1169. * This would result in both files appearing to have two streams. Work around this by sanity checking DataDefinition */
  1170. if (memcmp(material_track->sequence->data_definition_ul, source_track->sequence->data_definition_ul, 16)) {
  1171. av_log(mxf->fc, AV_LOG_ERROR, "material track %d: DataDefinition mismatch\n", material_track->track_id);
  1172. continue;
  1173. }
  1174. st = avformat_new_stream(mxf->fc, NULL);
  1175. if (!st) {
  1176. av_log(mxf->fc, AV_LOG_ERROR, "could not allocate stream\n");
  1177. ret = AVERROR(ENOMEM);
  1178. goto fail_and_free;
  1179. }
  1180. st->id = source_track->track_id;
  1181. st->priv_data = source_track;
  1182. st->duration = component->duration;
  1183. if (st->duration == -1)
  1184. st->duration = AV_NOPTS_VALUE;
  1185. st->start_time = component->start_position;
  1186. avpriv_set_pts_info(st, 64, material_track->edit_rate.num, material_track->edit_rate.den);
  1187. PRINT_KEY(mxf->fc, "data definition ul", source_track->sequence->data_definition_ul);
  1188. codec_ul = mxf_get_codec_ul(ff_mxf_data_definition_uls, &source_track->sequence->data_definition_ul);
  1189. st->codec->codec_type = codec_ul->id;
  1190. source_package->descriptor = mxf_resolve_strong_ref(mxf, &source_package->descriptor_ref, AnyType);
  1191. if (source_package->descriptor) {
  1192. if (source_package->descriptor->type == MultipleDescriptor) {
  1193. for (j = 0; j < source_package->descriptor->sub_descriptors_count; j++) {
  1194. MXFDescriptor *sub_descriptor = mxf_resolve_strong_ref(mxf, &source_package->descriptor->sub_descriptors_refs[j], Descriptor);
  1195. if (!sub_descriptor) {
  1196. av_log(mxf->fc, AV_LOG_ERROR, "could not resolve sub descriptor strong ref\n");
  1197. continue;
  1198. }
  1199. if (sub_descriptor->linked_track_id == source_track->track_id) {
  1200. descriptor = sub_descriptor;
  1201. break;
  1202. }
  1203. }
  1204. } else if (source_package->descriptor->type == Descriptor)
  1205. descriptor = source_package->descriptor;
  1206. }
  1207. if (!descriptor) {
  1208. av_log(mxf->fc, AV_LOG_INFO, "source track %d: stream %d, no descriptor found\n", source_track->track_id, st->index);
  1209. continue;
  1210. }
  1211. PRINT_KEY(mxf->fc, "essence codec ul", descriptor->essence_codec_ul);
  1212. PRINT_KEY(mxf->fc, "essence container ul", descriptor->essence_container_ul);
  1213. essence_container_ul = &descriptor->essence_container_ul;
  1214. /* HACK: replacing the original key with mxf_encrypted_essence_container
  1215. * is not allowed according to s429-6, try to find correct information anyway */
  1216. if (IS_KLV_KEY(essence_container_ul, mxf_encrypted_essence_container)) {
  1217. av_log(mxf->fc, AV_LOG_INFO, "broken encrypted mxf file\n");
  1218. for (k = 0; k < mxf->metadata_sets_count; k++) {
  1219. MXFMetadataSet *metadata = mxf->metadata_sets[k];
  1220. if (metadata->type == CryptoContext) {
  1221. essence_container_ul = &((MXFCryptoContext *)metadata)->source_container_ul;
  1222. break;
  1223. }
  1224. }
  1225. }
  1226. /* TODO: drop PictureEssenceCoding and SoundEssenceCompression, only check EssenceContainer */
  1227. codec_ul = mxf_get_codec_ul(ff_mxf_codec_uls, &descriptor->essence_codec_ul);
  1228. st->codec->codec_id = codec_ul->id;
  1229. if (descriptor->extradata) {
  1230. st->codec->extradata = descriptor->extradata;
  1231. st->codec->extradata_size = descriptor->extradata_size;
  1232. }
  1233. if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
  1234. container_ul = mxf_get_codec_ul(mxf_picture_essence_container_uls, essence_container_ul);
  1235. if (st->codec->codec_id == CODEC_ID_NONE)
  1236. st->codec->codec_id = container_ul->id;
  1237. st->codec->width = descriptor->width;
  1238. st->codec->height = descriptor->height;
  1239. if (st->codec->codec_id == CODEC_ID_RAWVIDEO)
  1240. st->codec->pix_fmt = descriptor->pix_fmt;
  1241. st->need_parsing = AVSTREAM_PARSE_HEADERS;
  1242. } else if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
  1243. container_ul = mxf_get_codec_ul(mxf_sound_essence_container_uls, essence_container_ul);
  1244. if (st->codec->codec_id == CODEC_ID_NONE)
  1245. st->codec->codec_id = container_ul->id;
  1246. st->codec->channels = descriptor->channels;
  1247. st->codec->bits_per_coded_sample = descriptor->bits_per_sample;
  1248. st->codec->sample_rate = descriptor->sample_rate.num / descriptor->sample_rate.den;
  1249. /* TODO: implement CODEC_ID_RAWAUDIO */
  1250. if (st->codec->codec_id == CODEC_ID_PCM_S16LE) {
  1251. if (descriptor->bits_per_sample > 16 && descriptor->bits_per_sample <= 24)
  1252. st->codec->codec_id = CODEC_ID_PCM_S24LE;
  1253. else if (descriptor->bits_per_sample == 32)
  1254. st->codec->codec_id = CODEC_ID_PCM_S32LE;
  1255. } else if (st->codec->codec_id == CODEC_ID_PCM_S16BE) {
  1256. if (descriptor->bits_per_sample > 16 && descriptor->bits_per_sample <= 24)
  1257. st->codec->codec_id = CODEC_ID_PCM_S24BE;
  1258. else if (descriptor->bits_per_sample == 32)
  1259. st->codec->codec_id = CODEC_ID_PCM_S32BE;
  1260. } else if (st->codec->codec_id == CODEC_ID_MP2) {
  1261. st->need_parsing = AVSTREAM_PARSE_FULL;
  1262. }
  1263. }
  1264. if (st->codec->codec_type != AVMEDIA_TYPE_DATA && (*essence_container_ul)[15] > 0x01) {
  1265. /* TODO: decode timestamps */
  1266. st->need_parsing = AVSTREAM_PARSE_TIMESTAMPS;
  1267. }
  1268. }
  1269. ret = 0;
  1270. fail_and_free:
  1271. return ret;
  1272. }
  1273. static const MXFMetadataReadTableEntry mxf_metadata_read_table[] = {
  1274. { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x05,0x01,0x00 }, mxf_read_primer_pack },
  1275. { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x02,0x01,0x00 }, mxf_read_partition_pack },
  1276. { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x02,0x02,0x00 }, mxf_read_partition_pack },
  1277. { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x02,0x03,0x00 }, mxf_read_partition_pack },
  1278. { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x02,0x04,0x00 }, mxf_read_partition_pack },
  1279. { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x03,0x01,0x00 }, mxf_read_partition_pack },
  1280. { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x03,0x02,0x00 }, mxf_read_partition_pack },
  1281. { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x03,0x03,0x00 }, mxf_read_partition_pack },
  1282. { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x03,0x04,0x00 }, mxf_read_partition_pack },
  1283. { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x04,0x02,0x00 }, mxf_read_partition_pack },
  1284. { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x04,0x04,0x00 }, mxf_read_partition_pack },
  1285. { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x18,0x00 }, mxf_read_content_storage, 0, AnyType },
  1286. { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x37,0x00 }, mxf_read_source_package, sizeof(MXFPackage), SourcePackage },
  1287. { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x36,0x00 }, mxf_read_material_package, sizeof(MXFPackage), MaterialPackage },
  1288. { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x0F,0x00 }, mxf_read_sequence, sizeof(MXFSequence), Sequence },
  1289. { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x11,0x00 }, mxf_read_source_clip, sizeof(MXFStructuralComponent), SourceClip },
  1290. { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x44,0x00 }, mxf_read_generic_descriptor, sizeof(MXFDescriptor), MultipleDescriptor },
  1291. { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x42,0x00 }, mxf_read_generic_descriptor, sizeof(MXFDescriptor), Descriptor }, /* Generic Sound */
  1292. { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x28,0x00 }, mxf_read_generic_descriptor, sizeof(MXFDescriptor), Descriptor }, /* CDCI */
  1293. { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x29,0x00 }, mxf_read_generic_descriptor, sizeof(MXFDescriptor), Descriptor }, /* RGBA */
  1294. { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x51,0x00 }, mxf_read_generic_descriptor, sizeof(MXFDescriptor), Descriptor }, /* MPEG 2 Video */
  1295. { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x48,0x00 }, mxf_read_generic_descriptor, sizeof(MXFDescriptor), Descriptor }, /* Wave */
  1296. { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x47,0x00 }, mxf_read_generic_descriptor, sizeof(MXFDescriptor), Descriptor }, /* AES3 */
  1297. { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x3A,0x00 }, mxf_read_track, sizeof(MXFTrack), Track }, /* Static Track */
  1298. { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x3B,0x00 }, mxf_read_track, sizeof(MXFTrack), Track }, /* Generic Track */
  1299. { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x04,0x01,0x02,0x02,0x00,0x00 }, mxf_read_cryptographic_context, sizeof(MXFCryptoContext), CryptoContext },
  1300. { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x10,0x01,0x00 }, mxf_read_index_table_segment, sizeof(MXFIndexTableSegment), IndexTableSegment },
  1301. { { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }, NULL, 0, AnyType },
  1302. };
  1303. static int mxf_read_local_tags(MXFContext *mxf, KLVPacket *klv, MXFMetadataReadFunc *read_child, int ctx_size, enum MXFMetadataSetType type)
  1304. {
  1305. AVIOContext *pb = mxf->fc->pb;
  1306. MXFMetadataSet *ctx = ctx_size ? av_mallocz(ctx_size) : mxf;
  1307. uint64_t klv_end = avio_tell(pb) + klv->length;
  1308. if (!ctx)
  1309. return AVERROR(ENOMEM);
  1310. while (avio_tell(pb) + 4 < klv_end) {
  1311. int ret;
  1312. int tag = avio_rb16(pb);
  1313. int size = avio_rb16(pb); /* KLV specified by 0x53 */
  1314. uint64_t next = avio_tell(pb) + size;
  1315. UID uid = {0};
  1316. av_dlog(mxf->fc, "local tag %#04x size %d\n", tag, size);
  1317. if (!size) { /* ignore empty tag, needed for some files with empty UMID tag */
  1318. av_log(mxf->fc, AV_LOG_ERROR, "local tag %#04x with 0 size\n", tag);
  1319. continue;
  1320. }
  1321. if (tag > 0x7FFF) { /* dynamic tag */
  1322. int i;
  1323. for (i = 0; i < mxf->local_tags_count; i++) {
  1324. int local_tag = AV_RB16(mxf->local_tags+i*18);
  1325. if (local_tag == tag) {
  1326. memcpy(uid, mxf->local_tags+i*18+2, 16);
  1327. av_dlog(mxf->fc, "local tag %#04x\n", local_tag);
  1328. PRINT_KEY(mxf->fc, "uid", uid);
  1329. }
  1330. }
  1331. }
  1332. if (ctx_size && tag == 0x3C0A)
  1333. avio_read(pb, ctx->uid, 16);
  1334. else if ((ret = read_child(ctx, pb, tag, size, uid, -1)) < 0)
  1335. return ret;
  1336. avio_seek(pb, next, SEEK_SET);
  1337. }
  1338. if (ctx_size) ctx->type = type;
  1339. return ctx_size ? mxf_add_metadata_set(mxf, ctx) : 0;
  1340. }
  1341. /**
  1342. * Seeks to the previous partition, if possible
  1343. * @return <= 0 if we should stop parsing, > 0 if we should keep going
  1344. */
  1345. static int mxf_seek_to_previous_partition(MXFContext *mxf)
  1346. {
  1347. AVIOContext *pb = mxf->fc->pb;
  1348. if (!mxf->current_partition ||
  1349. mxf->run_in + mxf->current_partition->previous_partition <= mxf->last_forward_tell)
  1350. return 0; /* we've parsed all partitions */
  1351. /* seek to previous partition */
  1352. avio_seek(pb, mxf->run_in + mxf->current_partition->previous_partition, SEEK_SET);
  1353. mxf->current_partition = NULL;
  1354. av_dlog(mxf->fc, "seeking to previous partition\n");
  1355. return 1;
  1356. }
  1357. /**
  1358. * Called when essence is encountered
  1359. * @return <= 0 if we should stop parsing, > 0 if we should keep going
  1360. */
  1361. static int mxf_parse_handle_essence(MXFContext *mxf)
  1362. {
  1363. AVIOContext *pb = mxf->fc->pb;
  1364. int64_t ret;
  1365. if (!mxf->current_partition) {
  1366. av_log(mxf->fc, AV_LOG_ERROR, "found essence prior to PartitionPack\n");
  1367. return AVERROR_INVALIDDATA;
  1368. }
  1369. if (mxf->parsing_backward) {
  1370. return mxf_seek_to_previous_partition(mxf);
  1371. } else {
  1372. if (!mxf->footer_partition) {
  1373. av_dlog(mxf->fc, "no footer\n");
  1374. return 0;
  1375. }
  1376. av_dlog(mxf->fc, "seeking to footer\n");
  1377. /* remember where we were so we don't end up seeking further back than this */
  1378. mxf->last_forward_tell = avio_tell(pb);
  1379. if (!pb->seekable) {
  1380. av_log(mxf->fc, AV_LOG_INFO, "file is not seekable - not parsing footer\n");
  1381. return -1;
  1382. }
  1383. /* seek to footer partition and parse backward */
  1384. if ((ret = avio_seek(pb, mxf->run_in + mxf->footer_partition, SEEK_SET)) < 0) {
  1385. av_log(mxf->fc, AV_LOG_ERROR, "failed to seek to footer @ 0x%"PRIx64" (%"PRId64") - partial file?\n",
  1386. mxf->run_in + mxf->footer_partition, ret);
  1387. return ret;
  1388. }
  1389. mxf->current_partition = NULL;
  1390. mxf->parsing_backward = 1;
  1391. }
  1392. return 1;
  1393. }
  1394. /**
  1395. * Called when the next partition or EOF is encountered
  1396. * @return <= 0 if we should stop parsing, > 0 if we should keep going
  1397. */
  1398. static int mxf_parse_handle_partition_or_eof(MXFContext *mxf)
  1399. {
  1400. return mxf->parsing_backward ? mxf_seek_to_previous_partition(mxf) : 1;
  1401. }
  1402. /**
  1403. * Figure out the proper offset and length of the essence container
  1404. * in each partition
  1405. */
  1406. static void mxf_compute_essence_containers(MXFContext *mxf)
  1407. {
  1408. int x;
  1409. /* everything is already correct */
  1410. if (mxf->op == OPAtom)
  1411. return;
  1412. for (x = 0; x < mxf->partitions_count; x++) {
  1413. MXFPartition *p = &mxf->partitions[x];
  1414. if (!p->body_sid)
  1415. continue; /* BodySID == 0 -> no essence */
  1416. if (x >= mxf->partitions_count - 1)
  1417. break; /* last partition - can't compute length (and we don't need to) */
  1418. /* essence container spans to the next partition */
  1419. p->essence_length = mxf->partitions[x+1].this_partition - p->essence_offset;
  1420. if (p->essence_length < 0) {
  1421. /* next ThisPartition < essence_offset */
  1422. p->essence_length = 0;
  1423. av_log(mxf->fc, AV_LOG_ERROR,
  1424. "partition %i: bad ThisPartition = %"PRIX64"\n",
  1425. x+1, mxf->partitions[x+1].this_partition);
  1426. }
  1427. }
  1428. }
  1429. static int64_t round_to_kag(int64_t position, int kag_size)
  1430. {
  1431. /* TODO: account for run-in? the spec isn't clear whether KAG should account for it */
  1432. /* NOTE: kag_size may be any integer between 1 - 2^10 */
  1433. int64_t ret = (position / kag_size) * kag_size;
  1434. return ret == position ? ret : ret + kag_size;
  1435. }
  1436. static inline void compute_partition_essence_offset(AVFormatContext *s,
  1437. MXFContext *mxf,
  1438. KLVPacket *klv)
  1439. {
  1440. MXFPartition *cur_part = mxf->current_partition;
  1441. /* for OP1a we compute essence_offset
  1442. * for OPAtom we point essence_offset after the KL
  1443. * (usually op1a_essence_offset + 20 or 25)
  1444. * TODO: for OP1a we could eliminate this entire if statement, always
  1445. * stopping parsing at op1a_essence_offset
  1446. * for OPAtom we still need the actual essence_offset though
  1447. * (the KL's length can vary)
  1448. */
  1449. int64_t op1a_essence_offset =
  1450. round_to_kag(cur_part->this_partition + cur_part->pack_length,
  1451. cur_part->kag_size) +
  1452. round_to_kag(cur_part->header_byte_count, cur_part->kag_size) +
  1453. round_to_kag(cur_part->index_byte_count, cur_part->kag_size);
  1454. if (mxf->op == OPAtom) {
  1455. /* point essence_offset to the actual data
  1456. * OPAtom has all the essence in one big KLV
  1457. */
  1458. cur_part->essence_offset = avio_tell(s->pb);
  1459. cur_part->essence_length = klv->length;
  1460. } else {
  1461. /* NOTE: op1a_essence_offset may be less than to klv.offset
  1462. * (C0023S01.mxf) */
  1463. cur_part->essence_offset = op1a_essence_offset;
  1464. }
  1465. }
  1466. static int mxf_read_header(AVFormatContext *s)
  1467. {
  1468. MXFContext *mxf = s->priv_data;
  1469. KLVPacket klv;
  1470. int64_t essence_offset = 0;
  1471. int ret;
  1472. mxf->last_forward_tell = INT64_MAX;
  1473. if (!mxf_read_sync(s->pb, mxf_header_partition_pack_key, 14)) {
  1474. av_log(s, AV_LOG_ERROR, "could not find header partition pack key\n");
  1475. return AVERROR_INVALIDDATA;
  1476. }
  1477. avio_seek(s->pb, -14, SEEK_CUR);
  1478. mxf->fc = s;
  1479. mxf->run_in = avio_tell(s->pb);
  1480. while (!s->pb->eof_reached) {
  1481. const MXFMetadataReadTableEntry *metadata;
  1482. if (klv_read_packet(&klv, s->pb) < 0) {
  1483. /* EOF - seek to previous partition or stop */
  1484. if(mxf_parse_handle_partition_or_eof(mxf) <= 0)
  1485. break;
  1486. else
  1487. continue;
  1488. }
  1489. PRINT_KEY(s, "read header", klv.key);
  1490. av_dlog(s, "size %"PRIu64" offset %#"PRIx64"\n", klv.length, klv.offset);
  1491. if (IS_KLV_KEY(klv.key, mxf_encrypted_triplet_key) ||
  1492. IS_KLV_KEY(klv.key, mxf_essence_element_key) ||
  1493. IS_KLV_KEY(klv.key, mxf_avid_essence_element_key) ||
  1494. IS_KLV_KEY(klv.key, mxf_system_item_key)) {
  1495. if (!mxf->current_partition->essence_offset) {
  1496. compute_partition_essence_offset(s, mxf, &klv);
  1497. }
  1498. if (!essence_offset)
  1499. essence_offset = klv.offset;
  1500. /* seek to footer, previous partition or stop */
  1501. if (mxf_parse_handle_essence(mxf) <= 0)
  1502. break;
  1503. continue;
  1504. } else if (!memcmp(klv.key, mxf_header_partition_pack_key, 13) &&
  1505. klv.key[13] >= 2 && klv.key[13] <= 4 && mxf->current_partition) {
  1506. /* next partition pack - keep going, seek to previous partition or stop */
  1507. if(mxf_parse_handle_partition_or_eof(mxf) <= 0)
  1508. break;
  1509. }
  1510. for (metadata = mxf_metadata_read_table; metadata->read; metadata++) {
  1511. if (IS_KLV_KEY(klv.key, metadata->key)) {
  1512. int res;
  1513. if (klv.key[5] == 0x53) {
  1514. res = mxf_read_local_tags(mxf, &klv, metadata->read, metadata->ctx_size, metadata->type);
  1515. } else {
  1516. uint64_t next = avio_tell(s->pb) + klv.length;
  1517. res = metadata->read(mxf, s->pb, 0, klv.length, klv.key, klv.offset);
  1518. avio_seek(s->pb, next, SEEK_SET);
  1519. }
  1520. if (res < 0) {
  1521. av_log(s, AV_LOG_ERROR, "error reading header metadata\n");
  1522. return res;
  1523. }
  1524. break;
  1525. }
  1526. }
  1527. if (!metadata->read)
  1528. avio_skip(s->pb, klv.length);
  1529. }
  1530. /* FIXME avoid seek */
  1531. if (!essence_offset) {
  1532. av_log(s, AV_LOG_ERROR, "no essence\n");
  1533. return AVERROR_INVALIDDATA;
  1534. }
  1535. avio_seek(s->pb, essence_offset, SEEK_SET);
  1536. mxf_compute_essence_containers(mxf);
  1537. /* we need to do this before computing the index tables
  1538. * to be able to fill in zero IndexDurations with st->duration */
  1539. if ((ret = mxf_parse_structural_metadata(mxf)) < 0)
  1540. return ret;
  1541. if ((ret = mxf_compute_index_tables(mxf)) < 0)
  1542. return ret;
  1543. if (mxf->nb_index_tables > 1) {
  1544. /* TODO: look up which IndexSID to use via EssenceContainerData */
  1545. av_log(mxf->fc, AV_LOG_INFO, "got %i index tables - only the first one (IndexSID %i) will be used\n",
  1546. mxf->nb_index_tables, mxf->index_tables[0].index_sid);
  1547. } else if (mxf->nb_index_tables == 0 && mxf->op == OPAtom) {
  1548. av_log(mxf->fc, AV_LOG_ERROR, "cannot demux OPAtom without an index\n");
  1549. return AVERROR_INVALIDDATA;
  1550. }
  1551. return 0;
  1552. }
  1553. /**
  1554. * Computes DTS and PTS for the given video packet based on its offset.
  1555. */
  1556. static void mxf_packet_timestamps(MXFContext *mxf, AVPacket *pkt)
  1557. {
  1558. int64_t next_ofs;
  1559. MXFIndexTable *t = &mxf->index_tables[0];
  1560. /* find mxf->current_edit_unit so that the next edit unit starts ahead of pkt->pos */
  1561. for (;;) {
  1562. if (mxf_edit_unit_absolute_offset(mxf, t, mxf->current_edit_unit + 1, NULL, &next_ofs, 0) < 0)
  1563. break;
  1564. if (next_ofs > pkt->pos)
  1565. break;
  1566. mxf->current_edit_unit++;
  1567. }
  1568. if (mxf->current_edit_unit >= t->nb_ptses)
  1569. return;
  1570. pkt->dts = mxf->current_edit_unit + t->first_dts;
  1571. pkt->pts = t->ptses[mxf->current_edit_unit];
  1572. }
  1573. static int mxf_read_packet_old(AVFormatContext *s, AVPacket *pkt)
  1574. {
  1575. KLVPacket klv;
  1576. while (!s->pb->eof_reached) {
  1577. if (klv_read_packet(&klv, s->pb) < 0)
  1578. return -1;
  1579. PRINT_KEY(s, "read packet", klv.key);
  1580. av_dlog(s, "size %"PRIu64" offset %#"PRIx64"\n", klv.length, klv.offset);
  1581. if (IS_KLV_KEY(klv.key, mxf_encrypted_triplet_key)) {
  1582. int res = mxf_decrypt_triplet(s, pkt, &klv);
  1583. if (res < 0) {
  1584. av_log(s, AV_LOG_ERROR, "invalid encoded triplet\n");
  1585. return -1;
  1586. }
  1587. return 0;
  1588. }
  1589. if (IS_KLV_KEY(klv.key, mxf_essence_element_key) ||
  1590. IS_KLV_KEY(klv.key, mxf_avid_essence_element_key)) {
  1591. int index = mxf_get_stream_index(s, &klv);
  1592. if (index < 0) {
  1593. av_log(s, AV_LOG_ERROR, "error getting stream index %d\n", AV_RB32(klv.key+12));
  1594. goto skip;
  1595. }
  1596. if (s->streams[index]->discard == AVDISCARD_ALL)
  1597. goto skip;
  1598. /* check for 8 channels AES3 element */
  1599. if (klv.key[12] == 0x06 && klv.key[13] == 0x01 && klv.key[14] == 0x10) {
  1600. if (mxf_get_d10_aes3_packet(s->pb, s->streams[index], pkt, klv.length) < 0) {
  1601. av_log(s, AV_LOG_ERROR, "error reading D-10 aes3 frame\n");
  1602. return -1;
  1603. }
  1604. } else {
  1605. int ret = av_get_packet(s->pb, pkt, klv.length);
  1606. if (ret < 0)
  1607. return ret;
  1608. }
  1609. pkt->stream_index = index;
  1610. pkt->pos = klv.offset;
  1611. if (s->streams[index]->codec->codec_type == AVMEDIA_TYPE_VIDEO)
  1612. mxf_packet_timestamps(s->priv_data, pkt); /* offset -> EditUnit -> DTS/PTS */
  1613. return 0;
  1614. } else
  1615. skip:
  1616. avio_skip(s->pb, klv.length);
  1617. }
  1618. return AVERROR_EOF;
  1619. }
  1620. static int mxf_read_packet(AVFormatContext *s, AVPacket *pkt)
  1621. {
  1622. MXFContext *mxf = s->priv_data;
  1623. int ret, size;
  1624. int64_t ret64, pos, next_pos;
  1625. AVStream *st;
  1626. MXFIndexTable *t;
  1627. if (mxf->op != OPAtom)
  1628. return mxf_read_packet_old(s, pkt);
  1629. /* OPAtom - clip wrapped demuxing */
  1630. st = s->streams[0];
  1631. t = &mxf->index_tables[0];
  1632. if (mxf->current_edit_unit >= st->duration)
  1633. return AVERROR_EOF;
  1634. if ((ret = mxf_edit_unit_absolute_offset(mxf, t, mxf->current_edit_unit, NULL, &pos, 1)) < 0)
  1635. return ret;
  1636. /* compute size by finding the next edit unit or the end of the essence container
  1637. * not pretty, but it works */
  1638. if ((ret = mxf_edit_unit_absolute_offset(mxf, t, mxf->current_edit_unit + 1, NULL, &next_pos, 0)) < 0 &&
  1639. (next_pos = mxf_essence_container_end(mxf, t->body_sid)) <= 0) {
  1640. av_log(s, AV_LOG_ERROR, "unable to compute the size of the last packet\n");
  1641. return AVERROR_INVALIDDATA;
  1642. }
  1643. if ((size = next_pos - pos) <= 0) {
  1644. av_log(s, AV_LOG_ERROR, "bad size: %i\n", size);
  1645. return AVERROR_INVALIDDATA;
  1646. }
  1647. if ((ret64 = avio_seek(s->pb, pos, SEEK_SET)) < 0)
  1648. return ret64;
  1649. if ((ret = av_get_packet(s->pb, pkt, size)) != size)
  1650. return ret < 0 ? ret : AVERROR_EOF;
  1651. if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO && t->ptses &&
  1652. mxf->current_edit_unit >= 0 && mxf->current_edit_unit < t->nb_ptses) {
  1653. pkt->dts = mxf->current_edit_unit + t->first_dts;
  1654. pkt->pts = t->ptses[mxf->current_edit_unit];
  1655. }
  1656. pkt->stream_index = 0;
  1657. mxf->current_edit_unit++;
  1658. return 0;
  1659. }
  1660. static int mxf_read_close(AVFormatContext *s)
  1661. {
  1662. MXFContext *mxf = s->priv_data;
  1663. MXFIndexTableSegment *seg;
  1664. int i;
  1665. av_freep(&mxf->packages_refs);
  1666. for (i = 0; i < s->nb_streams; i++)
  1667. s->streams[i]->priv_data = NULL;
  1668. for (i = 0; i < mxf->metadata_sets_count; i++) {
  1669. switch (mxf->metadata_sets[i]->type) {
  1670. case MultipleDescriptor:
  1671. av_freep(&((MXFDescriptor *)mxf->metadata_sets[i])->sub_descriptors_refs);
  1672. break;
  1673. case Sequence:
  1674. av_freep(&((MXFSequence *)mxf->metadata_sets[i])->structural_components_refs);
  1675. break;
  1676. case SourcePackage:
  1677. case MaterialPackage:
  1678. av_freep(&((MXFPackage *)mxf->metadata_sets[i])->tracks_refs);
  1679. break;
  1680. case IndexTableSegment:
  1681. seg = (MXFIndexTableSegment *)mxf->metadata_sets[i];
  1682. av_freep(&seg->temporal_offset_entries);
  1683. av_freep(&seg->flag_entries);
  1684. av_freep(&seg->stream_offset_entries);
  1685. break;
  1686. default:
  1687. break;
  1688. }
  1689. av_freep(&mxf->metadata_sets[i]);
  1690. }
  1691. av_freep(&mxf->partitions);
  1692. av_freep(&mxf->metadata_sets);
  1693. av_freep(&mxf->aesc);
  1694. av_freep(&mxf->local_tags);
  1695. for (i = 0; i < mxf->nb_index_tables; i++) {
  1696. av_freep(&mxf->index_tables[i].segments);
  1697. av_freep(&mxf->index_tables[i].ptses);
  1698. av_freep(&mxf->index_tables[i].fake_index);
  1699. }
  1700. av_freep(&mxf->index_tables);
  1701. return 0;
  1702. }
  1703. static int mxf_probe(AVProbeData *p) {
  1704. uint8_t *bufp = p->buf;
  1705. uint8_t *end = p->buf + p->buf_size;
  1706. if (p->buf_size < sizeof(mxf_header_partition_pack_key))
  1707. return 0;
  1708. /* Must skip Run-In Sequence and search for MXF header partition pack key SMPTE 377M 5.5 */
  1709. end -= sizeof(mxf_header_partition_pack_key);
  1710. for (; bufp < end; bufp++) {
  1711. if (IS_KLV_KEY(bufp, mxf_header_partition_pack_key))
  1712. return AVPROBE_SCORE_MAX;
  1713. }
  1714. return 0;
  1715. }
  1716. /* rudimentary byte seek */
  1717. /* XXX: use MXF Index */
  1718. static int mxf_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
  1719. {
  1720. AVStream *st = s->streams[stream_index];
  1721. int64_t seconds;
  1722. MXFContext* mxf = s->priv_data;
  1723. int64_t seekpos;
  1724. int ret;
  1725. MXFIndexTable *t;
  1726. if (mxf->index_tables <= 0) {
  1727. if (!s->bit_rate)
  1728. return AVERROR_INVALIDDATA;
  1729. if (sample_time < 0)
  1730. sample_time = 0;
  1731. seconds = av_rescale(sample_time, st->time_base.num, st->time_base.den);
  1732. if ((ret = avio_seek(s->pb, (s->bit_rate * seconds) >> 3, SEEK_SET)) < 0)
  1733. return ret;
  1734. ff_update_cur_dts(s, st, sample_time);
  1735. } else {
  1736. t = &mxf->index_tables[0];
  1737. /* clamp above zero, else ff_index_search_timestamp() returns negative
  1738. * this also means we allow seeking before the start */
  1739. sample_time = FFMAX(sample_time, 0);
  1740. if (t->fake_index) {
  1741. /* behave as if we have a proper index */
  1742. if ((sample_time = ff_index_search_timestamp(t->fake_index, t->nb_ptses, sample_time, flags)) < 0)
  1743. return sample_time;
  1744. } else {
  1745. /* no IndexEntryArray (one or more CBR segments)
  1746. * make sure we don't seek past the end */
  1747. sample_time = FFMIN(sample_time, st->duration - 1);
  1748. }
  1749. if ((ret = mxf_edit_unit_absolute_offset(mxf, t, sample_time, &sample_time, &seekpos, 1)) << 0)
  1750. return ret;
  1751. ff_update_cur_dts(s, st, sample_time);
  1752. mxf->current_edit_unit = sample_time;
  1753. avio_seek(s->pb, seekpos, SEEK_SET);
  1754. }
  1755. return 0;
  1756. }
  1757. AVInputFormat ff_mxf_demuxer = {
  1758. .name = "mxf",
  1759. .long_name = NULL_IF_CONFIG_SMALL("Material eXchange Format"),
  1760. .priv_data_size = sizeof(MXFContext),
  1761. .read_probe = mxf_probe,
  1762. .read_header = mxf_read_header,
  1763. .read_packet = mxf_read_packet,
  1764. .read_close = mxf_read_close,
  1765. .read_seek = mxf_read_seek,
  1766. };