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.

2288 lines
86KB

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