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.

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