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.

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