[svn] / branches / dev-api-4 / xvidcore / vfw / src / config.h Repository:
ViewVC logotype

Annotation of /branches/dev-api-4/xvidcore/vfw/src/config.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1277 - (view) (download)

1 : edgomez 1054 /*****************************************************************************
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 1277 * $Id: config.h,v 1.1.2.14 2003-12-18 14:51:40 syskin Exp $
23 : edgomez 1054 *
24 :     ****************************************************************************/
25 : suxen_drol 889 #ifndef _CONFIG_H_
26 :     #define _CONFIG_H_
27 :    
28 :     #include <windows.h>
29 : suxen_drol 1017 #include "vfwext.h"
30 : suxen_drol 889
31 : suxen_drol 983 extern HINSTANCE g_hInst;
32 : suxen_drol 889
33 :    
34 :     /* small hack */
35 :     #ifndef IDC_HAND
36 :     #define IDC_HAND MAKEINTRESOURCE(32649)
37 :     #endif
38 :    
39 :     /* one kilobit */
40 :     #define CONFIG_KBPS 1000
41 :    
42 : suxen_drol 1017 /* min/max bitrate when not specified by profile */
43 :     #define DEFAULT_MIN_KBPS 16
44 :     #define DEFAULT_MAX_KBPS 10000
45 :    
46 : suxen_drol 889 /* registry stuff */
47 :     #define XVID_REG_KEY HKEY_CURRENT_USER
48 :     #define XVID_REG_PARENT "Software\\GNU"
49 :     #define XVID_REG_CHILD "XviD"
50 :     #define XVID_REG_CLASS "config"
51 :    
52 :     #define XVID_BUILD __TIME__ ", " __DATE__
53 :     #define XVID_WEBSITE "http://www.xvid.org/"
54 :     #define XVID_SPECIAL_BUILD "(Vanilla CVS Build)"
55 :    
56 :     /* constants */
57 : suxen_drol 983 #define CONFIG_2PASS_FILE "\\video.pass"
58 : suxen_drol 889
59 :     /* codec modes */
60 : suxen_drol 1017 #define RC_MODE_1PASS 0
61 :     #define RC_MODE_2PASS1 1
62 :     #define RC_MODE_2PASS2 2
63 :     #define RC_MODE_NULL 3
64 : suxen_drol 889
65 : suxen_drol 1017 #define RC_ZONE_WEIGHT 0
66 :     #define RC_ZONE_QUANT 1
67 :    
68 : suxen_drol 889 /* vhq modes */
69 :     #define VHQ_OFF 0
70 :     #define VHQ_MODE_DECISION 1
71 :     #define VHQ_LIMITED_SEARCH 2
72 :     #define VHQ_MEDIUM_SEARCH 3
73 :     #define VHQ_WIDE_SEARCH 4
74 :    
75 : suxen_drol 983 /* quantizer modes */
76 :     #define QUANT_MODE_H263 0
77 :     #define QUANT_MODE_MPEG 1
78 :     #define QUANT_MODE_CUSTOM 2
79 : suxen_drol 889
80 :    
81 : suxen_drol 1017 #define MAX_ZONES 64
82 : suxen_drol 889 typedef struct
83 :     {
84 : suxen_drol 1017 int frame;
85 :    
86 : suxen_drol 1069 int type;
87 : suxen_drol 1017 int mode;
88 :     int weight;
89 :     int quant;
90 : suxen_drol 1061
91 : suxen_drol 1017 unsigned int greyscale;
92 :     unsigned int chroma_opt;
93 :     unsigned int bvop_threshold;
94 :     } zone_t;
95 :    
96 :    
97 :     typedef struct
98 :     {
99 : suxen_drol 889 /********** ATTENTION **********/
100 : edgomez 1053 int mode; /* Vidomi directly accesses these vars */
101 :     int bitrate;
102 :     int desired_size; /* please try to avoid modifications here */
103 :     char stats[MAX_PATH];
104 : suxen_drol 889 /*******************************/
105 : suxen_drol 1061 int use_2pass_bitrate; /* use bitrate for 2pass2 (instead of desired size) */
106 : suxen_drol 889
107 : suxen_drol 1017 /* profile */
108 : suxen_drol 983 char profile_name[MAX_PATH];
109 : suxen_drol 1017 int profile; /* used internally; *not* written to registry */
110 : suxen_drol 983
111 : suxen_drol 1017 int quant_type;
112 :     BYTE qmatrix_intra[64];
113 :     BYTE qmatrix_inter[64];
114 : suxen_drol 889 int lum_masking;
115 :     int interlacing;
116 :     int qpel;
117 :     int gmc;
118 : suxen_drol 1017 int reduced_resolution;
119 : suxen_drol 983 int use_bvop;
120 : suxen_drol 889 int max_bframes;
121 :     int bquant_ratio;
122 :     int bquant_offset;
123 :     int packed;
124 : suxen_drol 983 int closed_gov;
125 : edgomez 1267 int display_aspect_ratio; /* aspect ratio */
126 : syskin 1277 int ar_x, ar_y; /* picture aspect ratio */
127 :     int par_x, par_y; /* custom pixel aspect ratio */
128 :     int ar_mode; /* picture/pixel AR */
129 : suxen_drol 889
130 : suxen_drol 1017 /* zones */
131 :     int num_zones;
132 :     zone_t zones[MAX_ZONES];
133 :     int cur_zone; /* used internally; *not* written to registry */
134 : suxen_drol 889
135 : suxen_drol 1017 /* single pass */
136 :     int rc_reaction_delay_factor;
137 :     int rc_averaging_period;
138 :     int rc_buffer;
139 :    
140 : suxen_drol 1061 /* 2pass1 */
141 :     int discard1pass;
142 :    
143 : suxen_drol 1017 /* 2pass2 */
144 : suxen_drol 889 int keyframe_boost;
145 : edgomez 1242 int kfthreshold;
146 : suxen_drol 889 int kfreduction;
147 :     int curve_compression_high;
148 :     int curve_compression_low;
149 : edgomez 1202 int overflow_control_strength;
150 : suxen_drol 889 int twopass_max_overflow_improvement;
151 :     int twopass_max_overflow_degradation;
152 :    
153 : suxen_drol 1017 /* motion */
154 :     int motion_search;
155 :     int vhq_mode;
156 :     int chromame;
157 : edgomez 1193 int cartoon_mode;
158 : suxen_drol 1017 int max_key_interval;
159 : suxen_drol 889 int frame_drop_ratio;
160 :    
161 : suxen_drol 1017 /* quant */
162 :     int min_iquant;
163 :     int max_iquant;
164 :     int min_pquant;
165 :     int max_pquant;
166 :     int min_bquant;
167 :     int max_bquant;
168 :     int trellis_quant;
169 : suxen_drol 889
170 : suxen_drol 1017 /* debug */
171 :     int num_threads;
172 :     int fourcc_used;
173 : suxen_drol 1032 int vop_debug;
174 : suxen_drol 1017 int debug;
175 : suxen_drol 1061 int display_status;
176 : suxen_drol 889
177 :     DWORD cpu;
178 : suxen_drol 1017
179 :     /* internal */
180 :     int ci_valid;
181 :     VFWEXT_CONFIGURE_INFO_T ci;
182 :    
183 : suxen_drol 889 BOOL save;
184 :     } CONFIG;
185 :    
186 :     typedef struct PROPSHEETINFO
187 :     {
188 : suxen_drol 983 int idd;
189 : suxen_drol 889 CONFIG * config;
190 :     } PROPSHEETINFO;
191 :    
192 :     typedef struct REG_INT
193 :     {
194 :     char* reg_value;
195 :     int* config_int;
196 :     int def;
197 :     } REG_INT;
198 :    
199 :     typedef struct REG_STR
200 :     {
201 :     char* reg_value;
202 :     char* config_str;
203 :     char* def;
204 :     } REG_STR;
205 :    
206 : suxen_drol 983
207 : suxen_drol 1017 #define PROFILE_ADAPTQUANT 0x00000001
208 :     #define PROFILE_BVOP 0x00000002
209 :     #define PROFILE_MPEGQUANT 0x00000004
210 :     #define PROFILE_INTERLACE 0x00000008
211 :     #define PROFILE_QPEL 0x00000010
212 :     #define PROFILE_GMC 0x00000020
213 :     #define PROFILE_REDUCED 0x00000040 /* dynamic resolution conversion */
214 :    
215 :     #define PROFILE_AS (PROFILE_ADAPTQUANT|PROFILE_BVOP|PROFILE_MPEGQUANT|PROFILE_INTERLACE|PROFILE_QPEL|PROFILE_GMC)
216 :     #define PROFILE_ARTS (PROFILE_ADAPTQUANT|PROFILE_REDUCED)
217 :    
218 : syskin 1277 static const int PARS[][2] = {
219 :     {1, 1},
220 :     {12, 11},
221 :     {10, 11},
222 :     {16, 11},
223 :     {40, 33},
224 :     {0, 0},
225 :     };
226 : suxen_drol 1017
227 : syskin 1277
228 :    
229 :    
230 : suxen_drol 1017 typedef struct
231 :     {
232 :     char * name;
233 :     int id; /* mpeg-4 profile id; iso/iec 14496-2:2001 table G-1 */
234 :     int width;
235 :     int height;
236 :     int fps;
237 :     int max_objects;
238 :     int total_vmv_buffer_sz; /* macroblock memory; when BVOPS=false, vmv = 2*vcv; when BVOPS=true, vmv = 3*vcv*/
239 :     int max_vmv_buffer_sz; /* max macroblocks per vop */
240 :     int vcv_decoder_rate; /* macroblocks decoded per second */
241 :     int max_acpred_mbs; /* percentage */
242 :     int max_vbv_size; /* max vbv size (bits) 16368 bits */
243 :     int max_video_packet_length; /* bits */
244 :     int max_bitrate; /* kbits/s */
245 :     unsigned int flags;
246 :     } profile_t;
247 :    
248 :    
249 :     extern const profile_t profiles[];
250 :    
251 :    
252 : suxen_drol 983 void config_reg_get(CONFIG * config);
253 :     void config_reg_set(CONFIG * config);
254 :    
255 : suxen_drol 889 BOOL CALLBACK main_proc(HWND, UINT, WPARAM, LPARAM);
256 :     BOOL CALLBACK about_proc(HWND, UINT, WPARAM, LPARAM);
257 :    
258 : suxen_drol 983
259 : suxen_drol 889 #endif /* _CONFIG_H_ */

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