]> git.sesse.net Git - ffmpeg/blob - libavformat/mxf.h
Reformat rdt_demuxer AVCodec struct sanely.
[ffmpeg] / libavformat / mxf.h
1 /*
2  * MXF
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 #ifndef AVFORMAT_MXF_H
22 #define AVFORMAT_MXF_H
23
24 #include <string.h>
25 #include "avformat.h"
26 #include "libavcodec/bytestream.h"
27
28 typedef uint8_t UID[16];
29
30 enum MXFMetadataSetType {
31     AnyType,
32     MaterialPackage,
33     SourcePackage,
34     SourceClip,
35     TimecodeComponent,
36     Sequence,
37     MultipleDescriptor,
38     Descriptor,
39     Track,
40     CryptoContext,
41     Preface,
42     Identification,
43     ContentStorage,
44     SubDescriptor,
45     IndexTableSegment,
46     EssenceContainerData,
47     TypeBottom,// add metadata type before this
48 };
49
50 typedef struct {
51     UID key;
52     int64_t offset;
53     uint64_t length;
54 } KLVPacket;
55
56 typedef struct {
57     UID uid;
58     unsigned matching_len;
59     enum CodecID id;
60 } MXFCodecUL;
61
62 typedef struct {
63     UID uid;
64     enum CodecType type;
65 } MXFDataDefinitionUL;
66
67 extern const MXFDataDefinitionUL ff_mxf_data_definition_uls[];
68 extern const MXFCodecUL ff_mxf_codec_uls[];
69
70 #ifdef DEBUG
71 #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, \
72                              (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])
73 #else
74 #define PRINT_KEY(pc, s, x)
75 #endif
76
77 #endif /* AVFORMAT_MXF_H */