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.

2270 lines
85KB

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