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.

2319 lines
87KB

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