]> git.sesse.net Git - ffmpeg/blob - libavcodec/cfhd.h
avformat/hlsenc: reindent the code
[ffmpeg] / libavcodec / cfhd.h
1 /*
2  * Copyright (c) 2015 Kieran Kunhya
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #ifndef AVCODEC_CFHD_H
22 #define AVCODEC_CFHD_H
23
24 #include <stdint.h>
25
26 #include "libavutil/avassert.h"
27
28 #include "avcodec.h"
29 #include "bytestream.h"
30 #include "get_bits.h"
31 #include "vlc.h"
32 #include "cfhddsp.h"
33
34 enum CFHDParam {
35     SampleType       =   1,
36     SampleIndexTable =   2,
37     BitstreamMarker  =   4,
38     VersionMajor     =   5,
39     VersionMinor     =   6,
40     VersionRevision  =   7,
41     VersionEdit      =   8,
42     TransformType    =  10,
43     NumFrames        =  11,
44     ChannelCount     =  12,
45     WaveletCount     =  13,
46     SubbandCount     =  14,
47     NumSpatial       =  15,
48     FirstWavelet     =  16,
49     GroupTrailer     =  18,
50     FrameType        =  19,
51     ImageWidth       =  20,
52     ImageHeight      =  21,
53     FrameIndex       =  23,
54     LowpassSubband   =  25,
55     NumLevels        =  26,
56     LowpassWidth     =  27,
57     LowpassHeight    =  28,
58     PixelOffset      =  33,
59     LowpassQuantization=34,
60     LowpassPrecision =  35,
61     WaveletType      =  37,
62     WaveletNumber    =  38,
63     WaveletLevel     =  39,
64     NumBands         =  40,
65     HighpassWidth    =  41,
66     HighpassHeight   =  42,
67     LowpassBorder    =  43,
68     HighpassBorder   =  44,
69     LowpassScale     =  45,
70     LowpassDivisor   =  46,
71     SubbandNumber    =  48,
72     BandWidth        =  49,
73     BandHeight       =  50,
74     SubbandBand      =  51,
75     BandEncoding     =  52,
76     Quantization     =  53,
77     BandScale        =  54,
78     BandHeader       =  55,
79     BandTrailer      =  56,
80     ChannelNumber    =  62,
81     SampleFlags      =  68,
82     FrameNumber      =  69,
83     Precision        =  70,
84     InputFormat      =  71,
85     BandCodingFlags  =  72,
86     PeakLevel        =  74,
87     PeakOffsetLow    =  75,
88     PeakOffsetHigh   =  76,
89     Version          =  79,
90     BandSecondPass   =  82,
91     PrescaleTable    =  83,
92     EncodedFormat    =  84,
93     DisplayHeight    =  85,
94     ChannelWidth     = 104,
95     ChannelHeight    = 105,
96 };
97
98 #define VLC_BITS       9
99 #define SUBBAND_COUNT 10
100 #define SUBBAND_COUNT_3D 17
101
102 typedef struct CFHD_RL_VLC_ELEM {
103     int16_t level;
104     int8_t len;
105     uint16_t run;
106 } CFHD_RL_VLC_ELEM;
107
108 #define DWT_LEVELS 3
109 #define DWT_LEVELS_3D 6
110
111 typedef struct SubBand {
112     ptrdiff_t stride;
113     int a_width;
114     int width;
115     int a_height;
116     int height;
117 } SubBand;
118
119 typedef struct Plane {
120     int width;
121     int height;
122     ptrdiff_t stride;
123
124     int16_t *idwt_buf;
125     int16_t *idwt_tmp;
126     int      idwt_size;
127
128     /* TODO: merge this into SubBand structure */
129     int16_t *subband[SUBBAND_COUNT_3D];
130     int16_t *l_h[10];
131
132     SubBand band[DWT_LEVELS_3D][4];
133 } Plane;
134
135 typedef struct Peak {
136     int level;
137     int offset;
138     GetByteContext base;
139 } Peak;
140
141 typedef struct CFHDContext {
142     AVCodecContext *avctx;
143
144     CFHD_RL_VLC_ELEM table_9_rl_vlc[2088];
145     VLC vlc_9;
146
147     CFHD_RL_VLC_ELEM table_18_rl_vlc[4572];
148     VLC vlc_18;
149
150     int lut[2][256];
151
152     GetBitContext gb;
153
154     int planes;
155     int frame_type;
156     int frame_index;
157     int sample_type;
158     int transform_type;
159     int coded_width;
160     int coded_height;
161     int cropped_height;
162     enum AVPixelFormat coded_format;
163     int progressive;
164
165     int a_width;
166     int a_height;
167     int a_format;
168
169     int bpc; // bits per channel/component
170     int channel_cnt;
171     int subband_cnt;
172     int band_encoding;
173     int channel_num;
174     uint8_t lowpass_precision;
175     uint16_t quantisation;
176
177     int codebook;
178     int difference_coding;
179     int subband_num;
180     int level;
181     int subband_num_actual;
182
183     uint8_t prescale_table[8];
184     Plane plane[4];
185     Peak peak;
186
187     CFHDDSPContext dsp;
188 } CFHDContext;
189
190 int ff_cfhd_init_vlcs(CFHDContext *s);
191
192 #endif /* AVCODEC_CFHD_H */