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