[svn] / trunk / xvidcore / vfw / src / config.h Repository:
ViewVC logotype

Annotation of /trunk/xvidcore/vfw/src/config.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1510 - (view) (download)

1 : edgomez 1382 /*****************************************************************************
2 :     *
3 :     * XVID MPEG-4 VIDEO CODEC
4 :     * - VFW configuration header -
5 :     *
6 :     * Copyright(C) 2002-2003 Anonymous <xvid-devel@xvid.org>
7 :     *
8 :     * This program is free software ; you can redistribute it and/or modify
9 :     * it under the terms of the GNU General Public License as published by
10 :     * the Free Software Foundation ; either version 2 of the License, or
11 :     * (at your option) any later version.
12 :     *
13 :     * This program 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
16 :     * GNU General Public License for more details.
17 :     *
18 :     * You should have received a copy of the GNU General Public License
19 :     * along with this program ; if not, write to the Free Software
20 :     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 :     *
22 : syskin 1510 * $Id: config.h,v 1.4 2004-07-18 12:45:57 syskin Exp $
23 : edgomez 1382 *
24 :     ****************************************************************************/
25 :     #ifndef _CONFIG_H_
26 :     #define _CONFIG_H_
27 :    
28 :     #include <windows.h>
29 :     #include "vfwext.h"
30 :     #include <xvid.h>
31 :    
32 :     extern HINSTANCE g_hInst;
33 :    
34 :    
35 :     /* small hack */
36 :     #ifndef IDC_HAND
37 :     #define IDC_HAND MAKEINTRESOURCE(32649)
38 :     #endif
39 :    
40 :     /* one kilobit */
41 :     #define CONFIG_KBPS 1000
42 :    
43 :     /* min/max bitrate when not specified by profile */
44 :     #define DEFAULT_MIN_KBPS 16
45 :     #define DEFAULT_MAX_KBPS 10000
46 :     #define DEFAULT_QUANT 400
47 :    
48 :     /* registry stuff */
49 :     #define XVID_REG_KEY HKEY_CURRENT_USER
50 :     #define XVID_REG_PARENT "Software\\GNU"
51 :     #define XVID_REG_CHILD "XviD"
52 :     #define XVID_REG_CLASS "config"
53 :    
54 :     #define XVID_BUILD __TIME__ ", " __DATE__
55 :     #define XVID_WEBSITE "http://www.xvid.org/"
56 :     #define XVID_SPECIAL_BUILD "(Vanilla CVS Build)"
57 :    
58 :     /* constants */
59 :     #define CONFIG_2PASS_FILE "\\video.pass"
60 :    
61 :     /* codec modes */
62 :     #define RC_MODE_1PASS 0
63 :     #define RC_MODE_2PASS1 1
64 :     #define RC_MODE_2PASS2 2
65 :     #define RC_MODE_NULL 3
66 :    
67 :     #define RC_ZONE_WEIGHT 0
68 :     #define RC_ZONE_QUANT 1
69 :    
70 :     /* vhq modes */
71 :     #define VHQ_OFF 0
72 :     #define VHQ_MODE_DECISION 1
73 :     #define VHQ_LIMITED_SEARCH 2
74 :     #define VHQ_MEDIUM_SEARCH 3
75 :     #define VHQ_WIDE_SEARCH 4
76 :    
77 :     /* quantizer modes */
78 :     #define QUANT_MODE_H263 0
79 :     #define QUANT_MODE_MPEG 1
80 :     #define QUANT_MODE_CUSTOM 2
81 :    
82 :    
83 :     #define MAX_ZONES 64
84 :     typedef struct
85 :     {
86 :     int frame;
87 :    
88 :     int type;
89 :     int mode;
90 :     int weight;
91 :     int quant;
92 :    
93 :     unsigned int greyscale;
94 :     unsigned int chroma_opt;
95 :     unsigned int bvop_threshold;
96 :     } zone_t;
97 :    
98 :    
99 :     typedef struct
100 :     {
101 :     /********** ATTENTION **********/
102 :     int mode; /* Vidomi directly accesses these vars */
103 :     int bitrate;
104 :     int desired_size; /* please try to avoid modifications here */
105 :     char stats[MAX_PATH];
106 :     /*******************************/
107 :     int use_2pass_bitrate; /* use bitrate for 2pass2 (instead of desired size) */
108 :     int desired_quant; /* for one-pass constant quant */
109 :    
110 :     /* profile */
111 :     char profile_name[MAX_PATH];
112 :     int profile; /* used internally; *not* written to registry */
113 :    
114 :     int quant_type;
115 :     BYTE qmatrix_intra[64];
116 :     BYTE qmatrix_inter[64];
117 :     int lum_masking;
118 :     int interlacing;
119 : syskin 1487 int tff;
120 : edgomez 1382 int qpel;
121 :     int gmc;
122 :     int reduced_resolution;
123 :     int use_bvop;
124 :     int max_bframes;
125 :     int bquant_ratio;
126 :     int bquant_offset;
127 :     int packed;
128 :     int closed_gov;
129 :     int display_aspect_ratio; /* aspect ratio */
130 :     int ar_x, ar_y; /* picture aspect ratio */
131 :     int par_x, par_y; /* custom pixel aspect ratio */
132 :     int ar_mode; /* picture/pixel AR */
133 :    
134 :     /* zones */
135 :     int num_zones;
136 :     zone_t zones[MAX_ZONES];
137 :     int cur_zone; /* used internally; *not* written to registry */
138 :    
139 :     /* single pass */
140 :     int rc_reaction_delay_factor;
141 :     int rc_averaging_period;
142 :     int rc_buffer;
143 :    
144 :     /* 2pass1 */
145 :     int discard1pass;
146 :    
147 :     /* 2pass2 */
148 :     int keyframe_boost;
149 :     int kfthreshold;
150 :     int kfreduction;
151 :     int curve_compression_high;
152 :     int curve_compression_low;
153 :     int overflow_control_strength;
154 :     int twopass_max_overflow_improvement;
155 :     int twopass_max_overflow_degradation;
156 :    
157 :     /* bitrate calculator */
158 :     int target_size;
159 :     int subtitle_size;
160 :     int container_type;
161 :     int hours;
162 :     int minutes;
163 :     int seconds;
164 :     int fps;
165 :     int audio_mode;
166 :     int audio_type;
167 :     int audio_rate;
168 :     int audio_size;
169 :    
170 :     /* motion */
171 :     int motion_search;
172 :     int vhq_mode;
173 : syskin 1510 int vhq_bframe;
174 : edgomez 1382 int chromame;
175 :     int cartoon_mode;
176 :     int turbo;
177 :     int max_key_interval;
178 :     int frame_drop_ratio;
179 :    
180 :     /* quant */
181 :     int min_iquant;
182 :     int max_iquant;
183 :     int min_pquant;
184 :     int max_pquant;
185 :     int min_bquant;
186 :     int max_bquant;
187 :     int trellis_quant;
188 :    
189 :     /* debug */
190 :     int num_threads;
191 :     int fourcc_used;
192 :     int vop_debug;
193 :     int debug;
194 :     int display_status;
195 :     int full1pass;
196 :    
197 :     DWORD cpu;
198 :    
199 :     /* internal */
200 :     int ci_valid;
201 :     VFWEXT_CONFIGURE_INFO_T ci;
202 :    
203 :     BOOL save;
204 :     } CONFIG;
205 :    
206 :     typedef struct PROPSHEETINFO
207 :     {
208 :     int idd;
209 :     CONFIG * config;
210 :     } PROPSHEETINFO;
211 :    
212 :     typedef struct REG_INT
213 :     {
214 :     char* reg_value;
215 :     int* config_int;
216 :     int def;
217 :     } REG_INT;
218 :    
219 :     typedef struct REG_STR
220 :     {
221 :     char* reg_value;
222 :     char* config_str;
223 :     char* def;
224 :     } REG_STR;
225 :    
226 :    
227 :     #define PROFILE_ADAPTQUANT 0x00000001
228 :     #define PROFILE_BVOP 0x00000002
229 :     #define PROFILE_MPEGQUANT 0x00000004
230 :     #define PROFILE_INTERLACE 0x00000008
231 :     #define PROFILE_QPEL 0x00000010
232 :     #define PROFILE_GMC 0x00000020
233 :     #define PROFILE_REDUCED 0x00000040 /* dynamic resolution conversion */
234 :    
235 :     #define PROFILE_AS (PROFILE_ADAPTQUANT|PROFILE_BVOP|PROFILE_MPEGQUANT|PROFILE_INTERLACE|PROFILE_QPEL|PROFILE_GMC)
236 :     #define PROFILE_ARTS (PROFILE_ADAPTQUANT|PROFILE_REDUCED)
237 :    
238 :     static const int PARS[][2] = {
239 :     {1, 1},
240 :     {12, 11},
241 :     {10, 11},
242 :     {16, 11},
243 :     {40, 33},
244 :     {0, 0},
245 :     };
246 :    
247 :    
248 :    
249 :    
250 :     typedef struct
251 :     {
252 :     char * name;
253 :     int id; /* mpeg-4 profile id; iso/iec 14496-2:2001 table G-1 */
254 :     int width;
255 :     int height;
256 :     int fps;
257 :     int max_objects;
258 :     int total_vmv_buffer_sz; /* macroblock memory; when BVOPS=false, vmv = 2*vcv; when BVOPS=true, vmv = 3*vcv*/
259 :     int max_vmv_buffer_sz; /* max macroblocks per vop */
260 :     int vcv_decoder_rate; /* macroblocks decoded per second */
261 :     int max_acpred_mbs; /* percentage */
262 :     int max_vbv_size; /* max vbv size (bits) 16368 bits */
263 :     int max_video_packet_length; /* bits */
264 :     int max_bitrate; /* kbits/s */
265 :     unsigned int flags;
266 :     } profile_t;
267 :    
268 :    
269 :     extern const profile_t profiles[];
270 :    
271 :    
272 :     void config_reg_get(CONFIG * config);
273 :     void config_reg_set(CONFIG * config);
274 :     void sort_zones(zone_t * zones, int zone_num, int * sel);
275 :    
276 :    
277 :     BOOL CALLBACK main_proc(HWND, UINT, WPARAM, LPARAM);
278 :     BOOL CALLBACK about_proc(HWND, UINT, WPARAM, LPARAM);
279 :    
280 :     #endif /* _CONFIG_H_ */

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4