]> git.sesse.net Git - x264/blob - common/set.h
Cosmetic: update various file headers.
[x264] / common / set.h
1 /*****************************************************************************
2  * set.h: h264 encoder
3  *****************************************************************************
4  * Copyright (C) 2003-2008 x264 project
5  *
6  * Authors: Loren Merritt <lorenm@u.washington.edu>
7  *          Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifndef X264_SET_H
25 #define X264_SET_H
26
27 enum profile_e
28 {
29     PROFILE_BASELINE = 66,
30     PROFILE_MAIN     = 77,
31     PROFILE_EXTENDED = 88,
32     PROFILE_HIGH    = 100,
33     PROFILE_HIGH10  = 110,
34     PROFILE_HIGH422 = 122,
35     PROFILE_HIGH444 = 144,
36     PROFILE_HIGH444_PREDICTIVE = 244,
37 };
38
39 enum cqm4_e
40 {
41     CQM_4IY = 0,
42     CQM_4PY = 1,
43     CQM_4IC = 2,
44     CQM_4PC = 3
45 };
46 enum cqm8_e
47 {
48     CQM_8IY = 0,
49     CQM_8PY = 1
50 };
51
52 typedef struct
53 {
54     int i_id;
55
56     int i_profile_idc;
57     int i_level_idc;
58
59     int b_constraint_set0;
60     int b_constraint_set1;
61     int b_constraint_set2;
62
63     int i_log2_max_frame_num;
64
65     int i_poc_type;
66     /* poc 0 */
67     int i_log2_max_poc_lsb;
68     /* poc 1 */
69     int b_delta_pic_order_always_zero;
70     int i_offset_for_non_ref_pic;
71     int i_offset_for_top_to_bottom_field;
72     int i_num_ref_frames_in_poc_cycle;
73     int i_offset_for_ref_frame[256];
74
75     int i_num_ref_frames;
76     int b_gaps_in_frame_num_value_allowed;
77     int i_mb_width;
78     int i_mb_height;
79     int b_frame_mbs_only;
80     int b_mb_adaptive_frame_field;
81     int b_direct8x8_inference;
82
83     int b_crop;
84     struct
85     {
86         int i_left;
87         int i_right;
88         int i_top;
89         int i_bottom;
90     } crop;
91
92     int b_vui;
93     struct
94     {
95         int b_aspect_ratio_info_present;
96         int i_sar_width;
97         int i_sar_height;
98
99         int b_overscan_info_present;
100         int b_overscan_info;
101
102         int b_signal_type_present;
103         int i_vidformat;
104         int b_fullrange;
105         int b_color_description_present;
106         int i_colorprim;
107         int i_transfer;
108         int i_colmatrix;
109
110         int b_chroma_loc_info_present;
111         int i_chroma_loc_top;
112         int i_chroma_loc_bottom;
113
114         int b_timing_info_present;
115         int i_num_units_in_tick;
116         int i_time_scale;
117         int b_fixed_frame_rate;
118
119         int b_bitstream_restriction;
120         int b_motion_vectors_over_pic_boundaries;
121         int i_max_bytes_per_pic_denom;
122         int i_max_bits_per_mb_denom;
123         int i_log2_max_mv_length_horizontal;
124         int i_log2_max_mv_length_vertical;
125         int i_num_reorder_frames;
126         int i_max_dec_frame_buffering;
127
128         /* FIXME to complete */
129     } vui;
130
131     int b_qpprime_y_zero_transform_bypass;
132
133 } x264_sps_t;
134
135 typedef struct
136 {
137     int i_id;
138     int i_sps_id;
139
140     int b_cabac;
141
142     int b_pic_order;
143     int i_num_slice_groups;
144
145     int i_num_ref_idx_l0_active;
146     int i_num_ref_idx_l1_active;
147
148     int b_weighted_pred;
149     int b_weighted_bipred;
150
151     int i_pic_init_qp;
152     int i_pic_init_qs;
153
154     int i_chroma_qp_index_offset;
155
156     int b_deblocking_filter_control;
157     int b_constrained_intra_pred;
158     int b_redundant_pic_cnt;
159
160     int b_transform_8x8_mode;
161
162     int i_cqm_preset;
163     const uint8_t *scaling_list[6]; /* could be 8, but we don't allow separate Cb/Cr lists */
164
165 } x264_pps_t;
166
167 /* default quant matrices */
168 static const uint8_t x264_cqm_jvt4i[16] =
169 {
170       6,13,20,28,
171      13,20,28,32,
172      20,28,32,37,
173      28,32,37,42
174 };
175 static const uint8_t x264_cqm_jvt4p[16] =
176 {
177     10,14,20,24,
178     14,20,24,27,
179     20,24,27,30,
180     24,27,30,34
181 };
182 static const uint8_t x264_cqm_jvt8i[64] =
183 {
184      6,10,13,16,18,23,25,27,
185     10,11,16,18,23,25,27,29,
186     13,16,18,23,25,27,29,31,
187     16,18,23,25,27,29,31,33,
188     18,23,25,27,29,31,33,36,
189     23,25,27,29,31,33,36,38,
190     25,27,29,31,33,36,38,40,
191     27,29,31,33,36,38,40,42
192 };
193 static const uint8_t x264_cqm_jvt8p[64] =
194 {
195      9,13,15,17,19,21,22,24,
196     13,13,17,19,21,22,24,25,
197     15,17,19,21,22,24,25,27,
198     17,19,21,22,24,25,27,28,
199     19,21,22,24,25,27,28,30,
200     21,22,24,25,27,28,30,32,
201     22,24,25,27,28,30,32,33,
202     24,25,27,28,30,32,33,35
203 };
204 static const uint8_t x264_cqm_flat16[64] =
205 {
206     16,16,16,16,16,16,16,16,
207     16,16,16,16,16,16,16,16,
208     16,16,16,16,16,16,16,16,
209     16,16,16,16,16,16,16,16,
210     16,16,16,16,16,16,16,16,
211     16,16,16,16,16,16,16,16,
212     16,16,16,16,16,16,16,16,
213     16,16,16,16,16,16,16,16
214 };
215 static const uint8_t * const x264_cqm_jvt[6] =
216 {
217     x264_cqm_jvt4i, x264_cqm_jvt4p,
218     x264_cqm_jvt4i, x264_cqm_jvt4p,
219     x264_cqm_jvt8i, x264_cqm_jvt8p
220 };
221
222 int  x264_cqm_init( x264_t *h );
223 void x264_cqm_delete( x264_t *h );
224 int  x264_cqm_parse_file( x264_t *h, const char *filename );
225
226 #endif