]> git.sesse.net Git - ffmpeg/blob - libavformat/mxf.h
Merge commit 'acc897e6b15776ed438b88ffe330ec48f6b50e48'
[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 "avformat.h"
25 #include "libavcodec/avcodec.h"
26 #include <stdint.h>
27
28 typedef uint8_t UID[16];
29
30 enum MXFMetadataSetType {
31     AnyType,
32     MaterialPackage,
33     SourcePackage,
34     SourceClip,
35     TimecodeComponent,
36     PulldownComponent,
37     Sequence,
38     MultipleDescriptor,
39     Descriptor,
40     Track,
41     CryptoContext,
42     Preface,
43     Identification,
44     ContentStorage,
45     SubDescriptor,
46     IndexTableSegment,
47     EssenceContainerData,
48     TypeBottom,// add metadata type before this
49 };
50
51 enum MXFFrameLayout {
52     FullFrame = 0,
53     SeparateFields,
54     OneField,
55     MixedFields,
56     SegmentedFrame,
57 };
58
59 typedef struct KLVPacket {
60     UID key;
61     int64_t offset;
62     uint64_t length;
63 } KLVPacket;
64
65 typedef struct MXFCodecUL {
66     UID uid;
67     unsigned matching_len;
68     int id;
69 } MXFCodecUL;
70
71 typedef struct {
72     struct AVRational time_base;
73     int samples_per_frame[6];
74 } MXFSamplesPerFrame;
75
76 extern const MXFCodecUL ff_mxf_data_definition_uls[];
77 extern const MXFCodecUL ff_mxf_codec_uls[];
78 extern const MXFCodecUL ff_mxf_pixel_format_uls[];
79
80 int ff_mxf_decode_pixel_layout(const char pixel_layout[16], enum AVPixelFormat *pix_fmt);
81 const MXFSamplesPerFrame *ff_mxf_get_samples_per_frame(AVFormatContext *s, AVRational time_base);
82
83 #define PRIxUID                             \
84     "%02x.%02x.%02x.%02x."                  \
85     "%02x.%02x.%02x.%02x."                  \
86     "%02x.%02x.%02x.%02x."                  \
87     "%02x.%02x.%02x.%02x"
88
89 #define UID_ARG(x) \
90     (x)[0],  (x)[1],  (x)[2],  (x)[3],      \
91     (x)[4],  (x)[5],  (x)[6],  (x)[7],      \
92     (x)[8],  (x)[9],  (x)[10], (x)[11],     \
93     (x)[12], (x)[13], (x)[14], (x)[15]      \
94
95 #ifdef DEBUG
96 #define PRINT_KEY(pc, s, x)                         \
97     av_log(pc, AV_LOG_VERBOSE,                      \
98            "%s "                                    \
99            "0x%02x,0x%02x,0x%02x,0x%02x,"           \
100            "0x%02x,0x%02x,0x%02x,0x%02x,"           \
101            "0x%02x,0x%02x,0x%02x,0x%02x,"           \
102            "0x%02x,0x%02x,0x%02x,0x%02x ",          \
103             s,                                      \
104             (x)[0],  (x)[1],  (x)[2],  (x)[3],      \
105             (x)[4],  (x)[5],  (x)[6],  (x)[7],      \
106             (x)[8],  (x)[9],  (x)[10], (x)[11],     \
107             (x)[12], (x)[13], (x)[14], (x)[15]);    \
108     av_log(pc, AV_LOG_INFO,                         \
109            "%s "                                    \
110            "%02x.%02x.%02x.%02x."                   \
111            "%02x.%02x.%02x.%02x."                   \
112            "%02x.%02x.%02x.%02x."                   \
113            "%02x.%02x.%02x.%02x\n",                 \
114             s,                                      \
115             (x)[0],  (x)[1],  (x)[2],  (x)[3],      \
116             (x)[4],  (x)[5],  (x)[6],  (x)[7],      \
117             (x)[8],  (x)[9],  (x)[10], (x)[11],     \
118             (x)[12], (x)[13], (x)[14], (x)[15])
119 #else
120 #define PRINT_KEY(pc, s, x)
121 #endif
122
123 #endif /* AVFORMAT_MXF_H */