]> git.sesse.net Git - ffmpeg/blob - libavformat/mxf.h
avformat/rtsp: av_rescale -> av_rescale_q
[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     EssenceGroup,
49     TaggedValue,
50     TapeDescriptor,
51     AVCSubDescriptor,
52 };
53
54 enum MXFFrameLayout {
55     FullFrame = 0,
56     SeparateFields,
57     OneField,
58     MixedFields,
59     SegmentedFrame,
60 };
61
62 typedef struct MXFContentPackageRate {
63     int rate;
64     AVRational tb;
65 } MXFContentPackageRate;
66
67 typedef struct KLVPacket {
68     UID key;
69     int64_t offset;
70     uint64_t length;
71     int64_t next_klv;
72 } KLVPacket;
73
74 typedef enum {
75     NormalWrap = 0,
76     D10D11Wrap,
77     RawAWrap,
78     RawVWrap
79 } MXFWrappingIndicatorType;
80
81 typedef struct MXFLocalTagPair {
82     int local_tag;
83     UID uid;
84 } MXFLocalTagPair;
85
86 extern const uint8_t ff_mxf_mastering_display_prefix[13];
87 extern const MXFLocalTagPair ff_mxf_mastering_display_local_tags[4];
88
89 #define FF_MXF_MASTERING_CHROMA_DEN 50000
90 #define FF_MXF_MASTERING_LUMA_DEN   10000
91
92 typedef struct MXFCodecUL {
93     UID uid;
94     unsigned matching_len;
95     int id;
96     const char *desc;
97     unsigned wrapping_indicator_pos;
98     MXFWrappingIndicatorType wrapping_indicator_type;
99 } MXFCodecUL;
100
101 extern const MXFCodecUL ff_mxf_data_definition_uls[];
102 extern const MXFCodecUL ff_mxf_codec_uls[];
103 extern const MXFCodecUL ff_mxf_pixel_format_uls[];
104 extern const MXFCodecUL ff_mxf_codec_tag_uls[];
105 extern const MXFCodecUL ff_mxf_color_primaries_uls[];
106 extern const MXFCodecUL ff_mxf_color_trc_uls[];
107 extern const MXFCodecUL ff_mxf_color_space_uls[];
108
109 int ff_mxf_decode_pixel_layout(const char pixel_layout[16], enum AVPixelFormat *pix_fmt);
110 int ff_mxf_get_content_package_rate(AVRational time_base);
111
112
113 #define PRIxUID                             \
114     "%02x.%02x.%02x.%02x."                  \
115     "%02x.%02x.%02x.%02x."                  \
116     "%02x.%02x.%02x.%02x."                  \
117     "%02x.%02x.%02x.%02x"
118
119 #define UID_ARG(x) \
120     (x)[0],  (x)[1],  (x)[2],  (x)[3],      \
121     (x)[4],  (x)[5],  (x)[6],  (x)[7],      \
122     (x)[8],  (x)[9],  (x)[10], (x)[11],     \
123     (x)[12], (x)[13], (x)[14], (x)[15]      \
124
125 #ifdef DEBUG
126 #define PRINT_KEY(pc, s, x)                         \
127     av_log(pc, AV_LOG_VERBOSE,                      \
128            "%s "                                    \
129            "0x%02x,0x%02x,0x%02x,0x%02x,"           \
130            "0x%02x,0x%02x,0x%02x,0x%02x,"           \
131            "0x%02x,0x%02x,0x%02x,0x%02x,"           \
132            "0x%02x,0x%02x,0x%02x,0x%02x ",          \
133             s, UID_ARG(x));                         \
134     av_log(pc, AV_LOG_INFO,                         \
135            "%s "                                    \
136            "%02x.%02x.%02x.%02x."                   \
137            "%02x.%02x.%02x.%02x."                   \
138            "%02x.%02x.%02x.%02x."                   \
139            "%02x.%02x.%02x.%02x\n",                 \
140             s, UID_ARG(x))
141 #else
142 #define PRINT_KEY(pc, s, x) do { if(0)              \
143     av_log(pc, AV_LOG_VERBOSE,                      \
144            "%s "                                    \
145            "0x%02x,0x%02x,0x%02x,0x%02x,"           \
146            "0x%02x,0x%02x,0x%02x,0x%02x,"           \
147            "0x%02x,0x%02x,0x%02x,0x%02x,"           \
148            "0x%02x,0x%02x,0x%02x,0x%02x ",          \
149             s, UID_ARG(x));                         \
150     }while(0)
151 #endif
152
153 #endif /* AVFORMAT_MXF_H */