]> git.sesse.net Git - ffmpeg/blob - libavcodec/dirac.h
Merge commit 'e4eb13ca77624401ea7cef1ed6ad8e2d13fd2063'
[ffmpeg] / libavcodec / dirac.h
1 /*
2  * Copyright (C) 2007 Marco Gerards <marco@gnu.org>
3  * Copyright (C) 2009 David Conrad
4  * Copyright (C) 2011 Jordi Ortiz
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #ifndef AVCODEC_DIRAC_H
24 #define AVCODEC_DIRAC_H
25
26 /**
27  * @file
28  * Interface to Dirac Decoder/Encoder
29  * @author Marco Gerards <marco@gnu.org>
30  * @author David Conrad
31  * @author Jordi Ortiz
32  */
33
34 #include "avcodec.h"
35
36 /**
37  * Parse code values:
38  *
39  * Dirac Specification ->
40  * 9.6.1  Table 9.1
41  *
42  * VC-2 Specification  ->
43  * 10.4.1 Table 10.1
44  */
45
46 enum DiracParseCodes {
47     DIRAC_PCODE_SEQ_HEADER      = 0x00,
48     DIRAC_PCODE_END_SEQ         = 0x10,
49     DIRAC_PCODE_AUX             = 0x20,
50     DIRAC_PCODE_PAD             = 0x30,
51     DIRAC_PCODE_PICTURE_CODED   = 0x08,
52     DIRAC_PCODE_PICTURE_RAW     = 0x48,
53     DIRAC_PCODE_PICTURE_LOW_DEL = 0xC8,
54     DIRAC_PCODE_PICTURE_HQ      = 0xE8,
55     DIRAC_PCODE_INTER_NOREF_CO1 = 0x0A,
56     DIRAC_PCODE_INTER_NOREF_CO2 = 0x09,
57     DIRAC_PCODE_INTER_REF_CO1   = 0x0D,
58     DIRAC_PCODE_INTER_REF_CO2   = 0x0E,
59     DIRAC_PCODE_INTRA_REF_CO    = 0x0C,
60     DIRAC_PCODE_INTRA_REF_RAW   = 0x4C,
61     DIRAC_PCODE_INTRA_REF_PICT  = 0xCC,
62     DIRAC_PCODE_MAGIC           = 0x42424344,
63 };
64
65 typedef struct DiracVersionInfo {
66     int major;
67     int minor;
68 } DiracVersionInfo;
69
70 typedef struct AVDiracSeqHeader {
71     unsigned width;
72     unsigned height;
73     uint8_t chroma_format;          ///< 0: 444  1: 422  2: 420
74
75     uint8_t interlaced;
76     uint8_t top_field_first;
77
78     uint8_t frame_rate_index;       ///< index into dirac_frame_rate[]
79     uint8_t aspect_ratio_index;     ///< index into dirac_aspect_ratio[]
80
81     uint16_t clean_width;
82     uint16_t clean_height;
83     uint16_t clean_left_offset;
84     uint16_t clean_right_offset;
85
86     uint8_t pixel_range_index;      ///< index into dirac_pixel_range_presets[]
87     uint8_t color_spec_index;       ///< index into dirac_color_spec_presets[]
88
89     int profile;
90     int level;
91
92     AVRational framerate;
93     AVRational sample_aspect_ratio;
94
95     enum AVPixelFormat pix_fmt;
96     enum AVColorRange color_range;
97     enum AVColorPrimaries color_primaries;
98     enum AVColorTransferCharacteristic color_trc;
99     enum AVColorSpace colorspace;
100
101     DiracVersionInfo version;
102     int bit_depth;
103 } AVDiracSeqHeader;
104
105 /**
106  * Parse a Dirac sequence header.
107  *
108  * @param dsh this function will allocate and fill an AVDiracSeqHeader struct
109  *            and write it into this pointer. The caller must free it with
110  *            av_free().
111  * @param buf the data buffer
112  * @param buf_size the size of the data buffer in bytes
113  * @param log_ctx if non-NULL, this function will log errors here
114  * @return 0 on success, a negative AVERROR code on failure
115  */
116 int av_dirac_parse_sequence_header(AVDiracSeqHeader **dsh,
117                                    const uint8_t *buf, size_t buf_size,
118                                    void *log_ctx);
119
120 #endif /* AVCODEC_DIRAC_H */