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.

2157 lines
81KB

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