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