]> git.sesse.net Git - ffmpeg/blob - libavformat/mxf.c
cosmetics: alignment of the codec_bmp_tags table
[ffmpeg] / libavformat / mxf.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 FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /*
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 "avformat.h"
49 #include "aes.h"
50 #include "bytestream.h"
51
52 typedef uint8_t UID[16];
53
54 enum MXFMetadataSetType {
55     AnyType,
56     MaterialPackage,
57     SourcePackage,
58     SourceClip,
59     TimecodeComponent,
60     Sequence,
61     MultipleDescriptor,
62     Descriptor,
63     Track,
64     CryptoContext,
65 };
66
67 typedef struct {
68     UID uid;
69     enum MXFMetadataSetType type;
70     UID source_container_ul;
71 } MXFCryptoContext;
72
73 typedef struct {
74     UID uid;
75     enum MXFMetadataSetType type;
76     UID source_package_uid;
77     UID data_definition_ul;
78     int64_t duration;
79     int64_t start_position;
80     int source_track_id;
81 } MXFStructuralComponent;
82
83 typedef struct {
84     UID uid;
85     enum MXFMetadataSetType type;
86     UID data_definition_ul;
87     UID *structural_components_refs;
88     int structural_components_count;
89     int64_t duration;
90 } MXFSequence;
91
92 typedef struct {
93     UID uid;
94     enum MXFMetadataSetType type;
95     MXFSequence *sequence; /* mandatory, and only one */
96     UID sequence_ref;
97     int track_id;
98     uint8_t track_number[4];
99     AVRational edit_rate;
100 } MXFTrack;
101
102 typedef struct {
103     UID uid;
104     enum MXFMetadataSetType type;
105     UID essence_container_ul;
106     UID essence_codec_ul;
107     AVRational sample_rate;
108     AVRational aspect_ratio;
109     int width;
110     int height;
111     int channels;
112     int bits_per_sample;
113     UID *sub_descriptors_refs;
114     int sub_descriptors_count;
115     int linked_track_id;
116     uint8_t *extradata;
117     int extradata_size;
118 } MXFDescriptor;
119
120 typedef struct {
121     UID uid;
122     enum MXFMetadataSetType type;
123     UID package_uid;
124     UID *tracks_refs;
125     int tracks_count;
126     MXFDescriptor *descriptor; /* only one */
127     UID descriptor_ref;
128 } MXFPackage;
129
130 typedef struct {
131     UID uid;
132     enum MXFMetadataSetType type;
133 } MXFMetadataSet;
134
135 typedef struct {
136     UID *packages_refs;
137     int packages_count;
138     MXFMetadataSet **metadata_sets;
139     int metadata_sets_count;
140     AVFormatContext *fc;
141     struct AVAES *aesc;
142     uint8_t *local_tags;
143     int local_tags_count;
144 } MXFContext;
145
146 typedef struct {
147     UID key;
148     offset_t offset;
149     uint64_t length;
150 } KLVPacket;
151
152 enum MXFWrappingScheme {
153     Frame,
154     Clip,
155 };
156
157 typedef struct {
158     UID uid;
159     unsigned matching_len;
160     enum CodecID id;
161 } MXFCodecUL;
162
163 typedef struct {
164     UID uid;
165     enum CodecType type;
166 } MXFDataDefinitionUL;
167
168 typedef struct {
169     const UID key;
170     int (*read)();
171     int ctx_size;
172     enum MXFMetadataSetType type;
173 } MXFMetadataReadTableEntry;
174
175 /* partial keys to match */
176 static const uint8_t mxf_header_partition_pack_key[]       = { 0x06,0x0e,0x2b,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x02 };
177 static const uint8_t mxf_essence_element_key[]             = { 0x06,0x0e,0x2b,0x34,0x01,0x02,0x01,0x01,0x0d,0x01,0x03,0x01 };
178 static const uint8_t mxf_klv_key[]                         = { 0x06,0x0e,0x2b,0x34 };
179 /* complete keys to match */
180 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 };
181 static const uint8_t mxf_encrypted_triplet_key[]           = { 0x06,0x0e,0x2b,0x34,0x02,0x04,0x01,0x07,0x0d,0x01,0x03,0x01,0x02,0x7e,0x01,0x00 };
182 static const uint8_t mxf_encrypted_essence_container[]     = { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x07,0x0d,0x01,0x03,0x01,0x02,0x0b,0x01,0x00 };
183 static const uint8_t mxf_sony_mpeg4_extradata[]            = { 0x06,0x0e,0x2b,0x34,0x04,0x01,0x01,0x01,0x0e,0x06,0x06,0x02,0x02,0x01,0x00,0x00 };
184
185 #define IS_KLV_KEY(x, y) (!memcmp(x, y, sizeof(y)))
186
187 #define PRINT_KEY(pc, s, x) dprintf(pc, "%s %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X\n", s, \
188                              (x)[0], (x)[1], (x)[2], (x)[3], (x)[4], (x)[5], (x)[6], (x)[7], (x)[8], (x)[9], (x)[10], (x)[11], (x)[12], (x)[13], (x)[14], (x)[15])
189
190 static int64_t klv_decode_ber_length(ByteIOContext *pb)
191 {
192     uint64_t size = get_byte(pb);
193     if (size & 0x80) { /* long form */
194         int bytes_num = size & 0x7f;
195         /* SMPTE 379M 5.3.4 guarantee that bytes_num must not exceed 8 bytes */
196         if (bytes_num > 8)
197             return -1;
198         size = 0;
199         while (bytes_num--)
200             size = size << 8 | get_byte(pb);
201     }
202     return size;
203 }
204
205 static int mxf_read_sync(ByteIOContext *pb, const uint8_t *key, unsigned size)
206 {
207     int i, b;
208     for (i = 0; i < size && !url_feof(pb); i++) {
209         b = get_byte(pb);
210         if (b == key[0])
211             i = 0;
212         else if (b != key[i])
213             i = -1;
214     }
215     return i == size;
216 }
217
218 static int klv_read_packet(KLVPacket *klv, ByteIOContext *pb)
219 {
220     if (!mxf_read_sync(pb, mxf_klv_key, 4))
221         return -1;
222     klv->offset = url_ftell(pb) - 4;
223     memcpy(klv->key, mxf_klv_key, 4);
224     get_buffer(pb, klv->key + 4, 12);
225     klv->length = klv_decode_ber_length(pb);
226     return klv->length == -1 ? -1 : 0;
227 }
228
229 static int mxf_get_stream_index(AVFormatContext *s, KLVPacket *klv)
230 {
231     int i;
232
233     for (i = 0; i < s->nb_streams; i++) {
234         MXFTrack *track = s->streams[i]->priv_data;
235         /* SMPTE 379M 7.3 */
236         if (!memcmp(klv->key + sizeof(mxf_essence_element_key), track->track_number, sizeof(track->track_number)))
237             return i;
238     }
239     /* return 0 if only one stream, for OP Atom files with 0 as track number */
240     return s->nb_streams == 1 ? 0 : -1;
241 }
242
243 /* XXX: use AVBitStreamFilter */
244 static int mxf_get_d10_aes3_packet(ByteIOContext *pb, AVStream *st, AVPacket *pkt, int64_t length)
245 {
246     uint8_t buffer[61444];
247     const uint8_t *buf_ptr, *end_ptr;
248     uint8_t *data_ptr;
249     int i;
250
251     if (length > 61444) /* worst case PAL 1920 samples 8 channels */
252         return -1;
253     get_buffer(pb, buffer, length);
254     av_new_packet(pkt, length);
255     data_ptr = pkt->data;
256     end_ptr = buffer + length;
257     buf_ptr = buffer + 4; /* skip SMPTE 331M header */
258     for (; buf_ptr < end_ptr; ) {
259         for (i = 0; i < st->codec->channels; i++) {
260             uint32_t sample = bytestream_get_le32(&buf_ptr);
261             if (st->codec->bits_per_sample == 24)
262                 bytestream_put_le24(&data_ptr, (sample >> 4) & 0xffffff);
263             else
264                 bytestream_put_le16(&data_ptr, (sample >> 12) & 0xffff);
265         }
266         buf_ptr += 32 - st->codec->channels*4; // always 8 channels stored SMPTE 331M
267     }
268     pkt->size = data_ptr - pkt->data;
269     return 0;
270 }
271
272 static int mxf_decrypt_triplet(AVFormatContext *s, AVPacket *pkt, KLVPacket *klv)
273 {
274     static const uint8_t checkv[16] = {0x43, 0x48, 0x55, 0x4b, 0x43, 0x48, 0x55, 0x4b, 0x43, 0x48, 0x55, 0x4b, 0x43, 0x48, 0x55, 0x4b};
275     MXFContext *mxf = s->priv_data;
276     ByteIOContext *pb = s->pb;
277     offset_t end = url_ftell(pb) + klv->length;
278     uint64_t size;
279     uint64_t orig_size;
280     uint64_t plaintext_size;
281     uint8_t ivec[16];
282     uint8_t tmpbuf[16];
283     int index;
284
285     if (!mxf->aesc && s->key && s->keylen == 16) {
286         mxf->aesc = av_malloc(av_aes_size);
287         if (!mxf->aesc)
288             return -1;
289         av_aes_init(mxf->aesc, s->key, 128, 1);
290     }
291     // crypto context
292     url_fskip(pb, klv_decode_ber_length(pb));
293     // plaintext offset
294     klv_decode_ber_length(pb);
295     plaintext_size = get_be64(pb);
296     // source klv key
297     klv_decode_ber_length(pb);
298     get_buffer(pb, klv->key, 16);
299     if (!IS_KLV_KEY(klv, mxf_essence_element_key))
300         return -1;
301     index = mxf_get_stream_index(s, klv);
302     if (index < 0)
303         return -1;
304     // source size
305     klv_decode_ber_length(pb);
306     orig_size = get_be64(pb);
307     if (orig_size < plaintext_size)
308         return -1;
309     // enc. code
310     size = klv_decode_ber_length(pb);
311     if (size < 32 || size - 32 < orig_size)
312         return -1;
313     get_buffer(pb, ivec, 16);
314     get_buffer(pb, tmpbuf, 16);
315     if (mxf->aesc)
316         av_aes_crypt(mxf->aesc, tmpbuf, tmpbuf, 1, ivec, 1);
317     if (memcmp(tmpbuf, checkv, 16))
318         av_log(s, AV_LOG_ERROR, "probably incorrect decryption key\n");
319     size -= 32;
320     av_get_packet(pb, pkt, size);
321     size -= plaintext_size;
322     if (mxf->aesc)
323         av_aes_crypt(mxf->aesc, &pkt->data[plaintext_size],
324                      &pkt->data[plaintext_size], size >> 4, ivec, 1);
325     pkt->size = orig_size;
326     pkt->stream_index = index;
327     url_fskip(pb, end - url_ftell(pb));
328     return 0;
329 }
330
331 static int mxf_read_packet(AVFormatContext *s, AVPacket *pkt)
332 {
333     KLVPacket klv;
334
335     while (!url_feof(s->pb)) {
336         if (klv_read_packet(&klv, s->pb) < 0)
337             return -1;
338 #ifdef DEBUG
339         PRINT_KEY(s, "read packet", klv.key);
340 #endif
341         if (IS_KLV_KEY(klv.key, mxf_encrypted_triplet_key)) {
342             int res = mxf_decrypt_triplet(s, pkt, &klv);
343             if (res < 0) {
344                 av_log(s, AV_LOG_ERROR, "invalid encoded triplet\n");
345                 return -1;
346             }
347             return 0;
348         }
349         if (IS_KLV_KEY(klv.key, mxf_essence_element_key)) {
350             int index = mxf_get_stream_index(s, &klv);
351             if (index < 0) {
352                 av_log(s, AV_LOG_ERROR, "error getting stream index\n");
353                 url_fskip(s->pb, klv.length);
354                 return -1;
355             }
356             if (s->streams[index]->discard == AVDISCARD_ALL)
357                 goto skip;
358             /* check for 8 channels AES3 element */
359             if (klv.key[12] == 0x06 && klv.key[13] == 0x01 && klv.key[14] == 0x10) {
360                 if (mxf_get_d10_aes3_packet(s->pb, s->streams[index], pkt, klv.length) < 0) {
361                     av_log(s, AV_LOG_ERROR, "error reading D-10 aes3 frame\n");
362                     return -1;
363                 }
364             } else
365                 av_get_packet(s->pb, pkt, klv.length);
366             pkt->stream_index = index;
367             pkt->pos = klv.offset;
368             return 0;
369         } else
370         skip:
371             url_fskip(s->pb, klv.length);
372     }
373     return AVERROR(EIO);
374 }
375
376 static int mxf_read_primer_pack(MXFContext *mxf)
377 {
378     ByteIOContext *pb = mxf->fc->pb;
379     int item_num = get_be32(pb);
380     int item_len = get_be32(pb);
381
382     if (item_len != 18) {
383         av_log(mxf->fc, AV_LOG_ERROR, "unsupported primer pack item length\n");
384         return -1;
385     }
386     if (item_num > UINT_MAX / item_len)
387         return -1;
388     mxf->local_tags_count = item_num;
389     mxf->local_tags = av_malloc(item_num*item_len);
390     if (!mxf->local_tags)
391         return -1;
392     get_buffer(pb, mxf->local_tags, item_num*item_len);
393     return 0;
394 }
395
396 static int mxf_add_metadata_set(MXFContext *mxf, void *metadata_set)
397 {
398     mxf->metadata_sets = av_realloc(mxf->metadata_sets, (mxf->metadata_sets_count + 1) * sizeof(*mxf->metadata_sets));
399     if (!mxf->metadata_sets)
400         return -1;
401     mxf->metadata_sets[mxf->metadata_sets_count] = metadata_set;
402     mxf->metadata_sets_count++;
403     return 0;
404 }
405
406 static int mxf_read_cryptographic_context(MXFCryptoContext *cryptocontext, ByteIOContext *pb, int tag, int size, UID uid)
407 {
408     if (size != 16)
409         return -1;
410     if (IS_KLV_KEY(uid, mxf_crypto_source_container_ul))
411         get_buffer(pb, cryptocontext->source_container_ul, 16);
412     return 0;
413 }
414
415 static int mxf_read_content_storage(MXFContext *mxf, ByteIOContext *pb, int tag)
416 {
417     switch (tag) {
418     case 0x1901:
419         mxf->packages_count = get_be32(pb);
420         if (mxf->packages_count >= UINT_MAX / sizeof(UID))
421             return -1;
422         mxf->packages_refs = av_malloc(mxf->packages_count * sizeof(UID));
423         if (!mxf->packages_refs)
424             return -1;
425         url_fskip(pb, 4); /* useless size of objects, always 16 according to specs */
426         get_buffer(pb, (uint8_t *)mxf->packages_refs, mxf->packages_count * sizeof(UID));
427         break;
428     }
429     return 0;
430 }
431
432 static int mxf_read_source_clip(MXFStructuralComponent *source_clip, ByteIOContext *pb, int tag)
433 {
434     switch(tag) {
435     case 0x0202:
436         source_clip->duration = get_be64(pb);
437         break;
438     case 0x1201:
439         source_clip->start_position = get_be64(pb);
440         break;
441     case 0x1101:
442         /* UMID, only get last 16 bytes */
443         url_fskip(pb, 16);
444         get_buffer(pb, source_clip->source_package_uid, 16);
445         break;
446     case 0x1102:
447         source_clip->source_track_id = get_be32(pb);
448         break;
449     }
450     return 0;
451 }
452
453 static int mxf_read_material_package(MXFPackage *package, ByteIOContext *pb, int tag)
454 {
455     switch(tag) {
456     case 0x4403:
457         package->tracks_count = get_be32(pb);
458         if (package->tracks_count >= UINT_MAX / sizeof(UID))
459             return -1;
460         package->tracks_refs = av_malloc(package->tracks_count * sizeof(UID));
461         if (!package->tracks_refs)
462             return -1;
463         url_fskip(pb, 4); /* useless size of objects, always 16 according to specs */
464         get_buffer(pb, (uint8_t *)package->tracks_refs, package->tracks_count * sizeof(UID));
465         break;
466     }
467     return 0;
468 }
469
470 static int mxf_read_track(MXFTrack *track, ByteIOContext *pb, int tag)
471 {
472     switch(tag) {
473     case 0x4801:
474         track->track_id = get_be32(pb);
475         break;
476     case 0x4804:
477         get_buffer(pb, track->track_number, 4);
478         break;
479     case 0x4B01:
480         track->edit_rate.den = get_be32(pb);
481         track->edit_rate.num = get_be32(pb);
482         break;
483     case 0x4803:
484         get_buffer(pb, track->sequence_ref, 16);
485         break;
486     }
487     return 0;
488 }
489
490 static int mxf_read_sequence(MXFSequence *sequence, ByteIOContext *pb, int tag)
491 {
492     switch(tag) {
493     case 0x0202:
494         sequence->duration = get_be64(pb);
495         break;
496     case 0x0201:
497         get_buffer(pb, sequence->data_definition_ul, 16);
498         break;
499     case 0x1001:
500         sequence->structural_components_count = get_be32(pb);
501         if (sequence->structural_components_count >= UINT_MAX / sizeof(UID))
502             return -1;
503         sequence->structural_components_refs = av_malloc(sequence->structural_components_count * sizeof(UID));
504         if (!sequence->structural_components_refs)
505             return -1;
506         url_fskip(pb, 4); /* useless size of objects, always 16 according to specs */
507         get_buffer(pb, (uint8_t *)sequence->structural_components_refs, sequence->structural_components_count * sizeof(UID));
508         break;
509     }
510     return 0;
511 }
512
513 static int mxf_read_source_package(MXFPackage *package, ByteIOContext *pb, int tag)
514 {
515     switch(tag) {
516     case 0x4403:
517         package->tracks_count = get_be32(pb);
518         if (package->tracks_count >= UINT_MAX / sizeof(UID))
519             return -1;
520         package->tracks_refs = av_malloc(package->tracks_count * sizeof(UID));
521         if (!package->tracks_refs)
522             return -1;
523         url_fskip(pb, 4); /* useless size of objects, always 16 according to specs */
524         get_buffer(pb, (uint8_t *)package->tracks_refs, package->tracks_count * sizeof(UID));
525         break;
526     case 0x4401:
527         /* UMID, only get last 16 bytes */
528         url_fskip(pb, 16);
529         get_buffer(pb, package->package_uid, 16);
530         break;
531     case 0x4701:
532         get_buffer(pb, package->descriptor_ref, 16);
533         break;
534     }
535     return 0;
536 }
537
538 static void mxf_read_pixel_layout(ByteIOContext *pb, MXFDescriptor *descriptor)
539 {
540     int code;
541
542     do {
543         code = get_byte(pb);
544         dprintf(NULL, "pixel layout: code 0x%x\n", code);
545         switch (code) {
546         case 0x52: /* R */
547             descriptor->bits_per_sample += get_byte(pb);
548             break;
549         case 0x47: /* G */
550             descriptor->bits_per_sample += get_byte(pb);
551             break;
552         case 0x42: /* B */
553             descriptor->bits_per_sample += get_byte(pb);
554             break;
555         default:
556             get_byte(pb);
557         }
558     } while (code != 0); /* SMPTE 377M E.2.46 */
559 }
560
561 static int mxf_read_generic_descriptor(MXFDescriptor *descriptor, ByteIOContext *pb, int tag, int size, UID uid)
562 {
563     switch(tag) {
564     case 0x3F01:
565         descriptor->sub_descriptors_count = get_be32(pb);
566         if (descriptor->sub_descriptors_count >= UINT_MAX / sizeof(UID))
567             return -1;
568         descriptor->sub_descriptors_refs = av_malloc(descriptor->sub_descriptors_count * sizeof(UID));
569         if (!descriptor->sub_descriptors_refs)
570             return -1;
571         url_fskip(pb, 4); /* useless size of objects, always 16 according to specs */
572         get_buffer(pb, (uint8_t *)descriptor->sub_descriptors_refs, descriptor->sub_descriptors_count * sizeof(UID));
573         break;
574     case 0x3004:
575         get_buffer(pb, descriptor->essence_container_ul, 16);
576         break;
577     case 0x3006:
578         descriptor->linked_track_id = get_be32(pb);
579         break;
580     case 0x3201: /* PictureEssenceCoding */
581         get_buffer(pb, descriptor->essence_codec_ul, 16);
582         break;
583     case 0x3203:
584         descriptor->width = get_be32(pb);
585         break;
586     case 0x3202:
587         descriptor->height = get_be32(pb);
588         break;
589     case 0x320E:
590         descriptor->aspect_ratio.num = get_be32(pb);
591         descriptor->aspect_ratio.den = get_be32(pb);
592         break;
593     case 0x3D03:
594         descriptor->sample_rate.num = get_be32(pb);
595         descriptor->sample_rate.den = get_be32(pb);
596         break;
597     case 0x3D06: /* SoundEssenceCompression */
598         get_buffer(pb, descriptor->essence_codec_ul, 16);
599         break;
600     case 0x3D07:
601         descriptor->channels = get_be32(pb);
602         break;
603     case 0x3D01:
604         descriptor->bits_per_sample = get_be32(pb);
605         break;
606     case 0x3401:
607         mxf_read_pixel_layout(pb, descriptor);
608         break;
609     default:
610         /* Private uid used by SONY C0023S01.mxf */
611         if (IS_KLV_KEY(uid, mxf_sony_mpeg4_extradata)) {
612             descriptor->extradata = av_malloc(size);
613             if (!descriptor->extradata)
614                 return -1;
615             descriptor->extradata_size = size;
616             get_buffer(pb, descriptor->extradata, size);
617         }
618         break;
619     }
620     return 0;
621 }
622
623 /* SMPTE RP224 http://www.smpte-ra.org/mdd/index.html */
624 static const MXFDataDefinitionUL mxf_data_definition_uls[] = {
625     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x01,0x03,0x02,0x02,0x01,0x00,0x00,0x00 }, CODEC_TYPE_VIDEO },
626     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x01,0x03,0x02,0x02,0x02,0x00,0x00,0x00 }, CODEC_TYPE_AUDIO },
627     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x05,0x01,0x03,0x02,0x02,0x02,0x02,0x00,0x00 }, CODEC_TYPE_AUDIO },
628     { { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 },  CODEC_TYPE_DATA },
629 };
630
631 static const MXFCodecUL mxf_codec_uls[] = {
632     /* PictureEssenceCoding */
633     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x03,0x04,0x01,0x02,0x02,0x01,0x01,0x11,0x00 }, 14, CODEC_ID_MPEG2VIDEO }, /* MP@ML Long GoP */
634     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x04,0x01,0x02,0x02,0x01,0x02,0x01,0x01 }, 14, CODEC_ID_MPEG2VIDEO }, /* D-10 50Mbps PAL */
635     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x03,0x04,0x01,0x02,0x02,0x01,0x03,0x03,0x00 }, 14, CODEC_ID_MPEG2VIDEO }, /* MP@HL Long GoP */
636     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x03,0x04,0x01,0x02,0x02,0x01,0x04,0x02,0x00 }, 14, CODEC_ID_MPEG2VIDEO }, /* 422P@HL I-Frame */
637     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x03,0x04,0x01,0x02,0x02,0x01,0x20,0x02,0x03 }, 14,      CODEC_ID_MPEG4 }, /* XDCAM proxy_pal030926.mxf */
638     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x04,0x01,0x02,0x02,0x02,0x01,0x02,0x00 }, 13,    CODEC_ID_DVVIDEO }, /* DV25 IEC PAL */
639     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x07,0x04,0x01,0x02,0x02,0x03,0x01,0x01,0x00 }, 14,   CODEC_ID_JPEG2000 }, /* JPEG2000 Codestream */
640     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x04,0x01,0x02,0x01,0x7F,0x00,0x00,0x00 }, 13,   CODEC_ID_RAWVIDEO }, /* Uncompressed */
641     /* SoundEssenceCompression */
642     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x04,0x02,0x02,0x01,0x00,0x00,0x00,0x00 }, 13,  CODEC_ID_PCM_S16LE }, /* Uncompressed */
643     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x04,0x02,0x02,0x01,0x7F,0x00,0x00,0x00 }, 13,  CODEC_ID_PCM_S16LE },
644     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x07,0x04,0x02,0x02,0x01,0x7E,0x00,0x00,0x00 }, 13,  CODEC_ID_PCM_S16BE }, /* From Omneon MXF file */
645     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x04,0x04,0x02,0x02,0x02,0x03,0x01,0x01,0x00 }, 15,   CODEC_ID_PCM_ALAW }, /* XDCAM Proxy C0023S01.mxf */
646     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x04,0x02,0x02,0x02,0x03,0x02,0x01,0x00 }, 15,        CODEC_ID_AC3 },
647     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x04,0x02,0x02,0x02,0x03,0x02,0x05,0x00 }, 15,        CODEC_ID_MP2 }, /* MP2 or MP3 */
648   //{ { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x04,0x02,0x02,0x02,0x03,0x02,0x1C,0x00 }, 15,    CODEC_ID_DOLBY_E }, /* Dolby-E */
649     { { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 },  0,       CODEC_ID_NONE },
650 };
651
652 static const MXFCodecUL mxf_picture_essence_container_uls[] = {
653     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x02,0x0D,0x01,0x03,0x01,0x02,0x04,0x60,0x01 }, 14, CODEC_ID_MPEG2VIDEO }, /* MPEG-ES Frame wrapped */
654     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x0D,0x01,0x03,0x01,0x02,0x02,0x41,0x01 }, 14,    CODEC_ID_DVVIDEO }, /* DV 625 25mbps */
655     { { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 },  0,       CODEC_ID_NONE },
656 };
657
658 static const MXFCodecUL mxf_sound_essence_container_uls[] = {
659     { { 0x06,0x0E,0x2B,0x34,0x04,0x01,0x01,0x01,0x0D,0x01,0x03,0x01,0x02,0x06,0x01,0x00 }, 14, CODEC_ID_PCM_S16LE }, /* BWF Frame wrapped */
660     { { 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 */
661     { { 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 */
662     { { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 },  0,      CODEC_ID_NONE },
663 };
664
665 /*
666  * Match an uid independently of the version byte and up to len common bytes
667  * Returns: boolean
668  */
669 static int mxf_match_uid(const UID key, const UID uid, int len)
670 {
671     int i;
672     for (i = 0; i < len; i++) {
673         if (i != 7 && key[i] != uid[i])
674             return 0;
675     }
676     return 1;
677 }
678
679 static const MXFCodecUL *mxf_get_codec_ul(const MXFCodecUL *uls, UID *uid)
680 {
681     while (uls->id != CODEC_ID_NONE) {
682         if(mxf_match_uid(uls->uid, *uid, uls->matching_len))
683             break;
684         uls++;
685     }
686     return uls;
687 }
688
689 static enum CodecType mxf_get_codec_type(const MXFDataDefinitionUL *uls, UID *uid)
690 {
691     while (uls->type != CODEC_TYPE_DATA) {
692         if(mxf_match_uid(uls->uid, *uid, 16))
693             break;
694         uls++;
695     }
696     return uls->type;
697 }
698
699 static void *mxf_resolve_strong_ref(MXFContext *mxf, UID *strong_ref, enum MXFMetadataSetType type)
700 {
701     int i;
702
703     if (!strong_ref)
704         return NULL;
705     for (i = 0; i < mxf->metadata_sets_count; i++) {
706         if (!memcmp(*strong_ref, mxf->metadata_sets[i]->uid, 16) &&
707             (type == AnyType || mxf->metadata_sets[i]->type == type)) {
708             return mxf->metadata_sets[i];
709         }
710     }
711     return NULL;
712 }
713
714 static int mxf_parse_structural_metadata(MXFContext *mxf)
715 {
716     MXFPackage *material_package = NULL;
717     MXFPackage *temp_package = NULL;
718     int i, j, k;
719
720     dprintf(mxf->fc, "metadata sets count %d\n", mxf->metadata_sets_count);
721     /* TODO: handle multiple material packages (OP3x) */
722     for (i = 0; i < mxf->packages_count; i++) {
723         material_package = mxf_resolve_strong_ref(mxf, &mxf->packages_refs[i], MaterialPackage);
724         if (material_package) break;
725     }
726     if (!material_package) {
727         av_log(mxf->fc, AV_LOG_ERROR, "no material package found\n");
728         return -1;
729     }
730
731     for (i = 0; i < material_package->tracks_count; i++) {
732         MXFPackage *source_package = NULL;
733         MXFTrack *material_track = NULL;
734         MXFTrack *source_track = NULL;
735         MXFTrack *temp_track = NULL;
736         MXFDescriptor *descriptor = NULL;
737         MXFStructuralComponent *component = NULL;
738         UID *essence_container_ul = NULL;
739         const MXFCodecUL *codec_ul = NULL;
740         const MXFCodecUL *container_ul = NULL;
741         AVStream *st;
742
743         if (!(material_track = mxf_resolve_strong_ref(mxf, &material_package->tracks_refs[i], Track))) {
744             av_log(mxf->fc, AV_LOG_ERROR, "could not resolve material track strong ref\n");
745             continue;
746         }
747
748         if (!(material_track->sequence = mxf_resolve_strong_ref(mxf, &material_track->sequence_ref, Sequence))) {
749             av_log(mxf->fc, AV_LOG_ERROR, "could not resolve material track sequence strong ref\n");
750             return -1;
751         }
752
753         /* TODO: handle multiple source clips */
754         for (j = 0; j < material_track->sequence->structural_components_count; j++) {
755             /* TODO: handle timecode component */
756             component = mxf_resolve_strong_ref(mxf, &material_track->sequence->structural_components_refs[j], SourceClip);
757             if (!component)
758                 continue;
759
760             for (k = 0; k < mxf->packages_count; k++) {
761                 temp_package = mxf_resolve_strong_ref(mxf, &mxf->packages_refs[k], SourcePackage);
762                 if (!temp_package)
763                     continue;
764                 if (!memcmp(temp_package->package_uid, component->source_package_uid, 16)) {
765                     source_package = temp_package;
766                     break;
767                 }
768             }
769             if (!source_package) {
770                 av_log(mxf->fc, AV_LOG_ERROR, "material track %d: no corresponding source package found\n", material_track->track_id);
771                 break;
772             }
773             for (k = 0; k < source_package->tracks_count; k++) {
774                 if (!(temp_track = mxf_resolve_strong_ref(mxf, &source_package->tracks_refs[k], Track))) {
775                     av_log(mxf->fc, AV_LOG_ERROR, "could not resolve source track strong ref\n");
776                     return -1;
777                 }
778                 if (temp_track->track_id == component->source_track_id) {
779                     source_track = temp_track;
780                     break;
781                 }
782             }
783             if (!source_track) {
784                 av_log(mxf->fc, AV_LOG_ERROR, "material track %d: no corresponding source track found\n", material_track->track_id);
785                 break;
786             }
787         }
788         if (!source_track)
789             continue;
790
791         st = av_new_stream(mxf->fc, source_track->track_id);
792         if (!st) {
793             av_log(mxf->fc, AV_LOG_ERROR, "could not allocate stream\n");
794             return -1;
795         }
796         st->priv_data = source_track;
797         st->duration = component->duration;
798         if (st->duration == -1)
799             st->duration = AV_NOPTS_VALUE;
800         st->start_time = component->start_position;
801         av_set_pts_info(st, 64, material_track->edit_rate.num, material_track->edit_rate.den);
802
803         if (!(source_track->sequence = mxf_resolve_strong_ref(mxf, &source_track->sequence_ref, Sequence))) {
804             av_log(mxf->fc, AV_LOG_ERROR, "could not resolve source track sequence strong ref\n");
805             return -1;
806         }
807
808 #ifdef DEBUG
809         PRINT_KEY(mxf->fc, "data definition   ul", source_track->sequence->data_definition_ul);
810 #endif
811         st->codec->codec_type = mxf_get_codec_type(mxf_data_definition_uls, &source_track->sequence->data_definition_ul);
812
813         source_package->descriptor = mxf_resolve_strong_ref(mxf, &source_package->descriptor_ref, AnyType);
814         if (source_package->descriptor) {
815             if (source_package->descriptor->type == MultipleDescriptor) {
816                 for (j = 0; j < source_package->descriptor->sub_descriptors_count; j++) {
817                     MXFDescriptor *sub_descriptor = mxf_resolve_strong_ref(mxf, &source_package->descriptor->sub_descriptors_refs[j], Descriptor);
818
819                     if (!sub_descriptor) {
820                         av_log(mxf->fc, AV_LOG_ERROR, "could not resolve sub descriptor strong ref\n");
821                         continue;
822                     }
823                     if (sub_descriptor->linked_track_id == source_track->track_id) {
824                         descriptor = sub_descriptor;
825                         break;
826                     }
827                 }
828             } else if (source_package->descriptor->type == Descriptor)
829                 descriptor = source_package->descriptor;
830         }
831         if (!descriptor) {
832             av_log(mxf->fc, AV_LOG_INFO, "source track %d: stream %d, no descriptor found\n", source_track->track_id, st->index);
833             continue;
834         }
835 #ifdef DEBUG
836         PRINT_KEY(mxf->fc, "essence codec     ul", descriptor->essence_codec_ul);
837         PRINT_KEY(mxf->fc, "essence container ul", descriptor->essence_container_ul);
838 #endif
839         essence_container_ul = &descriptor->essence_container_ul;
840         /* HACK: replacing the original key with mxf_encrypted_essence_container
841          * is not allowed according to s429-6, try to find correct information anyway */
842         if (IS_KLV_KEY(essence_container_ul, mxf_encrypted_essence_container)) {
843             av_log(mxf->fc, AV_LOG_INFO, "broken encrypted mxf file\n");
844             for (k = 0; k < mxf->metadata_sets_count; k++) {
845                 MXFMetadataSet *metadata = mxf->metadata_sets[k];
846                 if (metadata->type == CryptoContext) {
847                     essence_container_ul = &((MXFCryptoContext *)metadata)->source_container_ul;
848                     break;
849                 }
850             }
851         }
852         /* TODO: drop PictureEssenceCoding and SoundEssenceCompression, only check EssenceContainer */
853         codec_ul = mxf_get_codec_ul(mxf_codec_uls, &descriptor->essence_codec_ul);
854         st->codec->codec_id = codec_ul->id;
855         if (descriptor->extradata) {
856             st->codec->extradata = descriptor->extradata;
857             st->codec->extradata_size = descriptor->extradata_size;
858         }
859         if (st->codec->codec_type == CODEC_TYPE_VIDEO) {
860             container_ul = mxf_get_codec_ul(mxf_picture_essence_container_uls, essence_container_ul);
861             if (st->codec->codec_id == CODEC_ID_NONE)
862                 st->codec->codec_id = container_ul->id;
863             st->codec->width = descriptor->width;
864             st->codec->height = descriptor->height;
865             st->codec->bits_per_sample = descriptor->bits_per_sample; /* Uncompressed */
866             st->need_parsing = AVSTREAM_PARSE_HEADERS;
867         } else if (st->codec->codec_type == CODEC_TYPE_AUDIO) {
868             container_ul = mxf_get_codec_ul(mxf_sound_essence_container_uls, essence_container_ul);
869             if (st->codec->codec_id == CODEC_ID_NONE)
870                 st->codec->codec_id = container_ul->id;
871             st->codec->channels = descriptor->channels;
872             st->codec->bits_per_sample = descriptor->bits_per_sample;
873             st->codec->sample_rate = descriptor->sample_rate.num / descriptor->sample_rate.den;
874             /* TODO: implement CODEC_ID_RAWAUDIO */
875             if (st->codec->codec_id == CODEC_ID_PCM_S16LE) {
876                 if (descriptor->bits_per_sample == 24)
877                     st->codec->codec_id = CODEC_ID_PCM_S24LE;
878                 else if (descriptor->bits_per_sample == 32)
879                     st->codec->codec_id = CODEC_ID_PCM_S32LE;
880             } else if (st->codec->codec_id == CODEC_ID_PCM_S16BE) {
881                 if (descriptor->bits_per_sample == 24)
882                     st->codec->codec_id = CODEC_ID_PCM_S24BE;
883                 else if (descriptor->bits_per_sample == 32)
884                     st->codec->codec_id = CODEC_ID_PCM_S32BE;
885             } else if (st->codec->codec_id == CODEC_ID_MP2) {
886                 st->need_parsing = AVSTREAM_PARSE_FULL;
887             }
888         }
889         if (st->codec->codec_type != CODEC_TYPE_DATA && (*essence_container_ul)[15] > 0x01) {
890             av_log(mxf->fc, AV_LOG_WARNING, "only frame wrapped mappings are correctly supported\n");
891             st->need_parsing = AVSTREAM_PARSE_FULL;
892         }
893     }
894     return 0;
895 }
896
897 static const MXFMetadataReadTableEntry mxf_metadata_read_table[] = {
898     { { 0x06,0x0E,0x2B,0x34,0x02,0x05,0x01,0x01,0x0d,0x01,0x02,0x01,0x01,0x05,0x01,0x00 }, mxf_read_primer_pack },
899     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x18,0x00 }, mxf_read_content_storage, 0, AnyType },
900     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x37,0x00 }, mxf_read_source_package, sizeof(MXFPackage), SourcePackage },
901     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x36,0x00 }, mxf_read_material_package, sizeof(MXFPackage), MaterialPackage },
902     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x0F,0x00 }, mxf_read_sequence, sizeof(MXFSequence), Sequence },
903     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x11,0x00 }, mxf_read_source_clip, sizeof(MXFStructuralComponent), SourceClip },
904     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x44,0x00 }, mxf_read_generic_descriptor, sizeof(MXFDescriptor), MultipleDescriptor },
905     { { 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 */
906     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x28,0x00 }, mxf_read_generic_descriptor, sizeof(MXFDescriptor), Descriptor }, /* CDCI */
907     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x29,0x00 }, mxf_read_generic_descriptor, sizeof(MXFDescriptor), Descriptor }, /* RGBA */
908     { { 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 */
909     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x48,0x00 }, mxf_read_generic_descriptor, sizeof(MXFDescriptor), Descriptor }, /* Wave */
910     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x47,0x00 }, mxf_read_generic_descriptor, sizeof(MXFDescriptor), Descriptor }, /* AES3 */
911     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x3A,0x00 }, mxf_read_track, sizeof(MXFTrack), Track }, /* Static Track */
912     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x01,0x3B,0x00 }, mxf_read_track, sizeof(MXFTrack), Track }, /* Generic Track */
913     { { 0x06,0x0E,0x2B,0x34,0x02,0x53,0x01,0x01,0x0d,0x01,0x04,0x01,0x02,0x02,0x00,0x00 }, mxf_read_cryptographic_context, sizeof(MXFCryptoContext), CryptoContext },
914     { { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }, NULL, 0, AnyType },
915 };
916
917 static int mxf_read_local_tags(MXFContext *mxf, KLVPacket *klv, int (*read_child)(), int ctx_size, enum MXFMetadataSetType type)
918 {
919     ByteIOContext *pb = mxf->fc->pb;
920     MXFMetadataSet *ctx = ctx_size ? av_mallocz(ctx_size) : mxf;
921     uint64_t klv_end = url_ftell(pb) + klv->length;
922
923     if (!ctx)
924         return -1;
925     while (url_ftell(pb) + 4 < klv_end) {
926         int tag = get_be16(pb);
927         int size = get_be16(pb); /* KLV specified by 0x53 */
928         uint64_t next = url_ftell(pb) + size;
929         UID uid = {0};
930
931         if (!size) { /* ignore empty tag, needed for some files with empty UMID tag */
932             av_log(mxf->fc, AV_LOG_ERROR, "local tag 0x%04X with 0 size\n", tag);
933             continue;
934         }
935         if (tag > 0x7FFF) { /* dynamic tag */
936             int i;
937             for (i = 0; i < mxf->local_tags_count; i++) {
938                 int local_tag = AV_RB16(mxf->local_tags+i*18);
939                 if (local_tag == tag) {
940                     memcpy(uid, mxf->local_tags+i*18+2, 16);
941                     dprintf(mxf->fc, "local tag 0x%04X\n", local_tag);
942 #ifdef DEBUG
943                     PRINT_KEY(mxf->fc, "uid", uid);
944 #endif
945                 }
946             }
947         }
948         if (ctx_size && tag == 0x3C0A)
949             get_buffer(pb, ctx->uid, 16);
950         else if (read_child(ctx, pb, tag, size, uid) < 0)
951             return -1;
952
953         url_fseek(pb, next, SEEK_SET);
954     }
955     if (ctx_size) ctx->type = type;
956     return ctx_size ? mxf_add_metadata_set(mxf, ctx) : 0;
957 }
958
959 static int mxf_read_header(AVFormatContext *s, AVFormatParameters *ap)
960 {
961     MXFContext *mxf = s->priv_data;
962     KLVPacket klv;
963
964     if (!mxf_read_sync(s->pb, mxf_header_partition_pack_key, 14)) {
965         av_log(s, AV_LOG_ERROR, "could not find header partition pack key\n");
966         return -1;
967     }
968     url_fseek(s->pb, -14, SEEK_CUR);
969     mxf->fc = s;
970     while (!url_feof(s->pb)) {
971         const MXFMetadataReadTableEntry *metadata;
972
973         if (klv_read_packet(&klv, s->pb) < 0)
974             return -1;
975 #ifdef DEBUG
976         PRINT_KEY(s, "read header", klv.key);
977 #endif
978         if (IS_KLV_KEY(klv.key, mxf_encrypted_triplet_key) ||
979             IS_KLV_KEY(klv.key, mxf_essence_element_key)) {
980             /* FIXME avoid seek */
981             url_fseek(s->pb, klv.offset, SEEK_SET);
982             break;
983         }
984
985         for (metadata = mxf_metadata_read_table; metadata->read; metadata++) {
986             if (IS_KLV_KEY(klv.key, metadata->key)) {
987                 int (*read)() = klv.key[5] == 0x53 ? mxf_read_local_tags : metadata->read;
988                 if (read(mxf, &klv, metadata->read, metadata->ctx_size, metadata->type) < 0) {
989                     av_log(s, AV_LOG_ERROR, "error reading header metadata\n");
990                     return -1;
991                 }
992                 break;
993             }
994         }
995         if (!metadata->read)
996             url_fskip(s->pb, klv.length);
997     }
998     return mxf_parse_structural_metadata(mxf);
999 }
1000
1001 static int mxf_read_close(AVFormatContext *s)
1002 {
1003     MXFContext *mxf = s->priv_data;
1004     int i;
1005
1006     av_freep(&mxf->packages_refs);
1007     for (i = 0; i < mxf->metadata_sets_count; i++) {
1008         switch (mxf->metadata_sets[i]->type) {
1009         case MultipleDescriptor:
1010             av_freep(&((MXFDescriptor *)mxf->metadata_sets[i])->sub_descriptors_refs);
1011             break;
1012         case Sequence:
1013             av_freep(&((MXFSequence *)mxf->metadata_sets[i])->structural_components_refs);
1014             break;
1015         case SourcePackage:
1016         case MaterialPackage:
1017             av_freep(&((MXFPackage *)mxf->metadata_sets[i])->tracks_refs);
1018             break;
1019         default:
1020             break;
1021         }
1022         av_freep(&mxf->metadata_sets[i]);
1023     }
1024     av_freep(&mxf->metadata_sets);
1025     av_freep(&mxf->aesc);
1026     av_freep(&mxf->local_tags);
1027     return 0;
1028 }
1029
1030 static int mxf_probe(AVProbeData *p) {
1031     uint8_t *bufp = p->buf;
1032     uint8_t *end = p->buf + p->buf_size;
1033
1034     if (p->buf_size < sizeof(mxf_header_partition_pack_key))
1035         return 0;
1036
1037     /* Must skip Run-In Sequence and search for MXF header partition pack key SMPTE 377M 5.5 */
1038     end -= sizeof(mxf_header_partition_pack_key);
1039     for (; bufp < end; bufp++) {
1040         if (IS_KLV_KEY(bufp, mxf_header_partition_pack_key))
1041             return AVPROBE_SCORE_MAX;
1042     }
1043     return 0;
1044 }
1045
1046 /* rudimentary byte seek */
1047 /* XXX: use MXF Index */
1048 static int mxf_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
1049 {
1050     AVStream *st = s->streams[stream_index];
1051     int64_t seconds;
1052
1053     if (!s->bit_rate)
1054         return -1;
1055     if (sample_time < 0)
1056         sample_time = 0;
1057     seconds = av_rescale(sample_time, st->time_base.num, st->time_base.den);
1058     url_fseek(s->pb, (s->bit_rate * seconds) >> 3, SEEK_SET);
1059     av_update_cur_dts(s, st, sample_time);
1060     return 0;
1061 }
1062
1063 AVInputFormat mxf_demuxer = {
1064     "mxf",
1065     "MXF format",
1066     sizeof(MXFContext),
1067     mxf_probe,
1068     mxf_read_header,
1069     mxf_read_packet,
1070     mxf_read_close,
1071     mxf_read_seek,
1072 };