]> git.sesse.net Git - ffmpeg/blob - libavformat/mxfdec.c
b63c0c9b1e95df43ba6d96dbb4e7d41875cb2de2
[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,
63     OP1b,
64     OP1c,
65     OP2a,
66     OP2b,
67     OP2c,
68     OP3a,
69     OP3b,
70     OP3c,
71     OPAtom,
72 } MXFOP;
73
74 typedef struct {
75     int closed;
76     int complete;
77     MXFPartitionType type;
78     uint64_t previous_partition;
79     int index_sid;
80     int body_sid;
81 } MXFPartition;
82
83 typedef struct {
84     UID uid;
85     enum MXFMetadataSetType type;
86     UID source_container_ul;
87 } MXFCryptoContext;
88
89 typedef struct {
90     UID uid;
91     enum MXFMetadataSetType type;
92     UID source_package_uid;
93     UID data_definition_ul;
94     int64_t duration;
95     int64_t start_position;
96     int source_track_id;
97 } MXFStructuralComponent;
98
99 typedef struct {
100     UID uid;
101     enum MXFMetadataSetType type;
102     UID data_definition_ul;
103     UID *structural_components_refs;
104     int structural_components_count;
105     int64_t duration;
106 } MXFSequence;
107
108 typedef struct {
109     UID uid;
110     enum MXFMetadataSetType type;
111     MXFSequence *sequence; /* mandatory, and only one */
112     UID sequence_ref;
113     int track_id;
114     uint8_t track_number[4];
115     AVRational edit_rate;
116 } MXFTrack;
117
118 typedef struct {
119     UID uid;
120     enum MXFMetadataSetType type;
121     UID essence_container_ul;
122     UID essence_codec_ul;
123     AVRational sample_rate;
124     AVRational aspect_ratio;
125     int width;
126     int height;
127     int channels;
128     int bits_per_sample;
129     UID *sub_descriptors_refs;
130     int sub_descriptors_count;
131     int linked_track_id;
132     uint8_t *extradata;
133     int extradata_size;
134     enum PixelFormat pix_fmt;
135 } MXFDescriptor;
136
137 typedef struct {
138     UID uid;
139     enum MXFMetadataSetType type;
140 } MXFIndexTableSegment;
141
142 typedef struct {
143     UID uid;
144     enum MXFMetadataSetType type;
145     UID package_uid;
146     UID *tracks_refs;
147     int tracks_count;
148     MXFDescriptor *descriptor; /* only one */
149     UID descriptor_ref;
150 } MXFPackage;
151
152 typedef struct {
153     UID uid;
154     enum MXFMetadataSetType type;
155 } MXFMetadataSet;
156
157 typedef struct {
158     MXFPartition *partitions;
159     unsigned partitions_count;
160     MXFOP op;
161     UID *packages_refs;
162     int packages_count;
163     MXFMetadataSet **metadata_sets;
164     int metadata_sets_count;
165     AVFormatContext *fc;
166     struct AVAES *aesc;
167     uint8_t *local_tags;
168     int local_tags_count;
169     uint64_t footer_partition;
170 } MXFContext;
171
172 enum MXFWrappingScheme {
173     Frame,
174     Clip,
175 };
176
177 typedef int MXFMetadataReadFunc(void *arg, AVIOContext *pb, int tag, int size, UID uid);
178
179 typedef struct {
180     const UID key;
181     MXFMetadataReadFunc *read;
182     int ctx_size;
183     enum MXFMetadataSetType type;
184 } MXFMetadataReadTableEntry;
185
186 /* partial keys to match */
187 static const uint8_t mxf_header_partition_pack_key[]       = { 0x06,0x0e,0x2b,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x02 };
188 static const uint8_t mxf_essence_element_key[]             = { 0x06,0x0e,0x2b,0x34,0x01,0x02,0x01,0x01,0x0d,0x01,0x03,0x01 };
189 static const uint8_t mxf_klv_key[]                         = { 0x06,0x0e,0x2b,0x34 };
190 /* complete keys to match */
191 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 };
192 static const uint8_t mxf_encrypted_triplet_key[]           = { 0x06,0x0e,0x2b,0x34,0x02,0x04,0x01,0x07,0x0d,0x01,0x03,0x01,0x02,0x7e,0x01,0x00 };
193 static const uint8_t mxf_encrypted_essence_container[]     = { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x07,0x0d,0x01,0x03,0x01,0x02,0x0b,0x01,0x00 };
194 static const uint8_t mxf_sony_mpeg4_extradata[]            = { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x01,0x0e,0x06,0x06,0x02,0x02,0x01,0x00,0x00 };
195
196 #define IS_KLV_KEY(x, y) (!memcmp(x, y, sizeof(y)))
197
198 static int64_t klv_decode_ber_length(AVIOContext *pb)
199 {
200     uint64_t size = avio_r8(pb);
201     if (size & 0x80) { /* long form */
202         int bytes_num = size & 0x7f;
203         /* SMPTE 379M 5.3.4 guarantee that bytes_num must not exceed 8 bytes */
204         if (bytes_num > 8)
205             return AVERROR_INVALIDDATA;
206         size = 0;
207         while (bytes_num--)
208             size = size << 8 | avio_r8(pb);
209     }
210     return size;
211 }
212
213 static int mxf_read_sync(AVIOContext *pb, const uint8_t *key, unsigned size)
214 {
215     int i, b;
216     for (i = 0; i < size && !pb->eof_reached; i++) {
217         b = avio_r8(pb);
218         if (b == key[0])
219             i = 0;
220         else if (b != key[i])
221             i = -1;
222     }
223     return i == size;
224 }
225
226 static int klv_read_packet(KLVPacket *klv, AVIOContext *pb)
227 {
228     if (!mxf_read_sync(pb, mxf_klv_key, 4))
229         return AVERROR_INVALIDDATA;
230     klv->offset = avio_tell(pb) - 4;
231     memcpy(klv->key, mxf_klv_key, 4);
232     avio_read(pb, klv->key + 4, 12);
233     klv->length = klv_decode_ber_length(pb);
234     return klv->length == -1 ? -1 : 0;
235 }
236
237 static int mxf_get_stream_index(AVFormatContext *s, KLVPacket *klv)
238 {
239     int i;
240
241     for (i = 0; i < s->nb_streams; i++) {
242         MXFTrack *track = s->streams[i]->priv_data;
243         /* SMPTE 379M 7.3 */
244         if (!memcmp(klv->key + sizeof(mxf_essence_element_key), track->track_number, sizeof(track->track_number)))
245             return i;
246     }
247     /* return 0 if only one stream, for OP Atom files with 0 as track number */
248     return s->nb_streams == 1 ? 0 : -1;
249 }
250
251 /* XXX: use AVBitStreamFilter */
252 static int mxf_get_d10_aes3_packet(AVIOContext *pb, AVStream *st, AVPacket *pkt, int64_t length)
253 {
254     const uint8_t *buf_ptr, *end_ptr;
255     uint8_t *data_ptr;
256     int i;
257
258     if (length > 61444) /* worst case PAL 1920 samples 8 channels */
259         return AVERROR_INVALIDDATA;
260     length = av_get_packet(pb, pkt, length);
261     if (length < 0)
262         return length;
263     data_ptr = pkt->data;
264     end_ptr = pkt->data + length;
265     buf_ptr = pkt->data + 4; /* skip SMPTE 331M header */
266     for (; buf_ptr + st->codec->channels*4 < end_ptr; ) {
267         for (i = 0; i < st->codec->channels; i++) {
268             uint32_t sample = bytestream_get_le32(&buf_ptr);
269             if (st->codec->bits_per_coded_sample == 24)
270                 bytestream_put_le24(&data_ptr, (sample >> 4) & 0xffffff);
271             else
272                 bytestream_put_le16(&data_ptr, (sample >> 12) & 0xffff);
273         }
274         buf_ptr += 32 - st->codec->channels*4; // always 8 channels stored SMPTE 331M
275     }
276     av_shrink_packet(pkt, data_ptr - pkt->data);
277     return 0;
278 }
279
280 static int mxf_decrypt_triplet(AVFormatContext *s, AVPacket *pkt, KLVPacket *klv)
281 {
282     static const uint8_t checkv[16] = {0x43, 0x48, 0x55, 0x4b, 0x43, 0x48, 0x55, 0x4b, 0x43, 0x48, 0x55, 0x4b, 0x43, 0x48, 0x55, 0x4b};
283     MXFContext *mxf = s->priv_data;
284     AVIOContext *pb = s->pb;
285     int64_t end = avio_tell(pb) + klv->length;
286     int64_t size;
287     uint64_t orig_size;
288     uint64_t plaintext_size;
289     uint8_t ivec[16];
290     uint8_t tmpbuf[16];
291     int index;
292
293     if (!mxf->aesc && s->key && s->keylen == 16) {
294         mxf->aesc = av_malloc(av_aes_size);
295         if (!mxf->aesc)
296             return AVERROR(ENOMEM);
297         av_aes_init(mxf->aesc, s->key, 128, 1);
298     }
299     // crypto context
300     avio_skip(pb, klv_decode_ber_length(pb));
301     // plaintext offset
302     klv_decode_ber_length(pb);
303     plaintext_size = avio_rb64(pb);
304     // source klv key
305     klv_decode_ber_length(pb);
306     avio_read(pb, klv->key, 16);
307     if (!IS_KLV_KEY(klv, mxf_essence_element_key))
308         return AVERROR_INVALIDDATA;
309     index = mxf_get_stream_index(s, klv);
310     if (index < 0)
311         return AVERROR_INVALIDDATA;
312     // source size
313     klv_decode_ber_length(pb);
314     orig_size = avio_rb64(pb);
315     if (orig_size < plaintext_size)
316         return AVERROR_INVALIDDATA;
317     // enc. code
318     size = klv_decode_ber_length(pb);
319     if (size < 32 || size - 32 < orig_size)
320         return AVERROR_INVALIDDATA;
321     avio_read(pb, ivec, 16);
322     avio_read(pb, tmpbuf, 16);
323     if (mxf->aesc)
324         av_aes_crypt(mxf->aesc, tmpbuf, tmpbuf, 1, ivec, 1);
325     if (memcmp(tmpbuf, checkv, 16))
326         av_log(s, AV_LOG_ERROR, "probably incorrect decryption key\n");
327     size -= 32;
328     size = av_get_packet(pb, pkt, size);
329     if (size < 0)
330         return size;
331     else if (size < plaintext_size)
332         return AVERROR_INVALIDDATA;
333     size -= plaintext_size;
334     if (mxf->aesc)
335         av_aes_crypt(mxf->aesc, &pkt->data[plaintext_size],
336                      &pkt->data[plaintext_size], size >> 4, ivec, 1);
337     av_shrink_packet(pkt, orig_size);
338     pkt->stream_index = index;
339     avio_skip(pb, end - avio_tell(pb));
340     return 0;
341 }
342
343 static int mxf_read_packet(AVFormatContext *s, AVPacket *pkt)
344 {
345     KLVPacket klv;
346
347     while (!s->pb->eof_reached) {
348         int ret;
349         if (klv_read_packet(&klv, s->pb) < 0)
350             return -1;
351         PRINT_KEY(s, "read packet", klv.key);
352         av_dlog(s, "size %"PRIu64" offset %#"PRIx64"\n", klv.length, klv.offset);
353         if (IS_KLV_KEY(klv.key, mxf_encrypted_triplet_key)) {
354             ret = mxf_decrypt_triplet(s, pkt, &klv);
355             if (ret < 0) {
356                 av_log(s, AV_LOG_ERROR, "invalid encoded triplet\n");
357                 return AVERROR_INVALIDDATA;
358             }
359             return 0;
360         }
361         if (IS_KLV_KEY(klv.key, mxf_essence_element_key)) {
362             int index = mxf_get_stream_index(s, &klv);
363             if (index < 0) {
364                 av_log(s, AV_LOG_ERROR, "error getting stream index %d\n", AV_RB32(klv.key+12));
365                 goto skip;
366             }
367             if (s->streams[index]->discard == AVDISCARD_ALL)
368                 goto skip;
369             /* check for 8 channels AES3 element */
370             if (klv.key[12] == 0x06 && klv.key[13] == 0x01 && klv.key[14] == 0x10) {
371                 if (mxf_get_d10_aes3_packet(s->pb, s->streams[index], pkt, klv.length) < 0) {
372                     av_log(s, AV_LOG_ERROR, "error reading D-10 aes3 frame\n");
373                     return AVERROR_INVALIDDATA;
374                 }
375             } else {
376                 ret = av_get_packet(s->pb, pkt, klv.length);
377                 if (ret < 0)
378                     return ret;
379             }
380             pkt->stream_index = index;
381             pkt->pos = klv.offset;
382             return 0;
383         } else
384         skip:
385             avio_skip(s->pb, klv.length);
386     }
387     return AVERROR_EOF;
388 }
389
390 static int mxf_read_primer_pack(void *arg, AVIOContext *pb, int tag, int size, UID uid)
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)
412 {
413     MXFContext *mxf = arg;
414     MXFPartition *partition;
415     UID op;
416     uint64_t footer_partition;
417
418     if (mxf->partitions_count+1 >= UINT_MAX / sizeof(*mxf->partitions))
419         return AVERROR(ENOMEM);
420
421     mxf->partitions = av_realloc(mxf->partitions, (mxf->partitions_count + 1) * sizeof(*mxf->partitions));
422     if (!mxf->partitions)
423         return AVERROR(ENOMEM);
424
425     partition = &mxf->partitions[mxf->partitions_count++];
426
427     switch(uid[13]) {
428     case 2:
429         partition->type = Header;
430         break;
431     case 3:
432         partition->type = BodyPartition;
433         break;
434     case 4:
435         partition->type = Footer;
436         break;
437     default:
438         av_log(mxf->fc, AV_LOG_ERROR, "unknown partition type %i\n", uid[13]);
439         return AVERROR_INVALIDDATA;
440     }
441
442     /* consider both footers to be closed (there is only Footer and CompleteFooter) */
443     partition->closed = partition->type == Footer || !(uid[14] & 1);
444     partition->complete = uid[14] > 2;
445     avio_skip(pb, 16);
446     partition->previous_partition = avio_rb64(pb);
447     footer_partition = avio_rb64(pb);
448     avio_skip(pb, 16);
449     partition->index_sid = avio_rb32(pb);
450     avio_skip(pb, 8);
451     partition->body_sid = avio_rb32(pb);
452     avio_read(pb, op, sizeof(UID));
453
454     /* some files don'thave FooterPartition set in every partition */
455     if (footer_partition) {
456         if (mxf->footer_partition && mxf->footer_partition != footer_partition) {
457             av_log(mxf->fc, AV_LOG_ERROR, "inconsistent FooterPartition value: %li != %li\n",
458                    mxf->footer_partition, footer_partition);
459         } else {
460             mxf->footer_partition = footer_partition;
461         }
462     }
463
464     av_dlog(mxf->fc, "PartitionPack: PreviousPartition = 0x%lx, "
465             "FooterPartition = 0x%lx, IndexSID = %i, BodySID = %i\n",
466             partition->previous_partition, footer_partition,
467             partition->index_sid, partition->body_sid);
468
469     if      (op[12] == 1 && op[13] == 1) mxf->op = OP1a;
470     else if (op[12] == 1 && op[13] == 2) mxf->op = OP1b;
471     else if (op[12] == 1 && op[13] == 3) mxf->op = OP1c;
472     else if (op[12] == 2 && op[13] == 1) mxf->op = OP2a;
473     else if (op[12] == 2 && op[13] == 2) mxf->op = OP2b;
474     else if (op[12] == 2 && op[13] == 3) mxf->op = OP2c;
475     else if (op[12] == 3 && op[13] == 1) mxf->op = OP3a;
476     else if (op[12] == 3 && op[13] == 2) mxf->op = OP3b;
477     else if (op[12] == 3 && op[13] == 3) mxf->op = OP3c;
478     else if (op[12] == 0x10)             mxf->op = OPAtom;
479     else
480         av_log(mxf->fc, AV_LOG_ERROR, "unknown operational pattern: %02xh %02xh\n", op[12], op[13]);
481
482     return 0;
483 }
484
485 static int mxf_add_metadata_set(MXFContext *mxf, void *metadata_set)
486 {
487     if (mxf->metadata_sets_count+1 >= UINT_MAX / sizeof(*mxf->metadata_sets))
488         return AVERROR(ENOMEM);
489     mxf->metadata_sets = av_realloc(mxf->metadata_sets, (mxf->metadata_sets_count + 1) * sizeof(*mxf->metadata_sets));
490     if (!mxf->metadata_sets)
491         return AVERROR(ENOMEM);
492     mxf->metadata_sets[mxf->metadata_sets_count] = metadata_set;
493     mxf->metadata_sets_count++;
494     return 0;
495 }
496
497 static int mxf_read_cryptographic_context(void *arg, AVIOContext *pb, int tag, int size, UID uid)
498 {
499     MXFCryptoContext *cryptocontext = arg;
500     if (size != 16)
501         return AVERROR_INVALIDDATA;
502     if (IS_KLV_KEY(uid, mxf_crypto_source_container_ul))
503         avio_read(pb, cryptocontext->source_container_ul, 16);
504     return 0;
505 }
506
507 static int mxf_read_content_storage(void *arg, AVIOContext *pb, int tag, int size, UID uid)
508 {
509     MXFContext *mxf = arg;
510     switch (tag) {
511     case 0x1901:
512         mxf->packages_count = avio_rb32(pb);
513         if (mxf->packages_count >= UINT_MAX / sizeof(UID))
514             return AVERROR_INVALIDDATA;
515         mxf->packages_refs = av_malloc(mxf->packages_count * sizeof(UID));
516         if (!mxf->packages_refs)
517             return AVERROR(ENOMEM);
518         avio_skip(pb, 4); /* useless size of objects, always 16 according to specs */
519         avio_read(pb, (uint8_t *)mxf->packages_refs, mxf->packages_count * sizeof(UID));
520         break;
521     }
522     return 0;
523 }
524
525 static int mxf_read_source_clip(void *arg, AVIOContext *pb, int tag, int size, UID uid)
526 {
527     MXFStructuralComponent *source_clip = arg;
528     switch(tag) {
529     case 0x0202:
530         source_clip->duration = avio_rb64(pb);
531         break;
532     case 0x1201:
533         source_clip->start_position = avio_rb64(pb);
534         break;
535     case 0x1101:
536         /* UMID, only get last 16 bytes */
537         avio_skip(pb, 16);
538         avio_read(pb, source_clip->source_package_uid, 16);
539         break;
540     case 0x1102:
541         source_clip->source_track_id = avio_rb32(pb);
542         break;
543     }
544     return 0;
545 }
546
547 static int mxf_read_material_package(void *arg, AVIOContext *pb, int tag, int size, UID uid)
548 {
549     MXFPackage *package = arg;
550     switch(tag) {
551     case 0x4403:
552         package->tracks_count = avio_rb32(pb);
553         if (package->tracks_count >= UINT_MAX / sizeof(UID))
554             return AVERROR_INVALIDDATA;
555         package->tracks_refs = av_malloc(package->tracks_count * sizeof(UID));
556         if (!package->tracks_refs)
557             return AVERROR(ENOMEM);
558         avio_skip(pb, 4); /* useless size of objects, always 16 according to specs */
559         avio_read(pb, (uint8_t *)package->tracks_refs, package->tracks_count * sizeof(UID));
560         break;
561     }
562     return 0;
563 }
564
565 static int mxf_read_track(void *arg, AVIOContext *pb, int tag, int size, UID uid)
566 {
567     MXFTrack *track = arg;
568     switch(tag) {
569     case 0x4801:
570         track->track_id = avio_rb32(pb);
571         break;
572     case 0x4804:
573         avio_read(pb, track->track_number, 4);
574         break;
575     case 0x4B01:
576         track->edit_rate.den = avio_rb32(pb);
577         track->edit_rate.num = avio_rb32(pb);
578         break;
579     case 0x4803:
580         avio_read(pb, track->sequence_ref, 16);
581         break;
582     }
583     return 0;
584 }
585
586 static int mxf_read_sequence(void *arg, AVIOContext *pb, int tag, int size, UID uid)
587 {
588     MXFSequence *sequence = arg;
589     switch(tag) {
590     case 0x0202:
591         sequence->duration = avio_rb64(pb);
592         break;
593     case 0x0201:
594         avio_read(pb, sequence->data_definition_ul, 16);
595         break;
596     case 0x1001:
597         sequence->structural_components_count = avio_rb32(pb);
598         if (sequence->structural_components_count >= UINT_MAX / sizeof(UID))
599             return AVERROR_INVALIDDATA;
600         sequence->structural_components_refs = av_malloc(sequence->structural_components_count * sizeof(UID));
601         if (!sequence->structural_components_refs)
602             return AVERROR(ENOMEM);
603         avio_skip(pb, 4); /* useless size of objects, always 16 according to specs */
604         avio_read(pb, (uint8_t *)sequence->structural_components_refs, sequence->structural_components_count * sizeof(UID));
605         break;
606     }
607     return 0;
608 }
609
610 static int mxf_read_source_package(void *arg, AVIOContext *pb, int tag, int size, UID uid)
611 {
612     MXFPackage *package = arg;
613     switch(tag) {
614     case 0x4403:
615         package->tracks_count = avio_rb32(pb);
616         if (package->tracks_count >= UINT_MAX / sizeof(UID))
617             return AVERROR_INVALIDDATA;
618         package->tracks_refs = av_malloc(package->tracks_count * sizeof(UID));
619         if (!package->tracks_refs)
620             return AVERROR(ENOMEM);
621         avio_skip(pb, 4); /* useless size of objects, always 16 according to specs */
622         avio_read(pb, (uint8_t *)package->tracks_refs, package->tracks_count * sizeof(UID));
623         break;
624     case 0x4401:
625         /* UMID, only get last 16 bytes */
626         avio_skip(pb, 16);
627         avio_read(pb, package->package_uid, 16);
628         break;
629     case 0x4701:
630         avio_read(pb, package->descriptor_ref, 16);
631         break;
632     }
633     return 0;
634 }
635
636 static int mxf_read_index_table_segment(void *arg, AVIOContext *pb, int tag, int size, UID uid)
637 {
638     switch(tag) {
639     case 0x3F05: av_dlog(NULL, "EditUnitByteCount %d\n", avio_rb32(pb)); break;
640     case 0x3F06: av_dlog(NULL, "IndexSID %d\n", avio_rb32(pb)); break;
641     case 0x3F07: av_dlog(NULL, "BodySID %d\n", avio_rb32(pb)); break;
642     case 0x3F0B: av_dlog(NULL, "IndexEditRate %d/%d\n", avio_rb32(pb), avio_rb32(pb)); break;
643     case 0x3F0C: av_dlog(NULL, "IndexStartPosition %"PRIu64"\n", avio_rb64(pb)); break;
644     case 0x3F0D: av_dlog(NULL, "IndexDuration %"PRIu64"\n", avio_rb64(pb)); break;
645     }
646     return 0;
647 }
648
649 static void mxf_read_pixel_layout(AVIOContext *pb, MXFDescriptor *descriptor)
650 {
651     int code, value, ofs = 0;
652     char layout[16] = {0};
653
654     do {
655         code = avio_r8(pb);
656         value = avio_r8(pb);
657         av_dlog(NULL, "pixel layout: code %#x\n", code);
658
659         if (ofs < 16) {
660             layout[ofs++] = code;
661             layout[ofs++] = value;
662         }
663     } while (code != 0); /* SMPTE 377M E.2.46 */
664
665     ff_mxf_decode_pixel_layout(layout, &descriptor->pix_fmt);
666 }
667
668 static int mxf_read_generic_descriptor(void *arg, AVIOContext *pb, int tag, int size, UID uid)
669 {
670     MXFDescriptor *descriptor = arg;
671     switch(tag) {
672     case 0x3F01:
673         descriptor->sub_descriptors_count = avio_rb32(pb);
674         if (descriptor->sub_descriptors_count >= UINT_MAX / sizeof(UID))
675             return AVERROR_INVALIDDATA;
676         descriptor->sub_descriptors_refs = av_malloc(descriptor->sub_descriptors_count * sizeof(UID));
677         if (!descriptor->sub_descriptors_refs)
678             return AVERROR(ENOMEM);
679         avio_skip(pb, 4); /* useless size of objects, always 16 according to specs */
680         avio_read(pb, (uint8_t *)descriptor->sub_descriptors_refs, descriptor->sub_descriptors_count * sizeof(UID));
681         break;
682     case 0x3004:
683         avio_read(pb, descriptor->essence_container_ul, 16);
684         break;
685     case 0x3006:
686         descriptor->linked_track_id = avio_rb32(pb);
687         break;
688     case 0x3201: /* PictureEssenceCoding */
689         avio_read(pb, descriptor->essence_codec_ul, 16);
690         break;
691     case 0x3203:
692         descriptor->width = avio_rb32(pb);
693         break;
694     case 0x3202:
695         descriptor->height = avio_rb32(pb);
696         break;
697     case 0x320E:
698         descriptor->aspect_ratio.num = avio_rb32(pb);
699         descriptor->aspect_ratio.den = avio_rb32(pb);
700         break;
701     case 0x3D03:
702         descriptor->sample_rate.num = avio_rb32(pb);
703         descriptor->sample_rate.den = avio_rb32(pb);
704         break;
705     case 0x3D06: /* SoundEssenceCompression */
706         avio_read(pb, descriptor->essence_codec_ul, 16);
707         break;
708     case 0x3D07:
709         descriptor->channels = avio_rb32(pb);
710         break;
711     case 0x3D01:
712         descriptor->bits_per_sample = avio_rb32(pb);
713         break;
714     case 0x3401:
715         mxf_read_pixel_layout(pb, descriptor);
716         break;
717     default:
718         /* Private uid used by SONY C0023S01.mxf */
719         if (IS_KLV_KEY(uid, mxf_sony_mpeg4_extradata)) {
720             descriptor->extradata = av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE);
721             if (!descriptor->extradata)
722                 return AVERROR(ENOMEM);
723             descriptor->extradata_size = size;
724             avio_read(pb, descriptor->extradata, size);
725         }
726         break;
727     }
728     return 0;
729 }
730
731 /*
732  * Match an uid independently of the version byte and up to len common bytes
733  * Returns: boolean
734  */
735 static int mxf_match_uid(const UID key, const UID uid, int len)
736 {
737     int i;
738     for (i = 0; i < len; i++) {
739         if (i != 7 && key[i] != uid[i])
740             return 0;
741     }
742     return 1;
743 }
744
745 static const MXFCodecUL *mxf_get_codec_ul(const MXFCodecUL *uls, UID *uid)
746 {
747     while (uls->uid[0]) {
748         if(mxf_match_uid(uls->uid, *uid, uls->matching_len))
749             break;
750         uls++;
751     }
752     return uls;
753 }
754
755 static void *mxf_resolve_strong_ref(MXFContext *mxf, UID *strong_ref, enum MXFMetadataSetType type)
756 {
757     int i;
758
759     if (!strong_ref)
760         return NULL;
761     for (i = 0; i < mxf->metadata_sets_count; i++) {
762         if (!memcmp(*strong_ref, mxf->metadata_sets[i]->uid, 16) &&
763             (type == AnyType || mxf->metadata_sets[i]->type == type)) {
764             return mxf->metadata_sets[i];
765         }
766     }
767     return NULL;
768 }
769
770 static const MXFCodecUL mxf_essence_container_uls[] = {
771     // video essence container uls
772     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x02,0x0D,0x01,0x03,0x01,0x02,0x04,0x60,0x01 }, 14, CODEC_ID_MPEG2VIDEO }, /* MPEG-ES Frame wrapped */
773     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x0D,0x01,0x03,0x01,0x02,0x02,0x41,0x01 }, 14,    CODEC_ID_DVVIDEO }, /* DV 625 25mbps */
774     // sound essence container uls
775     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x0D,0x01,0x03,0x01,0x02,0x06,0x01,0x00 }, 14, CODEC_ID_PCM_S16LE }, /* BWF Frame wrapped */
776     { { 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 */
777     { { 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 */
778     { { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 },  0,      CODEC_ID_NONE },
779 };
780
781 static int mxf_parse_structural_metadata(MXFContext *mxf)
782 {
783     MXFPackage *material_package = NULL;
784     MXFPackage *temp_package = NULL;
785     int i, j, k;
786
787     av_dlog(mxf->fc, "metadata sets count %d\n", mxf->metadata_sets_count);
788     /* TODO: handle multiple material packages (OP3x) */
789     for (i = 0; i < mxf->packages_count; i++) {
790         material_package = mxf_resolve_strong_ref(mxf, &mxf->packages_refs[i], MaterialPackage);
791         if (material_package) break;
792     }
793     if (!material_package) {
794         av_log(mxf->fc, AV_LOG_ERROR, "no material package found\n");
795         return AVERROR_INVALIDDATA;
796     }
797
798     for (i = 0; i < material_package->tracks_count; i++) {
799         MXFPackage *source_package = NULL;
800         MXFTrack *material_track = NULL;
801         MXFTrack *source_track = NULL;
802         MXFTrack *temp_track = NULL;
803         MXFDescriptor *descriptor = NULL;
804         MXFStructuralComponent *component = NULL;
805         UID *essence_container_ul = NULL;
806         const MXFCodecUL *codec_ul = NULL;
807         const MXFCodecUL *container_ul = NULL;
808         AVStream *st;
809
810         if (!(material_track = mxf_resolve_strong_ref(mxf, &material_package->tracks_refs[i], Track))) {
811             av_log(mxf->fc, AV_LOG_ERROR, "could not resolve material track strong ref\n");
812             continue;
813         }
814
815         if (!(material_track->sequence = mxf_resolve_strong_ref(mxf, &material_track->sequence_ref, Sequence))) {
816             av_log(mxf->fc, AV_LOG_ERROR, "could not resolve material track sequence strong ref\n");
817             continue;
818         }
819
820         /* TODO: handle multiple source clips */
821         for (j = 0; j < material_track->sequence->structural_components_count; j++) {
822             /* TODO: handle timecode component */
823             component = mxf_resolve_strong_ref(mxf, &material_track->sequence->structural_components_refs[j], SourceClip);
824             if (!component)
825                 continue;
826
827             for (k = 0; k < mxf->packages_count; k++) {
828                 temp_package = mxf_resolve_strong_ref(mxf, &mxf->packages_refs[k], SourcePackage);
829                 if (!temp_package)
830                     continue;
831                 if (!memcmp(temp_package->package_uid, component->source_package_uid, 16)) {
832                     source_package = temp_package;
833                     break;
834                 }
835             }
836             if (!source_package) {
837                 av_log(mxf->fc, AV_LOG_ERROR, "material track %d: no corresponding source package found\n", material_track->track_id);
838                 break;
839             }
840             for (k = 0; k < source_package->tracks_count; k++) {
841                 if (!(temp_track = mxf_resolve_strong_ref(mxf, &source_package->tracks_refs[k], Track))) {
842                     av_log(mxf->fc, AV_LOG_ERROR, "could not resolve source track strong ref\n");
843                     return AVERROR_INVALIDDATA;
844                 }
845                 if (temp_track->track_id == component->source_track_id) {
846                     source_track = temp_track;
847                     break;
848                 }
849             }
850             if (!source_track) {
851                 av_log(mxf->fc, AV_LOG_ERROR, "material track %d: no corresponding source track found\n", material_track->track_id);
852                 break;
853             }
854         }
855         if (!source_track)
856             continue;
857
858         st = avformat_new_stream(mxf->fc, NULL);
859         if (!st) {
860             av_log(mxf->fc, AV_LOG_ERROR, "could not allocate stream\n");
861             return AVERROR(ENOMEM);
862         }
863         st->id = source_track->track_id;
864         st->priv_data = source_track;
865         st->duration = component->duration;
866         if (st->duration == -1)
867             st->duration = AV_NOPTS_VALUE;
868         st->start_time = component->start_position;
869         avpriv_set_pts_info(st, 64, material_track->edit_rate.num, material_track->edit_rate.den);
870
871         if (!(source_track->sequence = mxf_resolve_strong_ref(mxf, &source_track->sequence_ref, Sequence))) {
872             av_log(mxf->fc, AV_LOG_ERROR, "could not resolve source track sequence strong ref\n");
873             return AVERROR_INVALIDDATA;
874         }
875
876         PRINT_KEY(mxf->fc, "data definition   ul", source_track->sequence->data_definition_ul);
877         codec_ul = mxf_get_codec_ul(ff_mxf_data_definition_uls, &source_track->sequence->data_definition_ul);
878         st->codec->codec_type = codec_ul->id;
879
880         source_package->descriptor = mxf_resolve_strong_ref(mxf, &source_package->descriptor_ref, AnyType);
881         if (source_package->descriptor) {
882             if (source_package->descriptor->type == MultipleDescriptor) {
883                 for (j = 0; j < source_package->descriptor->sub_descriptors_count; j++) {
884                     MXFDescriptor *sub_descriptor = mxf_resolve_strong_ref(mxf, &source_package->descriptor->sub_descriptors_refs[j], Descriptor);
885
886                     if (!sub_descriptor) {
887                         av_log(mxf->fc, AV_LOG_ERROR, "could not resolve sub descriptor strong ref\n");
888                         continue;
889                     }
890                     if (sub_descriptor->linked_track_id == source_track->track_id) {
891                         descriptor = sub_descriptor;
892                         break;
893                     }
894                 }
895             } else if (source_package->descriptor->type == Descriptor)
896                 descriptor = source_package->descriptor;
897         }
898         if (!descriptor) {
899             av_log(mxf->fc, AV_LOG_INFO, "source track %d: stream %d, no descriptor found\n", source_track->track_id, st->index);
900             continue;
901         }
902         PRINT_KEY(mxf->fc, "essence codec     ul", descriptor->essence_codec_ul);
903         PRINT_KEY(mxf->fc, "essence container ul", descriptor->essence_container_ul);
904         essence_container_ul = &descriptor->essence_container_ul;
905         /* HACK: replacing the original key with mxf_encrypted_essence_container
906          * is not allowed according to s429-6, try to find correct information anyway */
907         if (IS_KLV_KEY(essence_container_ul, mxf_encrypted_essence_container)) {
908             av_log(mxf->fc, AV_LOG_INFO, "broken encrypted mxf file\n");
909             for (k = 0; k < mxf->metadata_sets_count; k++) {
910                 MXFMetadataSet *metadata = mxf->metadata_sets[k];
911                 if (metadata->type == CryptoContext) {
912                     essence_container_ul = &((MXFCryptoContext *)metadata)->source_container_ul;
913                     break;
914                 }
915             }
916         }
917         /* TODO: drop PictureEssenceCoding and SoundEssenceCompression, only check EssenceContainer */
918         codec_ul = mxf_get_codec_ul(ff_mxf_codec_uls, &descriptor->essence_codec_ul);
919         st->codec->codec_id = codec_ul->id;
920         if (descriptor->extradata) {
921             st->codec->extradata = descriptor->extradata;
922             st->codec->extradata_size = descriptor->extradata_size;
923         }
924         if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
925             container_ul = mxf_get_codec_ul(mxf_essence_container_uls, essence_container_ul);
926             if (st->codec->codec_id == CODEC_ID_NONE)
927                 st->codec->codec_id = container_ul->id;
928             st->codec->width = descriptor->width;
929             st->codec->height = descriptor->height;
930             if (st->codec->codec_id == CODEC_ID_RAWVIDEO)
931                 st->codec->pix_fmt = descriptor->pix_fmt;
932             st->need_parsing = AVSTREAM_PARSE_HEADERS;
933         } else if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
934             container_ul = mxf_get_codec_ul(mxf_essence_container_uls, essence_container_ul);
935             if (st->codec->codec_id == CODEC_ID_NONE)
936                 st->codec->codec_id = container_ul->id;
937             st->codec->channels = descriptor->channels;
938             st->codec->bits_per_coded_sample = descriptor->bits_per_sample;
939             st->codec->sample_rate = descriptor->sample_rate.num / descriptor->sample_rate.den;
940             /* TODO: implement CODEC_ID_RAWAUDIO */
941             if (st->codec->codec_id == CODEC_ID_PCM_S16LE) {
942                 if (descriptor->bits_per_sample > 16 && descriptor->bits_per_sample <= 24)
943                     st->codec->codec_id = CODEC_ID_PCM_S24LE;
944                 else if (descriptor->bits_per_sample == 32)
945                     st->codec->codec_id = CODEC_ID_PCM_S32LE;
946             } else if (st->codec->codec_id == CODEC_ID_PCM_S16BE) {
947                 if (descriptor->bits_per_sample > 16 && descriptor->bits_per_sample <= 24)
948                     st->codec->codec_id = CODEC_ID_PCM_S24BE;
949                 else if (descriptor->bits_per_sample == 32)
950                     st->codec->codec_id = CODEC_ID_PCM_S32BE;
951             } else if (st->codec->codec_id == CODEC_ID_MP2) {
952                 st->need_parsing = AVSTREAM_PARSE_FULL;
953             }
954         }
955         if (st->codec->codec_type != AVMEDIA_TYPE_DATA && (*essence_container_ul)[15] > 0x01) {
956             av_log(mxf->fc, AV_LOG_WARNING, "only frame wrapped mappings are correctly supported\n");
957             st->need_parsing = AVSTREAM_PARSE_FULL;
958         }
959     }
960     return 0;
961 }
962
963 static const MXFMetadataReadTableEntry mxf_metadata_read_table[] = {
964     { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x05,0x01,0x00 }, mxf_read_primer_pack },
965     { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x02,0x01,0x00 }, mxf_read_partition_pack },
966     { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x02,0x02,0x00 }, mxf_read_partition_pack },
967     { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x02,0x03,0x00 }, mxf_read_partition_pack },
968     { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x02,0x04,0x00 }, mxf_read_partition_pack },
969     { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x03,0x01,0x00 }, mxf_read_partition_pack },
970     { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x03,0x02,0x00 }, mxf_read_partition_pack },
971     { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x03,0x03,0x00 }, mxf_read_partition_pack },
972     { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x03,0x04,0x00 }, mxf_read_partition_pack },
973     { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x04,0x02,0x00 }, mxf_read_partition_pack },
974     { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x04,0x04,0x00 }, mxf_read_partition_pack },
975     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x18,0x00 }, mxf_read_content_storage, 0, AnyType },
976     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x37,0x00 }, mxf_read_source_package, sizeof(MXFPackage), SourcePackage },
977     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x36,0x00 }, mxf_read_material_package, sizeof(MXFPackage), MaterialPackage },
978     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x0F,0x00 }, mxf_read_sequence, sizeof(MXFSequence), Sequence },
979     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x11,0x00 }, mxf_read_source_clip, sizeof(MXFStructuralComponent), SourceClip },
980     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x44,0x00 }, mxf_read_generic_descriptor, sizeof(MXFDescriptor), MultipleDescriptor },
981     { { 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 */
982     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x28,0x00 }, mxf_read_generic_descriptor, sizeof(MXFDescriptor), Descriptor }, /* CDCI */
983     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x29,0x00 }, mxf_read_generic_descriptor, sizeof(MXFDescriptor), Descriptor }, /* RGBA */
984     { { 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 */
985     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x48,0x00 }, mxf_read_generic_descriptor, sizeof(MXFDescriptor), Descriptor }, /* Wave */
986     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x47,0x00 }, mxf_read_generic_descriptor, sizeof(MXFDescriptor), Descriptor }, /* AES3 */
987     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x3A,0x00 }, mxf_read_track, sizeof(MXFTrack), Track }, /* Static Track */
988     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x3B,0x00 }, mxf_read_track, sizeof(MXFTrack), Track }, /* Generic Track */
989     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x04,0x01,0x02,0x02,0x00,0x00 }, mxf_read_cryptographic_context, sizeof(MXFCryptoContext), CryptoContext },
990     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x10,0x01,0x00 }, mxf_read_index_table_segment, sizeof(MXFIndexTableSegment), IndexTableSegment },
991     { { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }, NULL, 0, AnyType },
992 };
993
994 static int mxf_read_local_tags(MXFContext *mxf, KLVPacket *klv, MXFMetadataReadFunc *read_child, int ctx_size, enum MXFMetadataSetType type)
995 {
996     AVIOContext *pb = mxf->fc->pb;
997     MXFMetadataSet *ctx = ctx_size ? av_mallocz(ctx_size) : mxf;
998     uint64_t klv_end = avio_tell(pb) + klv->length;
999
1000     if (!ctx)
1001         return AVERROR(ENOMEM);
1002     while (avio_tell(pb) + 4 < klv_end) {
1003         int ret;
1004         int tag = avio_rb16(pb);
1005         int size = avio_rb16(pb); /* KLV specified by 0x53 */
1006         uint64_t next = avio_tell(pb) + size;
1007         UID uid = {0};
1008
1009         av_dlog(mxf->fc, "local tag %#04x size %d\n", tag, size);
1010         if (!size) { /* ignore empty tag, needed for some files with empty UMID tag */
1011             av_log(mxf->fc, AV_LOG_ERROR, "local tag %#04x with 0 size\n", tag);
1012             continue;
1013         }
1014         if (tag > 0x7FFF) { /* dynamic tag */
1015             int i;
1016             for (i = 0; i < mxf->local_tags_count; i++) {
1017                 int local_tag = AV_RB16(mxf->local_tags+i*18);
1018                 if (local_tag == tag) {
1019                     memcpy(uid, mxf->local_tags+i*18+2, 16);
1020                     av_dlog(mxf->fc, "local tag %#04x\n", local_tag);
1021                     PRINT_KEY(mxf->fc, "uid", uid);
1022                 }
1023             }
1024         }
1025         if (ctx_size && tag == 0x3C0A)
1026             avio_read(pb, ctx->uid, 16);
1027         else if ((ret = read_child(ctx, pb, tag, size, uid)) < 0)
1028             return ret;
1029
1030         avio_seek(pb, next, SEEK_SET);
1031     }
1032     if (ctx_size) ctx->type = type;
1033     return ctx_size ? mxf_add_metadata_set(mxf, ctx) : 0;
1034 }
1035
1036 static int mxf_read_header(AVFormatContext *s, AVFormatParameters *ap)
1037 {
1038     MXFContext *mxf = s->priv_data;
1039     KLVPacket klv;
1040
1041     if (!mxf_read_sync(s->pb, mxf_header_partition_pack_key, 14)) {
1042         av_log(s, AV_LOG_ERROR, "could not find header partition pack key\n");
1043         return AVERROR_INVALIDDATA;
1044     }
1045     avio_seek(s->pb, -14, SEEK_CUR);
1046     mxf->fc = s;
1047     while (!s->pb->eof_reached) {
1048         int ret;
1049         const MXFMetadataReadTableEntry *metadata;
1050
1051         if ((ret = klv_read_packet(&klv, s->pb)) < 0)
1052             return ret;
1053         PRINT_KEY(s, "read header", klv.key);
1054         av_dlog(s, "size %"PRIu64" offset %#"PRIx64"\n", klv.length, klv.offset);
1055         if (IS_KLV_KEY(klv.key, mxf_encrypted_triplet_key) ||
1056             IS_KLV_KEY(klv.key, mxf_essence_element_key)) {
1057             /* FIXME avoid seek */
1058             avio_seek(s->pb, klv.offset, SEEK_SET);
1059             break;
1060         }
1061
1062         for (metadata = mxf_metadata_read_table; metadata->read; metadata++) {
1063             if (IS_KLV_KEY(klv.key, metadata->key)) {
1064                 int res;
1065                 if (klv.key[5] == 0x53) {
1066                     res = mxf_read_local_tags(mxf, &klv, metadata->read, metadata->ctx_size, metadata->type);
1067                 } else {
1068                     uint64_t next = avio_tell(s->pb) + klv.length;
1069                     res = metadata->read(mxf, s->pb, 0, 0, klv.key);
1070                     avio_seek(s->pb, next, SEEK_SET);
1071                 }
1072                 if (res < 0) {
1073                     av_log(s, AV_LOG_ERROR, "error reading header metadata\n");
1074                     return res;
1075                 }
1076                 break;
1077             }
1078         }
1079         if (!metadata->read)
1080             avio_skip(s->pb, klv.length);
1081     }
1082     return mxf_parse_structural_metadata(mxf);
1083 }
1084
1085 static int mxf_read_close(AVFormatContext *s)
1086 {
1087     MXFContext *mxf = s->priv_data;
1088     int i;
1089
1090     av_freep(&mxf->packages_refs);
1091
1092     for (i = 0; i < s->nb_streams; i++)
1093         s->streams[i]->priv_data = NULL;
1094
1095     for (i = 0; i < mxf->metadata_sets_count; i++) {
1096         switch (mxf->metadata_sets[i]->type) {
1097         case MultipleDescriptor:
1098             av_freep(&((MXFDescriptor *)mxf->metadata_sets[i])->sub_descriptors_refs);
1099             break;
1100         case Sequence:
1101             av_freep(&((MXFSequence *)mxf->metadata_sets[i])->structural_components_refs);
1102             break;
1103         case SourcePackage:
1104         case MaterialPackage:
1105             av_freep(&((MXFPackage *)mxf->metadata_sets[i])->tracks_refs);
1106             break;
1107         default:
1108             break;
1109         }
1110         av_freep(&mxf->metadata_sets[i]);
1111     }
1112     av_freep(&mxf->partitions);
1113     av_freep(&mxf->metadata_sets);
1114     av_freep(&mxf->aesc);
1115     av_freep(&mxf->local_tags);
1116     return 0;
1117 }
1118
1119 static int mxf_probe(AVProbeData *p) {
1120     uint8_t *bufp = p->buf;
1121     uint8_t *end = p->buf + p->buf_size;
1122
1123     if (p->buf_size < sizeof(mxf_header_partition_pack_key))
1124         return 0;
1125
1126     /* Must skip Run-In Sequence and search for MXF header partition pack key SMPTE 377M 5.5 */
1127     end -= sizeof(mxf_header_partition_pack_key);
1128     for (; bufp < end; bufp++) {
1129         if (IS_KLV_KEY(bufp, mxf_header_partition_pack_key))
1130             return AVPROBE_SCORE_MAX;
1131     }
1132     return 0;
1133 }
1134
1135 /* rudimentary byte seek */
1136 /* XXX: use MXF Index */
1137 static int mxf_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
1138 {
1139     AVStream *st = s->streams[stream_index];
1140     int64_t seconds;
1141     int ret;
1142
1143     if (!s->bit_rate)
1144         return AVERROR_INVALIDDATA;
1145     if (sample_time < 0)
1146         sample_time = 0;
1147     seconds = av_rescale(sample_time, st->time_base.num, st->time_base.den);
1148
1149     if ((ret = avio_seek(s->pb, (s->bit_rate * seconds) >> 3, SEEK_SET)) < 0)
1150         return ret;
1151     ff_update_cur_dts(s, st, sample_time);
1152     return 0;
1153 }
1154
1155 AVInputFormat ff_mxf_demuxer = {
1156     .name           = "mxf",
1157     .long_name      = NULL_IF_CONFIG_SMALL("Material eXchange Format"),
1158     .priv_data_size = sizeof(MXFContext),
1159     .read_probe     = mxf_probe,
1160     .read_header    = mxf_read_header,
1161     .read_packet    = mxf_read_packet,
1162     .read_close     = mxf_read_close,
1163     .read_seek      = mxf_read_seek,
1164 };