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.

2120 lines
78KB

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