FFmpeg
4.4.7
libavcodec
cfhd.h
Go to the documentation of this file.
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
enum
CFHDSegment
{
99
LowPassSegment
= 0x1a4a,
100
LowPassEndSegment
= 0x1b4b,
101
HighPassSegment
= 0x0d0d,
102
BandSegment
= 0x0e0e,
103
HighPassEndSegment
= 0x0c0c,
104
CoefficientSegment
= 0x0f0f,
105
};
106
107
#define VLC_BITS 9
108
#define SUBBAND_COUNT 10
109
#define SUBBAND_COUNT_3D 17
110
111
typedef
struct
CFHD_RL_VLC_ELEM
{
112
int16_t
level
;
113
int8_t
len
;
114
uint16_t
run
;
115
}
CFHD_RL_VLC_ELEM
;
116
117
#define DWT_LEVELS 3
118
#define DWT_LEVELS_3D 6
119
120
typedef
struct
SubBand
{
121
ptrdiff_t
stride
;
122
int
a_width
;
123
int
width
;
124
int
a_height
;
125
int
height
;
126
int8_t
read_ok
;
127
}
SubBand
;
128
129
typedef
struct
Plane
{
130
int
width
;
131
int
height
;
132
ptrdiff_t
stride
;
133
134
int16_t *
idwt_buf
;
135
int16_t *
idwt_tmp
;
136
int
idwt_size
;
137
138
/* TODO: merge this into SubBand structure */
139
int16_t *
subband
[
SUBBAND_COUNT_3D
];
140
int16_t *
l_h
[10];
141
142
SubBand
band
[
DWT_LEVELS_3D
][4];
143
}
Plane
;
144
145
typedef
struct
Peak
{
146
int
level
;
147
int
offset
;
148
GetByteContext
base
;
149
}
Peak
;
150
151
typedef
struct
CFHDContext
{
152
AVCodecContext
*
avctx
;
153
154
CFHD_RL_VLC_ELEM
table_9_rl_vlc
[2088];
155
VLC
vlc_9
;
156
157
CFHD_RL_VLC_ELEM
table_18_rl_vlc
[4572];
158
VLC
vlc_18
;
159
160
int
lut
[2][256];
161
162
GetBitContext
gb
;
163
164
int
planes
;
165
int
frame_type
;
166
int
frame_index
;
167
int
sample_type
;
168
int
transform_type
;
169
int
coded_width
;
170
int
coded_height
;
171
int
cropped_height
;
172
enum
AVPixelFormat
coded_format
;
173
int
progressive
;
174
175
int
a_width
;
176
int
a_height
;
177
int
a_format
;
178
int
a_transform_type
;
179
180
int
bpc
;
// bits per channel/component
181
int
channel_cnt
;
182
int
subband_cnt
;
183
int
band_encoding
;
184
int
channel_num
;
185
uint8_t
lowpass_precision
;
186
uint16_t
quantisation
;
187
188
int
codebook
;
189
int
difference_coding
;
190
int
subband_num
;
191
int
level
;
192
int
subband_num_actual
;
193
194
uint8_t
prescale_table
[8];
195
Plane
plane
[4];
196
Peak
peak
;
197
198
CFHDDSPContext
dsp
;
199
}
CFHDContext
;
200
201
int
ff_cfhd_init_vlcs
(
CFHDContext
*
s
);
202
203
#endif
/* AVCODEC_CFHD_H */
SampleType
int32_t SampleType
Definition:
ac3enc.h:63
uint8_t
uint8_t
Definition:
audio_convert.c:194
avassert.h
simple assert() macros that are a bit more flexible than ISO C assert().
avcodec.h
Libavcodec external API header.
bytestream.h
s
#define s(width, name)
Definition:
cbs_vp9.c:257
CFHDSegment
CFHDSegment
Definition:
cfhd.h:98
CoefficientSegment
@ CoefficientSegment
Definition:
cfhd.h:104
HighPassSegment
@ HighPassSegment
Definition:
cfhd.h:101
LowPassSegment
@ LowPassSegment
Definition:
cfhd.h:99
HighPassEndSegment
@ HighPassEndSegment
Definition:
cfhd.h:103
BandSegment
@ BandSegment
Definition:
cfhd.h:102
LowPassEndSegment
@ LowPassEndSegment
Definition:
cfhd.h:100
ff_cfhd_init_vlcs
int ff_cfhd_init_vlcs(CFHDContext *s)
Definition:
cfhddata.c:276
CFHDParam
CFHDParam
Definition:
cfhd.h:34
Quantization
@ Quantization
Definition:
cfhd.h:76
FrameNumber
@ FrameNumber
Definition:
cfhd.h:82
SampleFlags
@ SampleFlags
Definition:
cfhd.h:81
BandHeight
@ BandHeight
Definition:
cfhd.h:73
NumSpatial
@ NumSpatial
Definition:
cfhd.h:47
NumLevels
@ NumLevels
Definition:
cfhd.h:55
HighpassWidth
@ HighpassWidth
Definition:
cfhd.h:65
SampleIndexTable
@ SampleIndexTable
Definition:
cfhd.h:36
VersionMajor
@ VersionMajor
Definition:
cfhd.h:38
FirstWavelet
@ FirstWavelet
Definition:
cfhd.h:48
EncodedFormat
@ EncodedFormat
Definition:
cfhd.h:92
BandWidth
@ BandWidth
Definition:
cfhd.h:72
PeakOffsetLow
@ PeakOffsetLow
Definition:
cfhd.h:87
LowpassHeight
@ LowpassHeight
Definition:
cfhd.h:57
WaveletCount
@ WaveletCount
Definition:
cfhd.h:45
BandSecondPass
@ BandSecondPass
Definition:
cfhd.h:90
LowpassPrecision
@ LowpassPrecision
Definition:
cfhd.h:60
SubbandNumber
@ SubbandNumber
Definition:
cfhd.h:71
BandHeader
@ BandHeader
Definition:
cfhd.h:78
BitstreamMarker
@ BitstreamMarker
Definition:
cfhd.h:37
LowpassScale
@ LowpassScale
Definition:
cfhd.h:69
PeakLevel
@ PeakLevel
Definition:
cfhd.h:86
PrescaleTable
@ PrescaleTable
Definition:
cfhd.h:91
HighpassHeight
@ HighpassHeight
Definition:
cfhd.h:66
BandTrailer
@ BandTrailer
Definition:
cfhd.h:79
LowpassSubband
@ LowpassSubband
Definition:
cfhd.h:54
PixelOffset
@ PixelOffset
Definition:
cfhd.h:58
VersionEdit
@ VersionEdit
Definition:
cfhd.h:41
BandScale
@ BandScale
Definition:
cfhd.h:77
ImageWidth
@ ImageWidth
Definition:
cfhd.h:51
LowpassWidth
@ LowpassWidth
Definition:
cfhd.h:56
BandEncoding
@ BandEncoding
Definition:
cfhd.h:75
LowpassBorder
@ LowpassBorder
Definition:
cfhd.h:67
DisplayHeight
@ DisplayHeight
Definition:
cfhd.h:93
NumFrames
@ NumFrames
Definition:
cfhd.h:43
PeakOffsetHigh
@ PeakOffsetHigh
Definition:
cfhd.h:88
WaveletType
@ WaveletType
Definition:
cfhd.h:61
WaveletNumber
@ WaveletNumber
Definition:
cfhd.h:62
BandCodingFlags
@ BandCodingFlags
Definition:
cfhd.h:85
HighpassBorder
@ HighpassBorder
Definition:
cfhd.h:68
Version
@ Version
Definition:
cfhd.h:89
Precision
@ Precision
Definition:
cfhd.h:83
GroupTrailer
@ GroupTrailer
Definition:
cfhd.h:49
VersionRevision
@ VersionRevision
Definition:
cfhd.h:40
ChannelCount
@ ChannelCount
Definition:
cfhd.h:44
NumBands
@ NumBands
Definition:
cfhd.h:64
LowpassDivisor
@ LowpassDivisor
Definition:
cfhd.h:70
ChannelWidth
@ ChannelWidth
Definition:
cfhd.h:94
ChannelHeight
@ ChannelHeight
Definition:
cfhd.h:95
ImageHeight
@ ImageHeight
Definition:
cfhd.h:52
SubbandBand
@ SubbandBand
Definition:
cfhd.h:74
ChannelNumber
@ ChannelNumber
Definition:
cfhd.h:80
VersionMinor
@ VersionMinor
Definition:
cfhd.h:39
SubbandCount
@ SubbandCount
Definition:
cfhd.h:46
InputFormat
@ InputFormat
Definition:
cfhd.h:84
FrameIndex
@ FrameIndex
Definition:
cfhd.h:53
LowpassQuantization
@ LowpassQuantization
Definition:
cfhd.h:59
WaveletLevel
@ WaveletLevel
Definition:
cfhd.h:63
DWT_LEVELS_3D
#define DWT_LEVELS_3D
Definition:
cfhd.h:118
SUBBAND_COUNT_3D
#define SUBBAND_COUNT_3D
Definition:
cfhd.h:109
cfhddsp.h
FrameType
FrameType
G723.1 frame types.
Definition:
g723_1.h:63
get_bits.h
bitstream reader API header.
AVPixelFormat
AVPixelFormat
Pixel format.
Definition:
pixfmt.h:64
AVCodecContext
main external API structure.
Definition:
avcodec.h:536
CFHDContext
Definition:
cfhd.h:151
CFHDContext::prescale_table
uint8_t prescale_table[8]
Definition:
cfhd.h:194
CFHDContext::frame_index
int frame_index
Definition:
cfhd.h:166
CFHDContext::coded_format
enum AVPixelFormat coded_format
Definition:
cfhd.h:172
CFHDContext::cropped_height
int cropped_height
Definition:
cfhd.h:171
CFHDContext::channel_cnt
int channel_cnt
Definition:
cfhd.h:181
CFHDContext::channel_num
int channel_num
Definition:
cfhd.h:184
CFHDContext::a_format
int a_format
Definition:
cfhd.h:177
CFHDContext::plane
Plane plane[4]
Definition:
cfhd.h:195
CFHDContext::bpc
int bpc
Definition:
cfhd.h:180
CFHDContext::coded_width
int coded_width
Definition:
cfhd.h:169
CFHDContext::codebook
int codebook
Definition:
cfhd.h:188
CFHDContext::subband_cnt
int subband_cnt
Definition:
cfhd.h:182
CFHDContext::vlc_9
VLC vlc_9
Definition:
cfhd.h:155
CFHDContext::planes
int planes
Definition:
cfhd.h:164
CFHDContext::a_transform_type
int a_transform_type
Definition:
cfhd.h:178
CFHDContext::progressive
int progressive
Definition:
cfhd.h:173
CFHDContext::transform_type
int transform_type
Definition:
cfhd.h:168
CFHDContext::vlc_18
VLC vlc_18
Definition:
cfhd.h:158
CFHDContext::peak
Peak peak
Definition:
cfhd.h:196
CFHDContext::frame_type
int frame_type
Definition:
cfhd.h:165
CFHDContext::a_height
int a_height
Definition:
cfhd.h:176
CFHDContext::subband_num_actual
int subband_num_actual
Definition:
cfhd.h:192
CFHDContext::gb
GetBitContext gb
Definition:
cfhd.h:162
CFHDContext::band_encoding
int band_encoding
Definition:
cfhd.h:183
CFHDContext::subband_num
int subband_num
Definition:
cfhd.h:190
CFHDContext::quantisation
uint16_t quantisation
Definition:
cfhd.h:186
CFHDContext::a_width
int a_width
Definition:
cfhd.h:175
CFHDContext::sample_type
int sample_type
Definition:
cfhd.h:167
CFHDContext::lut
int lut[2][256]
Definition:
cfhd.h:160
CFHDContext::difference_coding
int difference_coding
Definition:
cfhd.h:189
CFHDContext::lowpass_precision
uint8_t lowpass_precision
Definition:
cfhd.h:185
CFHDContext::level
int level
Definition:
cfhd.h:191
CFHDContext::table_18_rl_vlc
CFHD_RL_VLC_ELEM table_18_rl_vlc[4572]
Definition:
cfhd.h:157
CFHDContext::dsp
CFHDDSPContext dsp
Definition:
cfhd.h:198
CFHDContext::table_9_rl_vlc
CFHD_RL_VLC_ELEM table_9_rl_vlc[2088]
Definition:
cfhd.h:154
CFHDContext::coded_height
int coded_height
Definition:
cfhd.h:170
CFHDContext::avctx
AVCodecContext * avctx
Definition:
cfhd.h:152
CFHDDSPContext
Definition:
cfhddsp.h:25
CFHD_RL_VLC_ELEM
Definition:
cfhd.h:111
CFHD_RL_VLC_ELEM::run
uint16_t run
Definition:
cfhd.h:114
CFHD_RL_VLC_ELEM::len
int8_t len
Definition:
cfhd.h:113
CFHD_RL_VLC_ELEM::level
int16_t level
Definition:
cfhd.h:112
GetBitContext
Definition:
get_bits.h:61
GetByteContext
Definition:
bytestream.h:33
Peak
Definition:
cfhd.h:145
Peak::base
GetByteContext base
Definition:
cfhd.h:148
Peak::offset
int offset
Definition:
cfhd.h:147
Peak::level
int level
Definition:
cfhd.h:146
Plane
Definition:
cfhd.h:129
Plane::idwt_size
int idwt_size
Definition:
cfhd.h:136
Plane::band
SubBand band[DWT_LEVELS_3D][4]
Definition:
cfhd.h:142
Plane::subband
int16_t * subband[SUBBAND_COUNT_3D]
Definition:
cfhd.h:139
Plane::stride
ptrdiff_t stride
Definition:
cfhd.h:132
Plane::width
int width
Definition:
cfhd.h:130
Plane::height
int height
Definition:
cfhd.h:131
Plane::idwt_buf
int16_t * idwt_buf
Definition:
cfhd.h:134
Plane::l_h
int16_t * l_h[10]
Definition:
cfhd.h:140
Plane::idwt_tmp
int16_t * idwt_tmp
Definition:
cfhd.h:135
SubBand
Definition:
cfhd.h:120
SubBand::stride
ptrdiff_t stride
Definition:
cfhd.h:121
SubBand::a_height
int a_height
Definition:
cfhd.h:124
SubBand::read_ok
int8_t read_ok
Definition:
cfhd.h:126
SubBand::width
int width
Definition:
cfhd.h:123
SubBand::a_width
int a_width
Definition:
cfhd.h:122
SubBand::height
int height
Definition:
cfhd.h:125
VLC
Definition:
vlc.h:26
vlc.h
TransformType
TransformType
Definition:
webp.c:110
Generated on Wed May 6 2026 06:08:23 for FFmpeg by
1.9.1