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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1272 - (view) (download)

1 : suxen_drol 889 /**************************************************************************
2 :     *
3 :     * XVID VFW FRONTEND
4 :     * config
5 :     *
6 :     * This program is free software; you can redistribute it and/or modify
7 :     * it under the terms of the GNU General Public License as published by
8 :     * the Free Software Foundation; either version 2 of the License, or
9 :     * (at your option) any later version.
10 :     *
11 :     * This program 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
14 :     * GNU General Public License for more details.
15 :     *
16 :     * You should have received a copy of the GNU General Public License
17 :     * along with this program; if not, write to the Free Software
18 :     * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 :     *
20 :     *************************************************************************/
21 :    
22 :     /**************************************************************************
23 :     *
24 :     * History:
25 :     *
26 :     * 15.06.2002 added bframes options
27 :     * 21.04.2002 fixed custom matrix support, tried to get dll size down
28 :     * 17.04.2002 re-enabled lumi masking in 1st pass
29 :     * 15.04.2002 updated cbr support
30 :     * 07.04.2002 min keyframe interval checkbox
31 :     * 2-pass max bitrate and overflow customization
32 :     * 04.04.2002 interlacing support
33 :     * hinted ME support
34 :     * 24.03.2002 daniel smith <danielsmith@astroboymail.com>
35 :     * added Foxer's new CBR engine
36 :     * - cbr_buffer is being used as reaction delay (quick hack)
37 :     * 23.03.2002 daniel smith <danielsmith@astroboymail.com>
38 :     * added load defaults button
39 :     * merged foxer's alternative 2-pass code (2-pass alt tab)
40 :     * added proper tooltips
41 :     * moved registry data into reg_ints/reg_strs arrays
42 :     * added DEBUGERR output on errors instead of returning
43 :     * 16.03.2002 daniel smith <danielsmith@astroboymail.com>
44 :     * rewrote/restructured most of file
45 :     * added tooltips (kind of - dirty message hook method)
46 :     * split tabs into a main dialog / advanced prop sheet
47 :     * advanced controls are now enabled/disabled by mode
48 :     * added modulated quantization, DX50 fourcc
49 :     * 11.03.2002 Min Chen <chenm001@163.com>
50 :     * now get Core Version use xvid_init()
51 :     * 05.03.2002 Min Chen <chenm001@163.com>
52 :     * Add Core version display to about box
53 :     * 01.12.2001 inital version; (c)2001 peter ross <pross@xvid.org>
54 :     *
55 :     *************************************************************************/
56 :    
57 :    
58 :     #include <windows.h>
59 :     #include <commctrl.h>
60 :     #include <shlobj.h>
61 :     #include <prsht.h>
62 :    
63 : edgomez 1053 #include <stdio.h> /* sprintf */
64 :     #include <xvid.h> /* XviD API */
65 : suxen_drol 889
66 : suxen_drol 983 #include "debug.h"
67 : suxen_drol 889 #include "config.h"
68 :     #include "resource.h"
69 :    
70 :    
71 : suxen_drol 983 #define CONSTRAINVAL(X,Y,Z) if((X)<(Y)) X=Y; if((X)>(Z)) X=Z;
72 :     #define IsDlgChecked(hwnd,idc) (IsDlgButtonChecked(hwnd,idc) == BST_CHECKED)
73 : suxen_drol 1017 #define CheckDlg(hwnd,idc,value) CheckDlgButton(hwnd,idc, value?BST_CHECKED:BST_UNCHECKED)
74 : suxen_drol 983 #define EnableDlgWindow(hwnd,idc,state) EnableWindow(GetDlgItem(hwnd,idc),state)
75 : suxen_drol 889
76 : suxen_drol 983 HINSTANCE g_hInst;
77 :     HWND g_hTooltip;
78 : suxen_drol 889
79 : suxen_drol 983 /* enumerates child windows, assigns tooltips */
80 :     BOOL CALLBACK enum_tooltips(HWND hWnd, LPARAM lParam)
81 :     {
82 :     char help[500];
83 :    
84 :     if (LoadString(g_hInst, GetDlgCtrlID(hWnd), help, 500))
85 :     {
86 :     TOOLINFO ti;
87 :     ti.cbSize = sizeof(TOOLINFO);
88 :     ti.uFlags = TTF_SUBCLASS | TTF_IDISHWND;
89 :     ti.hwnd = GetParent(hWnd);
90 :     ti.uId = (LPARAM)hWnd;
91 :     ti.lpszText = help;
92 :     SendMessage(g_hTooltip, TTM_ADDTOOL, 0, (LPARAM)&ti);
93 :     }
94 :    
95 :     return TRUE;
96 :     }
97 :    
98 :    
99 :     /* ===================================================================================== */
100 :     /* MPEG-4 PROFILES/LEVELS ============================================================== */
101 :     /* ===================================================================================== */
102 :    
103 :    
104 :    
105 :     /* default vbv_occupancy is (64/170)*vbv_buffer_size */
106 :    
107 : suxen_drol 1017 const profile_t profiles[] =
108 : suxen_drol 983 {
109 : suxen_drol 1017 /* name p@l, w h fps obj Tvmv vmv vcv ac% vbv pkt kbps flags */
110 :     { "Simple @ L0", 0x08, 176, 144, 15, 1, 198, 99, 1485, 100, 10*16368, 2048, 64, 0 },
111 : edgomez 1184 /* simple@l0: max f_code=1, intra_dc_vlc_threshold=0 */
112 :     /* if ac preidition is used, adaptive quantization must not be used */
113 :     /* <=qcif must be used */
114 : suxen_drol 1017 { "Simple @ L1", 0x01, 176, 144, 15, 4, 198, 99, 1485, 100, 10*16368, 2048, 64, PROFILE_ADAPTQUANT },
115 :     { "Simple @ L2", 0x02, 352, 288, 15, 4, 792, 396, 5940, 100, 40*16368, 4096, 128, PROFILE_ADAPTQUANT },
116 :     { "Simple @ L3", 0x03, 352, 288, 15, 4, 792, 396, 11880, 100, 40*16368, 8192, 384, PROFILE_ADAPTQUANT },
117 : suxen_drol 983
118 : suxen_drol 1017 { "ARTS @ L1", 0x91, 176, 144, 15, 4, 198, 99, 1485, 100, 10*16368, 8192, 64, PROFILE_ARTS },
119 :     { "ARTS @ L2", 0x92, 352, 288, 15, 4, 792, 396, 5940, 100, 40*16368, 16384, 128, PROFILE_ARTS },
120 :     { "ARTS @ L3", 0x93, 352, 288, 30, 4, 792, 396, 11880, 100, 40*16368, 16384, 384, PROFILE_ARTS },
121 :     { "ARTS @ L4", 0x94, 352, 288, 30, 16, 792, 396, 11880, 100, 80*16368, 16384, 2000, PROFILE_ARTS },
122 : suxen_drol 983
123 : suxen_drol 1017 { "AS @ L0", 0xf0, 176, 144, 30, 1, 297, 99, 2970, 100, 10*16368, 2048, 128, PROFILE_AS },
124 :     { "AS @ L1", 0xf1, 176, 144, 30, 4, 297, 99, 2970, 100, 10*16368, 2048, 128, PROFILE_AS },
125 :     { "AS @ L2", 0xf2, 352, 288, 15, 4, 1188, 396, 5940, 100, 40*16368, 4096, 384, PROFILE_AS },
126 :     { "AS @ L3", 0xf3, 352, 288, 30, 4, 1188, 396, 11880, 100, 40*16368, 4096, 768, PROFILE_AS },
127 : suxen_drol 1069 /* ISMA Profile 1, (ASP) @ L3b (CIF, 1.5 Mb/s) CIF(352x288), 30fps, 1.5Mbps max ??? */
128 : suxen_drol 1017 { "AS @ L4", 0xf4, 352, 576, 30, 4, 2376, 792, 23760, 50, 80*16368, 8192, 3000, PROFILE_AS },
129 :     { "AS @ L5", 0xf5, 720, 576, 30, 4, 4860, 1620, 48600, 25, 112*16368, 16384, 8000, PROFILE_AS },
130 : suxen_drol 983
131 : Isibaar 1272 #ifdef DXN_PROFILES
132 : suxen_drol 1017 { "DXN Handheld", 0x00, 176, 144, 15, -1, 198, 99, 1485, 100, 16*16368, -1, 128, PROFILE_ADAPTQUANT },
133 :     { "DXN Portable NTSC", 0x00, 352, 240, 30, -1, 990, 330, 9900, 100, 64*16368, -1, 768, PROFILE_ADAPTQUANT|PROFILE_BVOP },
134 :     { "DXN Portable PAL", 0x00, 352, 288, 25, -1, 1188, 396, 9900, 100, 64*16368, -1, 768, PROFILE_ADAPTQUANT|PROFILE_BVOP },
135 :     { "DXN HT NTSC", 0x00, 720, 480, 30, -1, 4050, 1350, 40500, 100, 192*16368, -1, 4000, PROFILE_ADAPTQUANT|PROFILE_BVOP|PROFILE_INTERLACE },
136 :     { "DXN HT PAL", 0x00, 720, 576, 25, -1, 4860, 1620, 40500, 100, 192*16368, -1, 4000, PROFILE_ADAPTQUANT|PROFILE_BVOP|PROFILE_INTERLACE },
137 :     { "DXN HDTV", 0x00, 1280, 720, 30, -1,10800, 3600, 108000, 100, 384*16368, -1, 8000, PROFILE_ADAPTQUANT|PROFILE_BVOP|PROFILE_INTERLACE },
138 : Isibaar 1272 #endif
139 : suxen_drol 1017 { "(unrestricted)", 0x00, 0, 0, 0, 0, 0, 0, 0, 100, 0*16368, 0, 0, 0xffffffff },
140 : suxen_drol 983 };
141 :    
142 :    
143 :     /* ===================================================================================== */
144 :     /* REGISTRY ============================================================================ */
145 :     /* ===================================================================================== */
146 :    
147 :     /* registry info structs */
148 : suxen_drol 889 CONFIG reg;
149 :    
150 : suxen_drol 983 static const REG_INT reg_ints[] = {
151 : suxen_drol 1017 {"mode", &reg.mode, RC_MODE_1PASS},
152 :     {"bitrate", &reg.bitrate, 700},
153 : suxen_drol 1061 {"desired_size", &reg.desired_size, 570000},
154 :     {"use_2pass_bitrate", &reg.use_2pass_bitrate, 0},
155 : suxen_drol 1017
156 : suxen_drol 1061 /* profile */
157 :     {"quant_type", &reg.quant_type, 0},
158 : suxen_drol 889 {"lum_masking", &reg.lum_masking, 0},
159 :     {"interlacing", &reg.interlacing, 0},
160 :     {"qpel", &reg.qpel, 0},
161 :     {"gmc", &reg.gmc, 0},
162 : suxen_drol 1061 {"reduced_resolution", &reg.reduced_resolution, 0},
163 : suxen_drol 983 {"use_bvop", &reg.use_bvop, 0},
164 :     {"max_bframes", &reg.max_bframes, 2},
165 : suxen_drol 1017 {"bquant_ratio", &reg.bquant_ratio, 150}, /* 100-base float */
166 :     {"bquant_offset", &reg.bquant_offset, 100}, /* 100-base float */
167 : suxen_drol 889 {"packed", &reg.packed, 0},
168 : suxen_drol 983 {"closed_gov", &reg.closed_gov, 1},
169 : edgomez 1267 {"aspect_ratio", &reg.display_aspect_ratio, 0},
170 : suxen_drol 889
171 : suxen_drol 1061 /* zones */
172 :     {"num_zones", &reg.num_zones, 1},
173 : suxen_drol 889
174 : suxen_drol 1061 /* single pass */
175 :     {"rc_reaction_delay_factor",&reg.rc_reaction_delay_factor, 16},
176 :     {"rc_averaging_period", &reg.rc_averaging_period, 100},
177 :     {"rc_buffer", &reg.rc_buffer, 100},
178 :    
179 :     /* 2pass1 */
180 :     {"discard1pass", &reg.discard1pass, 1},
181 :    
182 :     /* 2pass2 */
183 : suxen_drol 889 {"keyframe_boost", &reg.keyframe_boost, 0},
184 :     {"kfreduction", &reg.kfreduction, 20},
185 : edgomez 1242 {"kfthreshold", &reg.kfthreshold, 1},
186 : suxen_drol 889 {"curve_compression_high", &reg.curve_compression_high, 0},
187 :     {"curve_compression_low", &reg.curve_compression_low, 0},
188 : syskin 1268 {"overflow_control_strength", &reg.overflow_control_strength, 5},
189 :     {"twopass_max_overflow_improvement", &reg.twopass_max_overflow_improvement, 5},
190 :     {"twopass_max_overflow_degradation", &reg.twopass_max_overflow_degradation, 5},
191 : suxen_drol 1052
192 : suxen_drol 1061 /* motion */
193 :     {"motion_search", &reg.motion_search, 6},
194 :     {"vhq_mode", &reg.vhq_mode, 0},
195 :     {"chromame", &reg.chromame, 0},
196 : edgomez 1193 {"cartoon_mode", &reg.cartoon_mode, 0},
197 : suxen_drol 1061 {"max_key_interval", &reg.max_key_interval, 300},
198 :     {"frame_drop_ratio", &reg.frame_drop_ratio, 0},
199 :    
200 :     /* quant */
201 :     {"min_iquant", &reg.min_iquant, 2},
202 :     {"max_iquant", &reg.max_iquant, 31},
203 :     {"min_pquant", &reg.min_pquant, 2},
204 :     {"max_pquant", &reg.max_pquant, 31},
205 :     {"min_bquant", &reg.min_bquant, 2},
206 :     {"max_bquant", &reg.max_bquant, 31},
207 :     {"trellis_quant", &reg.trellis_quant, 0},
208 :    
209 :     /* debug */
210 :     {"fourcc_used", &reg.fourcc_used, 0},
211 :     {"debug", &reg.debug, 0x0},
212 :     {"vop_debug", &reg.vop_debug, 0},
213 :     {"display_status", &reg.display_status, 1},
214 : suxen_drol 889 };
215 :    
216 : suxen_drol 983 static const REG_STR reg_strs[] = {
217 :     {"profile", reg.profile_name, "(unrestricted)"},
218 :     {"stats", reg.stats, CONFIG_2PASS_FILE},
219 : suxen_drol 889 };
220 :    
221 :    
222 : suxen_drol 1017 zone_t stmp;
223 :     static const REG_INT reg_zone[] = {
224 :     {"zone%i_frame", &stmp.frame, 0},
225 :     {"zone%i_mode", &stmp.mode, RC_ZONE_WEIGHT},
226 :     {"zone%i_weight", &stmp.weight, 100}, /* 100-base float */
227 :     {"zone%i_quant", &stmp.quant, 500}, /* 100-base float */
228 : suxen_drol 1069 {"zone%i_type", &stmp.type, XVID_TYPE_AUTO},
229 : suxen_drol 1017 {"zone%i_greyscale", &stmp.greyscale, 0},
230 :     {"zone%i_chroma_opt", &stmp.chroma_opt, 0},
231 :     {"zone%i_bvop_threshold", &stmp.bvop_threshold, 0},
232 :     };
233 :    
234 :     static const BYTE default_qmatrix_intra[] = {
235 :     8, 17,18,19,21,23,25,27,
236 :     17,18,19,21,23,25,27,28,
237 :     20,21,22,23,24,26,28,30,
238 :     21,22,23,24,26,28,30,32,
239 :     22,23,24,26,28,30,32,35,
240 :     23,24,26,28,30,32,35,38,
241 :     25,26,28,30,32,35,38,41,
242 :     27,28,30,32,35,38,41,45
243 :     };
244 :    
245 :     static const BYTE default_qmatrix_inter[] = {
246 :     16,17,18,19,20,21,22,23,
247 :     17,18,19,20,21,22,23,24,
248 :     18,19,20,21,22,23,24,25,
249 :     19,20,21,22,23,24,26,27,
250 :     20,21,22,23,25,26,27,28,
251 :     21,22,23,24,26,27,28,30,
252 :     22,23,24,26,27,28,30,31,
253 :     23,24,25,27,28,30,31,33
254 :     };
255 :    
256 :    
257 :    
258 : suxen_drol 889 #define REG_GET_B(X, Y, Z) size=sizeof((Z));if(RegQueryValueEx(hKey, X, 0, 0, Y, &size) != ERROR_SUCCESS) {memcpy(Y, Z, sizeof((Z)));}
259 :    
260 :     void config_reg_get(CONFIG * config)
261 :     {
262 : suxen_drol 1017 char tmp[32];
263 :     HKEY hKey;
264 : suxen_drol 889 DWORD size;
265 : suxen_drol 1017 int i,j;
266 : suxen_drol 889 xvid_gbl_info_t info;
267 :    
268 :     memset(&info, 0, sizeof(info));
269 :     info.version = XVID_VERSION;
270 :     xvid_global(0, XVID_GBL_INFO, &info, NULL);
271 :     reg.cpu = info.cpu_flags;
272 :     reg.num_threads = info.num_threads;
273 :    
274 :     RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT "\\" XVID_REG_CHILD, 0, KEY_READ, &hKey);
275 :    
276 : suxen_drol 1017 /* read integer values */
277 :     for (i=0 ; i<sizeof(reg_ints)/sizeof(REG_INT); i++) {
278 : suxen_drol 889 size = sizeof(int);
279 : suxen_drol 1017 if (RegQueryValueEx(hKey, reg_ints[i].reg_value, 0, 0, (LPBYTE)reg_ints[i].config_int, &size) != ERROR_SUCCESS) {
280 : suxen_drol 889 *reg_ints[i].config_int = reg_ints[i].def;
281 : suxen_drol 1017 }
282 : suxen_drol 889 }
283 :    
284 : suxen_drol 1017 /* read string values */
285 :     for (i=0 ; i<sizeof(reg_strs)/sizeof(REG_STR); i++) {
286 : suxen_drol 889 size = MAX_PATH;
287 : suxen_drol 1017 if (RegQueryValueEx(hKey, reg_strs[i].reg_value, 0, 0, (LPBYTE)reg_strs[i].config_str, &size) != ERROR_SUCCESS) {
288 : suxen_drol 889 memcpy(reg_strs[i].config_str, reg_strs[i].def, MAX_PATH);
289 :     }
290 :     }
291 :    
292 : suxen_drol 983 reg.profile = 0;
293 :     for (i=0; i<sizeof(profiles)/sizeof(profile_t); i++) {
294 :     if (strcmpi(profiles[i].name, reg.profile_name) == 0) {
295 :     reg.profile = i;
296 :     }
297 :     }
298 :    
299 : suxen_drol 1017 memcpy(config, &reg, sizeof(CONFIG));
300 : suxen_drol 889
301 : suxen_drol 1017
302 :     /* read quant matrices */
303 :     REG_GET_B("qmatrix_intra", config->qmatrix_intra, default_qmatrix_intra);
304 :     REG_GET_B("qmatrix_inter", config->qmatrix_inter, default_qmatrix_inter);
305 :    
306 :    
307 :     /* read zones */
308 :     if (config->num_zones>MAX_ZONES) {
309 :     config->num_zones=MAX_ZONES;
310 :     }else if (config->num_zones<=0) {
311 :     config->num_zones = 1;
312 :     }
313 :    
314 :     for (i=0; i<config->num_zones; i++) {
315 :     for (j=0; j<sizeof(reg_zone)/sizeof(REG_INT); j++) {
316 :     size = sizeof(int);
317 :    
318 :     wsprintf(tmp, reg_zone[j].reg_value, i);
319 :     if (RegQueryValueEx(hKey, tmp, 0, 0, (LPBYTE)reg_zone[j].config_int, &size) != ERROR_SUCCESS)
320 :     *reg_zone[j].config_int = reg_zone[j].def;
321 :     }
322 :    
323 :     memcpy(&config->zones[i], &stmp, sizeof(zone_t));
324 :     }
325 :    
326 : suxen_drol 889 RegCloseKey(hKey);
327 :     }
328 :    
329 :    
330 :     /* put config settings in registry */
331 :    
332 :     #define REG_SET_B(X, Y) RegSetValueEx(hKey, X, 0, REG_BINARY, Y, sizeof((Y)))
333 :    
334 :     void config_reg_set(CONFIG * config)
335 :     {
336 : suxen_drol 1017 char tmp[64];
337 :     HKEY hKey;
338 : suxen_drol 889 DWORD dispo;
339 : suxen_drol 1017 int i,j;
340 : suxen_drol 889
341 :     if (RegCreateKeyEx(
342 :     XVID_REG_KEY,
343 :     XVID_REG_PARENT "\\" XVID_REG_CHILD,
344 :     0,
345 :     XVID_REG_CLASS,
346 :     REG_OPTION_NON_VOLATILE,
347 :     KEY_WRITE,
348 :     0,
349 :     &hKey,
350 :     &dispo) != ERROR_SUCCESS)
351 :     {
352 : suxen_drol 983 DPRINTF("Couldn't create XVID_REG_SUBKEY - GetLastError=%i", GetLastError());
353 : suxen_drol 889 return;
354 :     }
355 :    
356 :     memcpy(&reg, config, sizeof(CONFIG));
357 :    
358 : suxen_drol 1017 /* set integer values */
359 :     for (i=0 ; i<sizeof(reg_ints)/sizeof(REG_INT); i++) {
360 : suxen_drol 889 RegSetValueEx(hKey, reg_ints[i].reg_value, 0, REG_DWORD, (LPBYTE)reg_ints[i].config_int, sizeof(int));
361 :     }
362 :    
363 : suxen_drol 1017 /* set string values */
364 :     strcpy(reg.profile_name, profiles[reg.profile].name);
365 :     for (i=0 ; i<sizeof(reg_strs)/sizeof(REG_STR); i++) {
366 : suxen_drol 889 RegSetValueEx(hKey, reg_strs[i].reg_value, 0, REG_SZ, reg_strs[i].config_str, lstrlen(reg_strs[i].config_str)+1);
367 :     }
368 :    
369 : suxen_drol 1017 /* set quant matrices */
370 :     REG_SET_B("qmatrix_intra", config->qmatrix_intra);
371 :     REG_SET_B("qmatrix_inter", config->qmatrix_inter);
372 : suxen_drol 889
373 : suxen_drol 1017 /* set seections */
374 :     for (i=0; i<config->num_zones; i++) {
375 :     memcpy(&stmp, &config->zones[i], sizeof(zone_t));
376 :     for (j=0; j<sizeof(reg_zone)/sizeof(REG_INT); j++) {
377 :     wsprintf(tmp, reg_zone[j].reg_value, i);
378 :     RegSetValueEx(hKey, tmp, 0, REG_DWORD, (LPBYTE)reg_zone[j].config_int, sizeof(int));
379 :     }
380 :     }
381 :    
382 : suxen_drol 889 RegCloseKey(hKey);
383 :     }
384 :    
385 :    
386 :     /* clear XviD registry key, load defaults */
387 :    
388 :     void config_reg_default(CONFIG * config)
389 :     {
390 :     HKEY hKey;
391 :    
392 : suxen_drol 1017 if (RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT, 0, KEY_ALL_ACCESS, &hKey)) {
393 : suxen_drol 983 DPRINTF("Couldn't open registry key for deletion - GetLastError=%i", GetLastError());
394 : suxen_drol 889 return;
395 :     }
396 :    
397 : suxen_drol 1017 if (RegDeleteKey(hKey, XVID_REG_CHILD)) {
398 : suxen_drol 983 DPRINTF("Couldn't delete registry key - GetLastError=%i", GetLastError());
399 : suxen_drol 889 return;
400 :     }
401 :    
402 :     RegCloseKey(hKey);
403 :     config_reg_get(config);
404 :     config_reg_set(config);
405 :     }
406 :    
407 :    
408 :     /* leaves current config value if dialog item is empty */
409 :     int config_get_int(HWND hDlg, INT item, int config)
410 :     {
411 :     BOOL success = FALSE;
412 :     int tmp = GetDlgItemInt(hDlg, item, &success, TRUE);
413 :     return (success) ? tmp : config;
414 :     }
415 :    
416 :    
417 :     int config_get_uint(HWND hDlg, UINT item, int config)
418 :     {
419 :     BOOL success = FALSE;
420 :     int tmp = GetDlgItemInt(hDlg, item, &success, FALSE);
421 :     return (success) ? tmp : config;
422 :     }
423 :    
424 :    
425 : suxen_drol 1017 /* we use "100 base" floats */
426 : suxen_drol 889
427 : suxen_drol 1017 #define FLOAT_BUF_SZ 20
428 :     int get_dlgitem_float(HWND hDlg, UINT item, int def)
429 :     {
430 :     char buf[FLOAT_BUF_SZ];
431 :    
432 :     if (GetDlgItemText(hDlg, item, buf, FLOAT_BUF_SZ) == 0)
433 :     return def;
434 :    
435 :     return (int)(atof(buf)*100);
436 :     }
437 :    
438 :     void set_dlgitem_float(HWND hDlg, UINT item, int value)
439 :     {
440 :     char buf[FLOAT_BUF_SZ];
441 :     sprintf(buf, "%.2f", (float)value/100);
442 :     SetDlgItemText(hDlg, item, buf);
443 :     }
444 :    
445 :    
446 : suxen_drol 1032 #define HEX_BUF_SZ 16
447 :     unsigned int get_dlgitem_hex(HWND hDlg, UINT item, unsigned int def)
448 :     {
449 :     char buf[HEX_BUF_SZ];
450 :     unsigned int value;
451 :    
452 :     if (GetDlgItemText(hDlg, item, buf, HEX_BUF_SZ) == 0)
453 :     return def;
454 :    
455 :     if (sscanf(buf,"0x%x", &value)==1 || sscanf(buf,"%x", &value)==1) {
456 :     return value;
457 :     }
458 :    
459 :     return def;
460 :     }
461 :    
462 :     void set_dlgitem_hex(HWND hDlg, UINT item, int value)
463 :     {
464 :     char buf[HEX_BUF_SZ];
465 :     wsprintf(buf, "0x%x", value);
466 :     SetDlgItemText(hDlg, item, buf);
467 :     }
468 :    
469 : suxen_drol 983 /* ===================================================================================== */
470 :     /* QUANT MATRIX DIALOG ================================================================= */
471 :     /* ===================================================================================== */
472 :    
473 :     void quant_upload(HWND hDlg, CONFIG* config)
474 : suxen_drol 889 {
475 : suxen_drol 983 int i;
476 : suxen_drol 889
477 : suxen_drol 1017 for (i=0 ; i<64; i++) {
478 : suxen_drol 983 SetDlgItemInt(hDlg, IDC_QINTRA00 + i, config->qmatrix_intra[i], FALSE);
479 :     SetDlgItemInt(hDlg, IDC_QINTER00 + i, config->qmatrix_inter[i], FALSE);
480 : suxen_drol 889 }
481 :     }
482 :    
483 :    
484 : suxen_drol 983 void quant_download(HWND hDlg, CONFIG* config)
485 : suxen_drol 889 {
486 : suxen_drol 983 int i;
487 : suxen_drol 889
488 : suxen_drol 1017 for (i=0; i<64; i++) {
489 : suxen_drol 983 int temp;
490 : suxen_drol 889
491 : suxen_drol 983 temp = config_get_uint(hDlg, i + IDC_QINTRA00, config->qmatrix_intra[i]);
492 :     CONSTRAINVAL(temp, 1, 255);
493 :     config->qmatrix_intra[i] = temp;
494 : suxen_drol 889
495 : suxen_drol 983 temp = config_get_uint(hDlg, i + IDC_QINTER00, config->qmatrix_inter[i]);
496 :     CONSTRAINVAL(temp, 1, 255);
497 :     config->qmatrix_inter[i] = temp;
498 : suxen_drol 889 }
499 :     }
500 :    
501 : suxen_drol 1017
502 :     void quant_loadsave(HWND hDlg, CONFIG * config, int save)
503 :     {
504 :     char file[MAX_PATH];
505 :     OPENFILENAME ofn;
506 :     HANDLE hFile;
507 :     DWORD read=128, wrote=0;
508 :     BYTE quant_data[128];
509 :    
510 :     strcpy(file, "\\matrix");
511 :     memset(&ofn, 0, sizeof(OPENFILENAME));
512 :     ofn.lStructSize = sizeof(OPENFILENAME);
513 :    
514 :     ofn.hwndOwner = hDlg;
515 :     ofn.lpstrFilter = "All files (*.*)\0*.*\0\0";
516 :     ofn.lpstrFile = file;
517 :     ofn.nMaxFile = MAX_PATH;
518 :     ofn.Flags = OFN_PATHMUSTEXIST;
519 :    
520 :     if (save) {
521 :     ofn.Flags |= OFN_OVERWRITEPROMPT;
522 :     if (GetSaveFileName(&ofn)) {
523 :     hFile = CreateFile(file, GENERIC_WRITE, 0, 0, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
524 :    
525 :     quant_download(hDlg, config);
526 :     memcpy(quant_data, config->qmatrix_intra, 64);
527 :     memcpy(quant_data+64, config->qmatrix_inter, 64);
528 :    
529 :     if (hFile == INVALID_HANDLE_VALUE) {
530 :     DPRINTF("Couldn't save quant matrix");
531 :     }else{
532 :     if (!WriteFile(hFile, quant_data, 128, &wrote, 0)) {
533 :     DPRINTF("Couldnt write quant matrix");
534 :     }
535 :     }
536 :     CloseHandle(hFile);
537 :     }
538 :     }else{
539 :     ofn.Flags |= OFN_FILEMUSTEXIST;
540 :     if (GetOpenFileName(&ofn)) {
541 :     hFile = CreateFile(file, GENERIC_READ, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
542 :    
543 :     if (hFile == INVALID_HANDLE_VALUE) {
544 :     DPRINTF("Couldn't load quant matrix");
545 :     } else {
546 :     if (!ReadFile(hFile, quant_data, 128, &read, 0)) {
547 :     DPRINTF("Couldnt read quant matrix");
548 :     }else{
549 :     memcpy(config->qmatrix_intra, quant_data, 64);
550 :     memcpy(config->qmatrix_inter, quant_data+64, 64);
551 :     quant_upload(hDlg, config);
552 :     }
553 :     }
554 :     CloseHandle(hFile);
555 :     }
556 :     }
557 :     }
558 :    
559 : suxen_drol 983 /* quantization matrix dialog proc */
560 : suxen_drol 889
561 : suxen_drol 983 BOOL CALLBACK quantmatrix_proc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
562 : suxen_drol 889 {
563 : suxen_drol 983 CONFIG* config = (CONFIG*)GetWindowLong(hDlg, GWL_USERDATA);
564 : suxen_drol 889
565 : suxen_drol 983 switch (uMsg)
566 : suxen_drol 889 {
567 : suxen_drol 983 case WM_INITDIALOG :
568 :     SetWindowLong(hDlg, GWL_USERDATA, lParam);
569 :     config = (CONFIG*)lParam;
570 :     quant_upload(hDlg, config);
571 : suxen_drol 889
572 : suxen_drol 983 if (g_hTooltip)
573 :     {
574 :     EnumChildWindows(hDlg, enum_tooltips, 0);
575 :     }
576 : suxen_drol 889 break;
577 :    
578 : suxen_drol 983 case WM_COMMAND :
579 : suxen_drol 889
580 : suxen_drol 1017 if (HIWORD(wParam) == BN_CLICKED) {
581 :     switch(LOWORD(wParam)) {
582 :     case IDOK :
583 :     quant_download(hDlg, config);
584 :     EndDialog(hDlg, IDOK);
585 :     break;
586 : suxen_drol 889
587 : suxen_drol 1017 case IDCANCEL :
588 :     EndDialog(hDlg, IDCANCEL);
589 :     break;
590 : suxen_drol 889
591 : suxen_drol 1017 case IDC_SAVE :
592 :     quant_loadsave(hDlg, config, 1);
593 :     break;
594 : suxen_drol 889
595 : suxen_drol 1017 case IDC_LOAD :
596 :     quant_loadsave(hDlg, config, 0);
597 :     break;
598 : suxen_drol 889
599 : suxen_drol 1017 default :
600 :     return FALSE;
601 :     }
602 :     break;
603 :     }
604 :     return FALSE;
605 : suxen_drol 889
606 : suxen_drol 983 default :
607 : suxen_drol 1017 return FALSE;
608 : suxen_drol 889 }
609 : suxen_drol 983
610 : suxen_drol 1017 return TRUE;
611 : suxen_drol 889 }
612 :    
613 :    
614 : suxen_drol 983 /* ===================================================================================== */
615 :     /* ADVANCED DIALOG PAGES ================================================================ */
616 :     /* ===================================================================================== */
617 : suxen_drol 889
618 : suxen_drol 983 /* initialise pages */
619 :     void adv_init(HWND hDlg, int idd, CONFIG * config)
620 : suxen_drol 889 {
621 : suxen_drol 983 unsigned int i;
622 : suxen_drol 889
623 : suxen_drol 983 switch(idd) {
624 :     case IDD_PROFILE :
625 :     for (i=0; i<sizeof(profiles)/sizeof(profile_t); i++)
626 :     SendDlgItemMessage(hDlg, IDC_PROFILE_PROFILE, CB_ADDSTRING, 0, (LPARAM)profiles[i].name);
627 : suxen_drol 1017 SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_ADDSTRING, 0, (LPARAM)"H.263");
628 :     SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_ADDSTRING, 0, (LPARAM)"MPEG");
629 :     SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_ADDSTRING, 0, (LPARAM)"MPEG-Custom");
630 : edgomez 1267
631 :     SendDlgItemMessage(hDlg, IDC_ASPECT_RATIO, CB_ADDSTRING, 0, (LPARAM)"1:1 (Default)");
632 :     SendDlgItemMessage(hDlg, IDC_ASPECT_RATIO, CB_ADDSTRING, 0, (LPARAM)"4:3 (Anamorph)");
633 :     SendDlgItemMessage(hDlg, IDC_ASPECT_RATIO, CB_ADDSTRING, 0, (LPARAM)"16:9 (Anamorph)");
634 :     /* reserved for future use if acceptance is there for DAR */
635 :     #if 0
636 :     SendDlgItemMessage(hDlg, IDC_ASPECT_RATIO, CB_ADDSTRING, 0, (LPARAM)"Custom");
637 :     #endif
638 : suxen_drol 983 break;
639 : suxen_drol 1017
640 :     case IDD_LEVEL :
641 :     for (i=0; i<sizeof(profiles)/sizeof(profile_t); i++)
642 :     SendDlgItemMessage(hDlg, IDC_LEVEL_PROFILE, CB_ADDSTRING, 0, (LPARAM)profiles[i].name);
643 :     break;
644 : suxen_drol 983
645 : suxen_drol 1017 case IDD_ZONE :
646 : suxen_drol 1069 EnableDlgWindow(hDlg, IDC_ZONE_FETCH, config->ci_valid);
647 : suxen_drol 1017 break;
648 :    
649 : suxen_drol 983 case IDD_MOTION :
650 :     SendDlgItemMessage(hDlg, IDC_MOTION, CB_ADDSTRING, 0, (LPARAM)"0 - None");
651 :     SendDlgItemMessage(hDlg, IDC_MOTION, CB_ADDSTRING, 0, (LPARAM)"1 - Very Low");
652 :     SendDlgItemMessage(hDlg, IDC_MOTION, CB_ADDSTRING, 0, (LPARAM)"2 - Low");
653 :     SendDlgItemMessage(hDlg, IDC_MOTION, CB_ADDSTRING, 0, (LPARAM)"3 - Medium");
654 :     SendDlgItemMessage(hDlg, IDC_MOTION, CB_ADDSTRING, 0, (LPARAM)"4 - High");
655 :     SendDlgItemMessage(hDlg, IDC_MOTION, CB_ADDSTRING, 0, (LPARAM)"5 - Very High");
656 :     SendDlgItemMessage(hDlg, IDC_MOTION, CB_ADDSTRING, 0, (LPARAM)"6 - Ultra High");
657 : suxen_drol 889
658 : suxen_drol 983 SendDlgItemMessage(hDlg, IDC_VHQ, CB_ADDSTRING, 0, (LPARAM)"0 - Off");
659 :     SendDlgItemMessage(hDlg, IDC_VHQ, CB_ADDSTRING, 0, (LPARAM)"1 - Mode Decision");
660 :     SendDlgItemMessage(hDlg, IDC_VHQ, CB_ADDSTRING, 0, (LPARAM)"2 - Limited Search");
661 :     SendDlgItemMessage(hDlg, IDC_VHQ, CB_ADDSTRING, 0, (LPARAM)"3 - Medium Search");
662 :     SendDlgItemMessage(hDlg, IDC_VHQ, CB_ADDSTRING, 0, (LPARAM)"4 - Wide Search");
663 :     break;
664 : suxen_drol 889
665 : suxen_drol 983 case IDD_DEBUG :
666 :     /* force threads disabled */
667 :     EnableWindow(GetDlgItem(hDlg, IDC_NUMTHREADS_STATIC), FALSE);
668 :     EnableWindow(GetDlgItem(hDlg, IDC_NUMTHREADS), FALSE);
669 : suxen_drol 889
670 : suxen_drol 983 SendDlgItemMessage(hDlg, IDC_FOURCC, CB_ADDSTRING, 0, (LPARAM)"XVID");
671 :     SendDlgItemMessage(hDlg, IDC_FOURCC, CB_ADDSTRING, 0, (LPARAM)"DIVX");
672 :     SendDlgItemMessage(hDlg, IDC_FOURCC, CB_ADDSTRING, 0, (LPARAM)"DX50");
673 :     break;
674 :     }
675 :     }
676 : suxen_drol 889
677 : suxen_drol 1017
678 : suxen_drol 983 /* enable/disable controls based on encoder-mode or user selection */
679 : suxen_drol 889
680 : suxen_drol 983 void adv_mode(HWND hDlg, int idd, CONFIG * config)
681 :     {
682 : suxen_drol 1017 int profile;
683 :     int weight_en, quant_en;
684 : suxen_drol 983 int cpu_force;
685 : suxen_drol 1017 int custom_quant, bvops;
686 : suxen_drol 983
687 :     switch(idd) {
688 :     case IDD_PROFILE :
689 : suxen_drol 1017 profile = SendDlgItemMessage(hDlg, IDC_PROFILE_PROFILE, CB_GETCURSEL, 0, 0);
690 :     EnableDlgWindow(hDlg, IDC_BVOP, profiles[profile].flags&PROFILE_BVOP);
691 :    
692 :     EnableDlgWindow(hDlg, IDC_QUANTTYPE_S, profiles[profile].flags&PROFILE_MPEGQUANT);
693 :     EnableDlgWindow(hDlg, IDC_QUANTTYPE_S, profiles[profile].flags&PROFILE_MPEGQUANT);
694 :     EnableDlgWindow(hDlg, IDC_QUANTTYPE, profiles[profile].flags&PROFILE_MPEGQUANT);
695 :     custom_quant = (profiles[profile].flags&PROFILE_MPEGQUANT) && SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_GETCURSEL, 0, 0)==QUANT_MODE_CUSTOM;
696 :     EnableDlgWindow(hDlg, IDC_QUANTMATRIX, custom_quant);
697 :     EnableDlgWindow(hDlg, IDC_LUMMASK, profiles[profile].flags&PROFILE_ADAPTQUANT);
698 :     EnableDlgWindow(hDlg, IDC_INTERLACING, profiles[profile].flags&PROFILE_INTERLACE);
699 :     EnableDlgWindow(hDlg, IDC_QPEL, profiles[profile].flags&PROFILE_QPEL);
700 :     EnableDlgWindow(hDlg, IDC_GMC, profiles[profile].flags&PROFILE_GMC);
701 :     EnableDlgWindow(hDlg, IDC_REDUCED, profiles[profile].flags&PROFILE_REDUCED);
702 :    
703 :     bvops = (profiles[profile].flags&PROFILE_BVOP) && IsDlgChecked(hDlg, IDC_BVOP);
704 :     EnableDlgWindow(hDlg, IDC_MAXBFRAMES, bvops);
705 :     EnableDlgWindow(hDlg, IDC_BQUANTRATIO, bvops);
706 :     EnableDlgWindow(hDlg, IDC_BQUANTOFFSET, bvops);
707 :     EnableDlgWindow(hDlg, IDC_MAXBFRAMES_S, bvops);
708 :     EnableDlgWindow(hDlg, IDC_BQUANTRATIO_S, bvops);
709 :     EnableDlgWindow(hDlg, IDC_BQUANTOFFSET_S, bvops);
710 :     EnableDlgWindow(hDlg, IDC_PACKED, bvops);
711 :     EnableDlgWindow(hDlg, IDC_CLOSEDGOV, bvops);
712 :    
713 :     case IDD_LEVEL :
714 :     profile = SendDlgItemMessage(hDlg, IDC_LEVEL_PROFILE, CB_GETCURSEL, 0, 0);
715 :     SetDlgItemInt(hDlg, IDC_LEVEL_WIDTH, profiles[profile].width, FALSE);
716 :     SetDlgItemInt(hDlg, IDC_LEVEL_HEIGHT, profiles[profile].height, FALSE);
717 :     SetDlgItemInt(hDlg, IDC_LEVEL_FPS, profiles[profile].fps, FALSE);
718 :     SetDlgItemInt(hDlg, IDC_LEVEL_VMV, profiles[profile].max_vmv_buffer_sz, FALSE);
719 :     SetDlgItemInt(hDlg, IDC_LEVEL_VCV, profiles[profile].vcv_decoder_rate, FALSE);
720 :     SetDlgItemInt(hDlg, IDC_LEVEL_VBV, profiles[profile].max_vbv_size, FALSE);
721 :     SetDlgItemInt(hDlg, IDC_LEVEL_BITRATE, profiles[profile].max_bitrate, FALSE);
722 : suxen_drol 983 break;
723 : suxen_drol 889
724 : suxen_drol 1017 case IDD_ZONE :
725 :     weight_en = IsDlgChecked(hDlg, IDC_ZONE_MODE_WEIGHT);
726 :     quant_en = IsDlgChecked(hDlg, IDC_ZONE_MODE_QUANT);
727 :     EnableDlgWindow(hDlg, IDC_ZONE_WEIGHT, weight_en);
728 :     EnableDlgWindow(hDlg, IDC_ZONE_QUANT, quant_en);
729 :     EnableDlgWindow(hDlg, IDC_ZONE_SLIDER, weight_en|quant_en);
730 : suxen_drol 889
731 : suxen_drol 1017 if (weight_en) {
732 :     SendDlgItemMessage(hDlg, IDC_ZONE_SLIDER, TBM_SETRANGE, TRUE, MAKELONG(001,200));
733 :     SendDlgItemMessage(hDlg, IDC_ZONE_SLIDER, TBM_SETPOS, TRUE, get_dlgitem_float(hDlg, IDC_ZONE_WEIGHT, 100));
734 :     SetDlgItemText(hDlg, IDC_ZONE_MIN, "0.01");
735 :     SetDlgItemText(hDlg, IDC_ZONE_MAX, "2.00");
736 :     }else if (quant_en) {
737 :     SendDlgItemMessage(hDlg, IDC_ZONE_SLIDER, TBM_SETRANGE, TRUE, MAKELONG(100,3100));
738 :     SendDlgItemMessage(hDlg, IDC_ZONE_SLIDER, TBM_SETPOS, TRUE, get_dlgitem_float(hDlg, IDC_ZONE_QUANT, 100));
739 :     SetDlgItemText(hDlg, IDC_ZONE_MIN, "1");
740 :     SetDlgItemText(hDlg, IDC_ZONE_MAX, "31");
741 :     }
742 : suxen_drol 889
743 : suxen_drol 1017 bvops = (profiles[config->profile].flags&PROFILE_BVOP) && config->use_bvop;
744 :     EnableDlgWindow(hDlg, IDC_ZONE_BVOPTHRESHOLD_S, bvops);
745 :     EnableDlgWindow(hDlg, IDC_ZONE_BVOPTHRESHOLD, bvops);
746 : suxen_drol 983 break;
747 : suxen_drol 889
748 : suxen_drol 983 case IDD_DEBUG :
749 :     cpu_force = IsDlgChecked(hDlg, IDC_CPU_FORCE);
750 :     EnableDlgWindow(hDlg, IDC_CPU_MMX, cpu_force);
751 :     EnableDlgWindow(hDlg, IDC_CPU_MMXEXT, cpu_force);
752 :     EnableDlgWindow(hDlg, IDC_CPU_SSE, cpu_force);
753 :     EnableDlgWindow(hDlg, IDC_CPU_SSE2, cpu_force);
754 :     EnableDlgWindow(hDlg, IDC_CPU_3DNOW, cpu_force);
755 :     EnableDlgWindow(hDlg, IDC_CPU_3DNOWEXT, cpu_force);
756 :     break;
757 :     }
758 : suxen_drol 889 }
759 :    
760 :    
761 : suxen_drol 983 /* upload config data into dialog */
762 :     void adv_upload(HWND hDlg, int idd, CONFIG * config)
763 : suxen_drol 889 {
764 : suxen_drol 983 switch (idd)
765 : suxen_drol 889 {
766 : suxen_drol 983 case IDD_PROFILE :
767 :     SendDlgItemMessage(hDlg, IDC_PROFILE_PROFILE, CB_SETCURSEL, config->profile, 0);
768 : suxen_drol 1017
769 :     SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_SETCURSEL, config->quant_type, 0);
770 :     CheckDlg(hDlg, IDC_LUMMASK, config->lum_masking);
771 :     CheckDlg(hDlg, IDC_INTERLACING, config->interlacing);
772 :     CheckDlg(hDlg, IDC_QPEL, config->qpel);
773 :     CheckDlg(hDlg, IDC_GMC, config->gmc);
774 :     CheckDlg(hDlg, IDC_REDUCED, config->reduced_resolution);
775 :     CheckDlg(hDlg, IDC_BVOP, config->use_bvop);
776 :    
777 :     SetDlgItemInt(hDlg, IDC_MAXBFRAMES, config->max_bframes, FALSE);
778 :     set_dlgitem_float(hDlg, IDC_BQUANTRATIO, config->bquant_ratio);
779 :     set_dlgitem_float(hDlg, IDC_BQUANTOFFSET, config->bquant_offset);
780 :     CheckDlg(hDlg, IDC_PACKED, config->packed);
781 :     CheckDlg(hDlg, IDC_CLOSEDGOV, config->closed_gov);
782 : edgomez 1267 SendDlgItemMessage(hDlg, IDC_ASPECT_RATIO, CB_SETCURSEL, (config->display_aspect_ratio), 0);
783 : suxen_drol 889 break;
784 :    
785 : suxen_drol 1017 case IDD_LEVEL :
786 :     SendDlgItemMessage(hDlg, IDC_LEVEL_PROFILE, CB_SETCURSEL, config->profile, 0);
787 :     break;
788 :    
789 : suxen_drol 983 case IDD_RC_CBR :
790 :     SetDlgItemInt(hDlg, IDC_CBR_REACTIONDELAY, config->rc_reaction_delay_factor, FALSE);
791 :     SetDlgItemInt(hDlg, IDC_CBR_AVERAGINGPERIOD, config->rc_averaging_period, FALSE);
792 :     SetDlgItemInt(hDlg, IDC_CBR_BUFFER, config->rc_buffer, FALSE);
793 : suxen_drol 889 break;
794 :    
795 : suxen_drol 983 case IDD_RC_2PASS1 :
796 :     SetDlgItemText(hDlg, IDC_STATS, config->stats);
797 : suxen_drol 1017 CheckDlg(hDlg, IDC_DISCARD1PASS, config->discard1pass);
798 : suxen_drol 983 break;
799 :    
800 :     case IDD_RC_2PASS2 :
801 :     SetDlgItemText(hDlg, IDC_STATS, config->stats);
802 :     SetDlgItemInt(hDlg, IDC_KFBOOST, config->keyframe_boost, FALSE);
803 : suxen_drol 889 SetDlgItemInt(hDlg, IDC_KFREDUCTION, config->kfreduction, FALSE);
804 : suxen_drol 1017
805 : edgomez 1203 SetDlgItemInt(hDlg, IDC_OVERFLOW_CONTROL_STRENGTH, config->overflow_control_strength, FALSE);
806 : suxen_drol 1017 SetDlgItemInt(hDlg, IDC_OVERIMP, config->twopass_max_overflow_improvement, FALSE);
807 :     SetDlgItemInt(hDlg, IDC_OVERDEG, config->twopass_max_overflow_degradation, FALSE);
808 :    
809 : suxen_drol 889 SetDlgItemInt(hDlg, IDC_CURVECOMPH, config->curve_compression_high, FALSE);
810 :     SetDlgItemInt(hDlg, IDC_CURVECOMPL, config->curve_compression_low, FALSE);
811 : edgomez 1242 SetDlgItemInt(hDlg, IDC_MINKEY, config->kfthreshold, FALSE);
812 : suxen_drol 889 break;
813 :    
814 : suxen_drol 1017 case IDD_ZONE :
815 :     SetDlgItemInt(hDlg, IDC_ZONE_FRAME, config->zones[config->cur_zone].frame, FALSE);
816 :    
817 :     CheckDlgButton(hDlg, IDC_ZONE_MODE_WEIGHT, config->zones[config->cur_zone].mode == RC_ZONE_WEIGHT);
818 :     CheckDlgButton(hDlg, IDC_ZONE_MODE_QUANT, config->zones[config->cur_zone].mode == RC_ZONE_QUANT);
819 :    
820 :     set_dlgitem_float(hDlg, IDC_ZONE_WEIGHT, config->zones[config->cur_zone].weight);
821 :     set_dlgitem_float(hDlg, IDC_ZONE_QUANT, config->zones[config->cur_zone].quant);
822 :    
823 : suxen_drol 1069 CheckDlgButton(hDlg, IDC_ZONE_FORCEIVOP, config->zones[config->cur_zone].type==XVID_TYPE_IVOP);
824 : suxen_drol 1017 CheckDlgButton(hDlg, IDC_ZONE_GREYSCALE, config->zones[config->cur_zone].greyscale);
825 :     CheckDlgButton(hDlg, IDC_ZONE_CHROMAOPT, config->zones[config->cur_zone].chroma_opt);
826 :    
827 :     SetDlgItemInt(hDlg, IDC_ZONE_BVOPTHRESHOLD, config->zones[config->cur_zone].bvop_threshold, TRUE);
828 :     break;
829 : suxen_drol 983
830 :     case IDD_MOTION :
831 :     SendDlgItemMessage(hDlg, IDC_MOTION, CB_SETCURSEL, config->motion_search, 0);
832 :     SendDlgItemMessage(hDlg, IDC_VHQ, CB_SETCURSEL, config->vhq_mode, 0);
833 : suxen_drol 1017 CheckDlg(hDlg, IDC_CHROMAME, config->chromame);
834 : edgomez 1193 CheckDlg(hDlg, IDC_CARTOON, config->cartoon_mode);
835 : suxen_drol 1017 SetDlgItemInt(hDlg, IDC_FRAMEDROP, config->frame_drop_ratio, FALSE);
836 :     SetDlgItemInt(hDlg, IDC_MAXKEY, config->max_key_interval, FALSE);
837 : suxen_drol 983 break;
838 :    
839 :     case IDD_QUANT :
840 :     SetDlgItemInt(hDlg, IDC_MINIQUANT, config->min_iquant, FALSE);
841 :     SetDlgItemInt(hDlg, IDC_MAXIQUANT, config->max_iquant, FALSE);
842 :     SetDlgItemInt(hDlg, IDC_MINPQUANT, config->min_pquant, FALSE);
843 :     SetDlgItemInt(hDlg, IDC_MAXPQUANT, config->max_pquant, FALSE);
844 : suxen_drol 1017 SetDlgItemInt(hDlg, IDC_MINBQUANT, config->min_bquant, FALSE);
845 :     SetDlgItemInt(hDlg, IDC_MAXBQUANT, config->max_bquant, FALSE);
846 :     CheckDlg(hDlg, IDC_TRELLISQUANT, config->trellis_quant);
847 : suxen_drol 983 break;
848 :    
849 :     case IDD_DEBUG :
850 : suxen_drol 1017 CheckDlg(hDlg, IDC_CPU_MMX, (config->cpu & XVID_CPU_MMX));
851 :     CheckDlg(hDlg, IDC_CPU_MMXEXT, (config->cpu & XVID_CPU_MMXEXT));
852 :     CheckDlg(hDlg, IDC_CPU_SSE, (config->cpu & XVID_CPU_SSE));
853 :     CheckDlg(hDlg, IDC_CPU_SSE2, (config->cpu & XVID_CPU_SSE2));
854 :     CheckDlg(hDlg, IDC_CPU_3DNOW, (config->cpu & XVID_CPU_3DNOW));
855 :     CheckDlg(hDlg, IDC_CPU_3DNOWEXT, (config->cpu & XVID_CPU_3DNOWEXT));
856 : suxen_drol 889
857 :     CheckRadioButton(hDlg, IDC_CPU_AUTO, IDC_CPU_FORCE,
858 :     config->cpu & XVID_CPU_FORCE ? IDC_CPU_FORCE : IDC_CPU_AUTO );
859 :    
860 :     SetDlgItemInt(hDlg, IDC_NUMTHREADS, config->num_threads, FALSE);
861 : suxen_drol 983
862 : suxen_drol 1061 SendDlgItemMessage(hDlg, IDC_FOURCC, CB_SETCURSEL, config->fourcc_used, 0);
863 :     set_dlgitem_hex(hDlg, IDC_DEBUG, config->debug);
864 : suxen_drol 1032 CheckDlg(hDlg, IDC_VOPDEBUG, config->vop_debug);
865 : suxen_drol 1061 CheckDlg(hDlg, IDC_DISPLAY_STATUS, config->display_status);
866 : suxen_drol 889 break;
867 :     }
868 :     }
869 :    
870 :    
871 : suxen_drol 983 /* download config data from dialog */
872 : suxen_drol 889
873 : suxen_drol 983 void adv_download(HWND hDlg, int idd, CONFIG * config)
874 : suxen_drol 889 {
875 : suxen_drol 983 switch (idd)
876 : suxen_drol 889 {
877 : suxen_drol 983 case IDD_PROFILE :
878 :     config->profile = SendDlgItemMessage(hDlg, IDC_PROFILE_PROFILE, CB_GETCURSEL, 0, 0);
879 : suxen_drol 1017
880 :     config->quant_type = SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_GETCURSEL, 0, 0);
881 :     config->lum_masking = IsDlgChecked(hDlg, IDC_LUMMASK);
882 :     config->interlacing = IsDlgChecked(hDlg, IDC_INTERLACING);
883 :     config->qpel = IsDlgChecked(hDlg, IDC_QPEL);
884 :     config->gmc = IsDlgChecked(hDlg, IDC_GMC);
885 :     config->reduced_resolution = IsDlgChecked(hDlg, IDC_REDUCED);
886 :    
887 :     config->use_bvop = IsDlgChecked(hDlg, IDC_BVOP);
888 :     config->max_bframes = config_get_uint(hDlg, IDC_MAXBFRAMES, config->max_bframes);
889 :     config->bquant_ratio = get_dlgitem_float(hDlg, IDC_BQUANTRATIO, config->bquant_ratio);
890 :     config->bquant_offset = get_dlgitem_float(hDlg, IDC_BQUANTOFFSET, config->bquant_offset);
891 :     config->packed = IsDlgChecked(hDlg, IDC_PACKED);
892 :     config->closed_gov = IsDlgChecked(hDlg, IDC_CLOSEDGOV);
893 : edgomez 1267 config->display_aspect_ratio = SendDlgItemMessage(hDlg, IDC_ASPECT_RATIO, CB_GETCURSEL, 0, 0);
894 : suxen_drol 983 break;
895 : suxen_drol 889
896 : suxen_drol 1017 case IDD_LEVEL :
897 :     config->profile = SendDlgItemMessage(hDlg, IDC_LEVEL_PROFILE, CB_GETCURSEL, 0, 0);
898 :     break;
899 :    
900 : suxen_drol 983 case IDD_RC_CBR :
901 :     config->rc_reaction_delay_factor = config_get_uint(hDlg, IDC_CBR_REACTIONDELAY, config->rc_reaction_delay_factor);
902 :     config->rc_averaging_period = config_get_uint(hDlg, IDC_CBR_AVERAGINGPERIOD, config->rc_averaging_period);
903 :     config->rc_buffer = config_get_uint(hDlg, IDC_CBR_BUFFER, config->rc_buffer);
904 : suxen_drol 889 break;
905 :    
906 : suxen_drol 983 case IDD_RC_2PASS1 :
907 :     if (GetDlgItemText(hDlg, IDC_STATS, config->stats, MAX_PATH) == 0)
908 :     lstrcpy(config->stats, CONFIG_2PASS_FILE);
909 :     config->discard1pass = IsDlgChecked(hDlg, IDC_DISCARD1PASS);
910 :     break;
911 : suxen_drol 889
912 : suxen_drol 983 case IDD_RC_2PASS2 :
913 :     if (GetDlgItemText(hDlg, IDC_STATS, config->stats, MAX_PATH) == 0)
914 :     lstrcpy(config->stats, CONFIG_2PASS_FILE);
915 : suxen_drol 889
916 : suxen_drol 983 config->keyframe_boost = GetDlgItemInt(hDlg, IDC_KFBOOST, NULL, FALSE);
917 : suxen_drol 889 config->kfreduction = GetDlgItemInt(hDlg, IDC_KFREDUCTION, NULL, FALSE);
918 : edgomez 1203 CONSTRAINVAL(config->keyframe_boost, 0, 1000);
919 : suxen_drol 1017
920 : edgomez 1203 config->overflow_control_strength = GetDlgItemInt(hDlg, IDC_OVERFLOW_CONTROL_STRENGTH, NULL, FALSE);
921 : suxen_drol 1017 config->twopass_max_overflow_improvement = config_get_uint(hDlg, IDC_OVERIMP, config->twopass_max_overflow_improvement);
922 :     config->twopass_max_overflow_degradation = config_get_uint(hDlg, IDC_OVERDEG, config->twopass_max_overflow_degradation);
923 :     CONSTRAINVAL(config->twopass_max_overflow_improvement, 1, 80);
924 :     CONSTRAINVAL(config->twopass_max_overflow_degradation, 1, 80);
925 : edgomez 1203 CONSTRAINVAL(config->overflow_control_strength, 0, 100);
926 : suxen_drol 983
927 : suxen_drol 889 config->curve_compression_high = GetDlgItemInt(hDlg, IDC_CURVECOMPH, NULL, FALSE);
928 :     config->curve_compression_low = GetDlgItemInt(hDlg, IDC_CURVECOMPL, NULL, FALSE);
929 :     CONSTRAINVAL(config->curve_compression_high, 0, 100);
930 :     CONSTRAINVAL(config->curve_compression_low, 0, 100);
931 : edgomez 1202
932 : edgomez 1242 config->kfthreshold = config_get_uint(hDlg, IDC_MINKEY, config->kfthreshold);
933 : syskin 1234
934 : suxen_drol 889 break;
935 :    
936 : suxen_drol 1017 case IDD_ZONE :
937 :     config->zones[config->cur_zone].frame = config_get_uint(hDlg, IDC_ZONE_FRAME, config->zones[config->cur_zone].frame);
938 : suxen_drol 889
939 : suxen_drol 1017 if (IsDlgChecked(hDlg, IDC_ZONE_MODE_WEIGHT)) {
940 :     config->zones[config->cur_zone].mode = RC_ZONE_WEIGHT;
941 :     }else if (IsDlgChecked(hDlg, IDC_ZONE_MODE_QUANT)) {
942 :     config->zones[config->cur_zone].mode = RC_ZONE_QUANT;
943 :     }
944 : suxen_drol 889
945 : suxen_drol 1017 config->zones[config->cur_zone].weight = get_dlgitem_float(hDlg, IDC_ZONE_WEIGHT, config->zones[config->cur_zone].weight);
946 :     config->zones[config->cur_zone].quant = get_dlgitem_float(hDlg, IDC_ZONE_QUANT, config->zones[config->cur_zone].quant);
947 :    
948 : suxen_drol 1069 config->zones[config->cur_zone].type = IsDlgButtonChecked(hDlg, IDC_ZONE_FORCEIVOP)?XVID_TYPE_IVOP:XVID_TYPE_AUTO;
949 : suxen_drol 1017 config->zones[config->cur_zone].greyscale = IsDlgButtonChecked(hDlg, IDC_ZONE_GREYSCALE);
950 :     config->zones[config->cur_zone].chroma_opt = IsDlgButtonChecked(hDlg, IDC_ZONE_CHROMAOPT);
951 :    
952 :     config->zones[config->cur_zone].bvop_threshold = config_get_int(hDlg, IDC_ZONE_BVOPTHRESHOLD, config->zones[config->cur_zone].bvop_threshold);
953 :     break;
954 :    
955 : suxen_drol 983 case IDD_MOTION :
956 :     config->motion_search = SendDlgItemMessage(hDlg, IDC_MOTION, CB_GETCURSEL, 0, 0);
957 :     config->vhq_mode = SendDlgItemMessage(hDlg, IDC_VHQ, CB_GETCURSEL, 0, 0);
958 :     config->chromame = IsDlgChecked(hDlg, IDC_CHROMAME);
959 : edgomez 1193 config->cartoon_mode = IsDlgChecked(hDlg, IDC_CARTOON);
960 : suxen_drol 889
961 : suxen_drol 1017 config->frame_drop_ratio = config_get_uint(hDlg, IDC_FRAMEDROP, config->frame_drop_ratio);
962 : suxen_drol 889
963 : suxen_drol 983 config->max_key_interval = config_get_uint(hDlg, IDC_MAXKEY, config->max_key_interval);
964 : suxen_drol 1017 break;
965 : suxen_drol 889
966 : suxen_drol 983 case IDD_QUANT :
967 :     config->min_iquant = config_get_uint(hDlg, IDC_MINIQUANT, config->min_iquant);
968 :     config->max_iquant = config_get_uint(hDlg, IDC_MAXIQUANT, config->max_iquant);
969 :     config->min_pquant = config_get_uint(hDlg, IDC_MINPQUANT, config->min_pquant);
970 :     config->max_pquant = config_get_uint(hDlg, IDC_MAXPQUANT, config->max_pquant);
971 : suxen_drol 1017 config->min_bquant = config_get_uint(hDlg, IDC_MINBQUANT, config->min_bquant);
972 :     config->max_bquant = config_get_uint(hDlg, IDC_MAXBQUANT, config->max_bquant);
973 : suxen_drol 889
974 : suxen_drol 983 CONSTRAINVAL(config->min_iquant, 1, 31);
975 :     CONSTRAINVAL(config->max_iquant, config->min_iquant, 31);
976 :     CONSTRAINVAL(config->min_pquant, 1, 31);
977 :     CONSTRAINVAL(config->max_pquant, config->min_pquant, 31);
978 : suxen_drol 1017 CONSTRAINVAL(config->min_bquant, 1, 31);
979 :     CONSTRAINVAL(config->max_bquant, config->min_bquant, 31);
980 :    
981 :     config->trellis_quant = IsDlgChecked(hDlg, IDC_TRELLISQUANT);
982 : suxen_drol 983 break;
983 : suxen_drol 889
984 : suxen_drol 983 case IDD_DEBUG :
985 :     config->cpu = 0;
986 :     config->cpu |= IsDlgChecked(hDlg, IDC_CPU_MMX) ? XVID_CPU_MMX : 0;
987 :     config->cpu |= IsDlgChecked(hDlg, IDC_CPU_MMXEXT) ? XVID_CPU_MMXEXT : 0;
988 :     config->cpu |= IsDlgChecked(hDlg, IDC_CPU_SSE) ? XVID_CPU_SSE : 0;
989 :     config->cpu |= IsDlgChecked(hDlg, IDC_CPU_SSE2) ? XVID_CPU_SSE2 : 0;
990 :     config->cpu |= IsDlgChecked(hDlg, IDC_CPU_3DNOW) ? XVID_CPU_3DNOW : 0;
991 :     config->cpu |= IsDlgChecked(hDlg, IDC_CPU_3DNOWEXT) ? XVID_CPU_3DNOWEXT : 0;
992 :     config->cpu |= IsDlgChecked(hDlg, IDC_CPU_FORCE) ? XVID_CPU_FORCE : 0;
993 : suxen_drol 889
994 : suxen_drol 983 config->num_threads = config_get_uint(hDlg, IDC_NUMTHREADS, config->num_threads);
995 : suxen_drol 889
996 : suxen_drol 983 config->fourcc_used = SendDlgItemMessage(hDlg, IDC_FOURCC, CB_GETCURSEL, 0, 0);
997 : suxen_drol 1032 config->debug = get_dlgitem_hex(hDlg, IDC_DEBUG, config->debug);
998 : suxen_drol 1061 config->vop_debug = IsDlgChecked(hDlg, IDC_VOPDEBUG);
999 :     config->display_status = IsDlgChecked(hDlg, IDC_DISPLAY_STATUS);
1000 : suxen_drol 983 break;
1001 : suxen_drol 889 }
1002 :     }
1003 :    
1004 :    
1005 :    
1006 : suxen_drol 983 /* advanced dialog proc */
1007 : suxen_drol 889
1008 : suxen_drol 983 BOOL CALLBACK adv_proc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
1009 : suxen_drol 889 {
1010 :     PROPSHEETINFO *psi;
1011 :    
1012 :     psi = (PROPSHEETINFO*)GetWindowLong(hDlg, GWL_USERDATA);
1013 :    
1014 :     switch (uMsg)
1015 :     {
1016 :     case WM_INITDIALOG :
1017 :     psi = (PROPSHEETINFO*) ((LPPROPSHEETPAGE)lParam)->lParam;
1018 :     SetWindowLong(hDlg, GWL_USERDATA, (LPARAM)psi);
1019 :    
1020 : suxen_drol 983 if (g_hTooltip)
1021 : suxen_drol 889 EnumChildWindows(hDlg, enum_tooltips, 0);
1022 :    
1023 : suxen_drol 983 adv_init(hDlg, psi->idd, psi->config);
1024 : suxen_drol 889 break;
1025 :    
1026 : suxen_drol 983 case WM_COMMAND :
1027 :     if (HIWORD(wParam) == BN_CLICKED)
1028 :     {
1029 :     switch (LOWORD(wParam))
1030 :     {
1031 : suxen_drol 1017 case IDC_BVOP :
1032 :     case IDC_ZONE_MODE_WEIGHT :
1033 :     case IDC_ZONE_MODE_QUANT :
1034 :     case IDC_ZONE_BVOPTHRESHOLD_ENABLE :
1035 : suxen_drol 983 case IDC_CPU_AUTO :
1036 :     case IDC_CPU_FORCE :
1037 :     adv_mode(hDlg, psi->idd, psi->config);
1038 :     break;
1039 :    
1040 :     case IDC_QUANTMATRIX :
1041 :     DialogBoxParam(g_hInst, MAKEINTRESOURCE(IDD_QUANTMATRIX), hDlg, quantmatrix_proc, (LPARAM)psi->config);
1042 :     break;
1043 :    
1044 :     case IDC_STATS_BROWSE :
1045 :     {
1046 :     OPENFILENAME ofn;
1047 :     char tmp[MAX_PATH];
1048 :    
1049 :     GetDlgItemText(hDlg, IDC_STATS, tmp, MAX_PATH);
1050 :    
1051 :     memset(&ofn, 0, sizeof(OPENFILENAME));
1052 :     ofn.lStructSize = sizeof(OPENFILENAME);
1053 :    
1054 :     ofn.hwndOwner = hDlg;
1055 :     ofn.lpstrFilter = "bitrate curve (*.stats)\0*.stats\0All files (*.*)\0*.*\0\0";
1056 :     ofn.lpstrFile = tmp;
1057 :     ofn.nMaxFile = MAX_PATH;
1058 :     ofn.Flags = OFN_PATHMUSTEXIST;
1059 :    
1060 :     if (psi->idd == IDD_RC_2PASS1) {
1061 :     ofn.Flags |= OFN_OVERWRITEPROMPT;
1062 :     }else{
1063 :     ofn.Flags |= OFN_FILEMUSTEXIST;
1064 :     }
1065 :    
1066 :     if (GetSaveFileName(&ofn))
1067 :     {
1068 :     SetDlgItemText(hDlg, IDC_STATS, tmp);
1069 :     }
1070 :     }
1071 : suxen_drol 1017
1072 :     case IDC_ZONE_FETCH :
1073 :     SetDlgItemInt(hDlg, IDC_ZONE_FRAME, psi->config->ci.ciActiveFrame, FALSE);
1074 :     break;
1075 :    
1076 :     default :
1077 :     return TRUE;
1078 : suxen_drol 983 }
1079 : suxen_drol 1017 }else if (HIWORD(wParam) == LBN_SELCHANGE &&
1080 :     (LOWORD(wParam) == IDC_PROFILE_PROFILE ||
1081 :     LOWORD(wParam) == IDC_LEVEL_PROFILE ||
1082 :     LOWORD(wParam) == IDC_QUANTTYPE))
1083 : suxen_drol 983 {
1084 :     adv_mode(hDlg, psi->idd, psi->config);
1085 : suxen_drol 1017 }else if (HIWORD(wParam) == EN_UPDATE && (LOWORD(wParam)==IDC_ZONE_WEIGHT || LOWORD(wParam)==IDC_ZONE_QUANT)) {
1086 :    
1087 :     SendDlgItemMessage(hDlg, IDC_ZONE_SLIDER, TBM_SETPOS, TRUE,
1088 :     get_dlgitem_float(hDlg, LOWORD(wParam), 100));
1089 :     }else {
1090 :     return 0;
1091 : suxen_drol 983 }
1092 :     break;
1093 :    
1094 : suxen_drol 1017 case WM_HSCROLL :
1095 :     if((HWND)lParam == GetDlgItem(hDlg, IDC_ZONE_SLIDER)) {
1096 :     int idc = IsDlgChecked(hDlg, IDC_ZONE_MODE_WEIGHT) ? IDC_ZONE_WEIGHT : IDC_ZONE_QUANT;
1097 :     set_dlgitem_float(hDlg, idc, SendMessage((HWND)lParam, TBM_GETPOS, 0, 0) );
1098 :     break;
1099 :     }
1100 :     return 0;
1101 :    
1102 :    
1103 : suxen_drol 889 case WM_NOTIFY :
1104 :     switch (((NMHDR *)lParam)->code)
1105 :     {
1106 : suxen_drol 1017 case PSN_SETACTIVE :
1107 :     OutputDebugString("PSN_SET");
1108 :     adv_upload(hDlg, psi->idd, psi->config);
1109 :     adv_mode(hDlg, psi->idd, psi->config);
1110 :     SetWindowLong(hDlg, DWL_MSGRESULT, FALSE);
1111 :     break;
1112 :    
1113 :     case PSN_KILLACTIVE :
1114 :     OutputDebugString("PSN_KILL");
1115 :     adv_download(hDlg, psi->idd, psi->config);
1116 : suxen_drol 889 SetWindowLong(hDlg, DWL_MSGRESULT, FALSE);
1117 :     break;
1118 :    
1119 :     case PSN_APPLY :
1120 : suxen_drol 1017 OutputDebugString("PSN_APPLY");
1121 :     psi->config->save = TRUE;
1122 : suxen_drol 889 SetWindowLong(hDlg, DWL_MSGRESULT, FALSE);
1123 :     break;
1124 :     }
1125 :     break;
1126 :    
1127 :     default :
1128 :     return 0;
1129 :     }
1130 :    
1131 :     return 1;
1132 :     }
1133 :    
1134 :    
1135 : suxen_drol 983
1136 :    
1137 : suxen_drol 1017 /* load advanced options property sheet
1138 :     returns true, if the user accepted the changes
1139 :     or fasle if changes were canceled.
1140 :    
1141 :     */
1142 :     BOOL adv_dialog(HWND hParent, CONFIG * config, const int * dlgs, int size)
1143 : suxen_drol 889 {
1144 : suxen_drol 983 PROPSHEETINFO psi[6];
1145 :     PROPSHEETPAGE psp[6];
1146 : suxen_drol 889 PROPSHEETHEADER psh;
1147 :     CONFIG temp;
1148 :     int i;
1149 :    
1150 :     config->save = FALSE;
1151 :     memcpy(&temp, config, sizeof(CONFIG));
1152 :    
1153 : suxen_drol 983 for (i=0; i<size; i++)
1154 : suxen_drol 889 {
1155 :     psp[i].dwSize = sizeof(PROPSHEETPAGE);
1156 :     psp[i].dwFlags = 0;
1157 : suxen_drol 983 psp[i].hInstance = g_hInst;
1158 :     psp[i].pfnDlgProc = adv_proc;
1159 : suxen_drol 889 psp[i].lParam = (LPARAM)&psi[i];
1160 :     psp[i].pfnCallback = NULL;
1161 : suxen_drol 983 psp[i].pszTemplate = MAKEINTRESOURCE(dlgs[i]);
1162 : suxen_drol 889
1163 : suxen_drol 983 psi[i].idd = dlgs[i];
1164 : suxen_drol 889 psi[i].config = &temp;
1165 :     }
1166 :    
1167 :     psh.dwSize = sizeof(PROPSHEETHEADER);
1168 :     psh.dwFlags = PSH_PROPSHEETPAGE | PSH_NOAPPLYNOW;
1169 :     psh.hwndParent = hParent;
1170 : suxen_drol 983 psh.hInstance = g_hInst;
1171 : suxen_drol 889 psh.pszCaption = (LPSTR) "XviD Configuration";
1172 : suxen_drol 983 psh.nPages = size;
1173 :     psh.nStartPage = 0;
1174 : suxen_drol 889 psh.ppsp = (LPCPROPSHEETPAGE)&psp;
1175 :     psh.pfnCallback = NULL;
1176 :     PropertySheet(&psh);
1177 :    
1178 : suxen_drol 1017 if (temp.save)
1179 : suxen_drol 889 memcpy(config, &temp, sizeof(CONFIG));
1180 : suxen_drol 1017
1181 :     return temp.save;
1182 : suxen_drol 889 }
1183 :    
1184 : suxen_drol 983 /* ===================================================================================== */
1185 :     /* MAIN DIALOG ========================================================================= */
1186 :     /* ===================================================================================== */
1187 : suxen_drol 889
1188 :    
1189 : suxen_drol 1017 void main_insert_zone(HWND hDlg, zone_t * s, int i, BOOL insert)
1190 : suxen_drol 983 {
1191 : suxen_drol 1017 char tmp[32];
1192 : suxen_drol 983
1193 : suxen_drol 1017 wsprintf(tmp,"%i",s->frame);
1194 : suxen_drol 983
1195 : suxen_drol 1017 if (insert) {
1196 :     LVITEM lvi;
1197 : suxen_drol 983
1198 : suxen_drol 1017 lvi.mask = LVIF_TEXT | LVIF_IMAGE | LVIF_PARAM | LVIF_STATE;
1199 :     lvi.state = 0;
1200 :     lvi.stateMask = 0;
1201 :     lvi.iImage = 0;
1202 :     lvi.pszText = tmp;
1203 :     lvi.cchTextMax = strlen(tmp);
1204 :     lvi.iItem = i;
1205 :     lvi.iSubItem = 0;
1206 :     ListView_InsertItem(hDlg, &lvi);
1207 :     }else{
1208 :     ListView_SetItemText(hDlg, i, 0, tmp);
1209 :     }
1210 : suxen_drol 983
1211 : suxen_drol 1017 if (s->mode == RC_ZONE_WEIGHT) {
1212 :     sprintf(tmp,"%.2f",(float)s->weight/100);
1213 :     }else if (s->mode == RC_ZONE_QUANT) {
1214 :     sprintf(tmp,"( %.2f )",(float)s->quant/100);
1215 :     }else {
1216 :     strcpy(tmp,"EXT");
1217 :     }
1218 :     ListView_SetItemText(hDlg, i, 1, tmp);
1219 : suxen_drol 983
1220 : suxen_drol 1017 tmp[0] = '\0';
1221 : suxen_drol 1069 if (s->type==XVID_TYPE_IVOP)
1222 :     strcat(tmp, "K ");
1223 :    
1224 : suxen_drol 1017 if (s->greyscale)
1225 :     strcat(tmp, "G ");
1226 :    
1227 :     if (s->chroma_opt)
1228 :     strcat(tmp, "C ");
1229 : suxen_drol 983
1230 : suxen_drol 1017 ListView_SetItemText(hDlg, i, 2, tmp);
1231 : suxen_drol 983 }
1232 :    
1233 : suxen_drol 1061 static int g_use_bitrate = 1;
1234 : suxen_drol 983
1235 : suxen_drol 1017 void main_mode(HWND hDlg, CONFIG * config)
1236 : suxen_drol 983 {
1237 : suxen_drol 1061 const int profile = SendDlgItemMessage(hDlg, IDC_PROFILE, CB_GETCURSEL, 0, 0);
1238 :     const int rc_mode = SendDlgItemMessage(hDlg, IDC_MODE, CB_GETCURSEL, 0, 0);
1239 :     /* enable target rate/size control only for 1pass and 2pass modes*/
1240 :     const int target_en = rc_mode==RC_MODE_1PASS || rc_mode==RC_MODE_2PASS2;
1241 :    
1242 : suxen_drol 1017 char buf[16];
1243 :     int max;
1244 : suxen_drol 983
1245 : suxen_drol 1061 g_use_bitrate = rc_mode==RC_MODE_1PASS || config->use_2pass_bitrate;
1246 : suxen_drol 983
1247 : suxen_drol 1061 if (g_use_bitrate) {
1248 :     SetDlgItemText(hDlg, IDC_BITRATE_S, "Target bitrate (kbps):");
1249 : suxen_drol 983
1250 : suxen_drol 1061 wsprintf(buf, "%i kbps", DEFAULT_MIN_KBPS);
1251 :     SetDlgItemText(hDlg, IDC_BITRATE_MIN, buf);
1252 : suxen_drol 983
1253 : suxen_drol 1061 max = profiles[profile].max_bitrate;
1254 :     if (max == 0) max = DEFAULT_MAX_KBPS;
1255 :     wsprintf(buf, "%i kbps", max);
1256 :     SetDlgItemText(hDlg, IDC_BITRATE_MAX, buf);
1257 :    
1258 :     SendDlgItemMessage(hDlg, IDC_SLIDER, TBM_SETRANGE, TRUE, MAKELONG(DEFAULT_MIN_KBPS, max));
1259 :     SendDlgItemMessage(hDlg, IDC_SLIDER, TBM_SETPOS, TRUE,
1260 :     config_get_uint(hDlg, IDC_BITRATE, DEFAULT_MIN_KBPS) );
1261 :    
1262 :     }else{
1263 :     SetDlgItemText(hDlg, IDC_BITRATE_S, "Target size (kbytes):");
1264 :     }
1265 :    
1266 :     EnableDlgWindow(hDlg, IDC_BITRATE_S, target_en);
1267 :     EnableDlgWindow(hDlg, IDC_BITRATE, target_en);
1268 :    
1269 :     EnableDlgWindow(hDlg, IDC_BITRATE_MIN, target_en && g_use_bitrate);
1270 :     EnableDlgWindow(hDlg, IDC_BITRATE_MAX, target_en && g_use_bitrate);
1271 :     EnableDlgWindow(hDlg, IDC_SLIDER, target_en && g_use_bitrate);
1272 : suxen_drol 1017 }
1273 : suxen_drol 983
1274 : suxen_drol 1061
1275 :    
1276 : suxen_drol 1017 void main_upload(HWND hDlg, CONFIG * config)
1277 :     {
1278 :     int i;
1279 : suxen_drol 983
1280 : suxen_drol 1017 SendDlgItemMessage(hDlg, IDC_PROFILE, CB_SETCURSEL, config->profile, 0);
1281 : suxen_drol 1061 SendDlgItemMessage(hDlg, IDC_MODE, CB_SETCURSEL, config->mode, 0);
1282 : suxen_drol 983
1283 : suxen_drol 1061 if (g_use_bitrate) {
1284 :     SetDlgItemInt(hDlg, IDC_BITRATE, config->bitrate, FALSE);
1285 :     }else{
1286 :     SetDlgItemInt(hDlg, IDC_BITRATE, config->desired_size, FALSE);
1287 :     }
1288 :    
1289 : suxen_drol 1017 ListView_DeleteAllItems(GetDlgItem(hDlg,IDC_ZONES));
1290 :     for (i=0; i < config->num_zones; i++) {
1291 :     main_insert_zone(GetDlgItem(hDlg,IDC_ZONES), &config->zones[i], i, TRUE);
1292 :     }
1293 : suxen_drol 983 }
1294 :    
1295 :    
1296 : suxen_drol 1017 /* downloads data from main dialog */
1297 :     void main_download(HWND hDlg, CONFIG * config)
1298 : suxen_drol 983 {
1299 : suxen_drol 1017 config->profile = SendDlgItemMessage(hDlg, IDC_PROFILE, CB_GETCURSEL, 0, 0);
1300 :     config->mode = SendDlgItemMessage(hDlg, IDC_MODE, CB_GETCURSEL, 0, 0);
1301 : suxen_drol 1061
1302 :     if (g_use_bitrate) {
1303 :     config->bitrate = config_get_uint(hDlg, IDC_BITRATE, config->bitrate);
1304 :     }else{
1305 :     config->desired_size = config_get_uint(hDlg, IDC_BITRATE, config->desired_size);
1306 :     }
1307 : suxen_drol 1017 }
1308 : suxen_drol 983
1309 :    
1310 : suxen_drol 1017 /* main dialog proc */
1311 : suxen_drol 983
1312 : suxen_drol 1017 static const int profile_dlgs[] = { IDD_PROFILE, IDD_LEVEL };
1313 :     static const int single_dlgs[] = { IDD_RC_CBR };
1314 :     static const int pass1_dlgs[] = { IDD_RC_2PASS1 };
1315 : suxen_drol 1052 static const int pass2_dlgs[] = { IDD_RC_2PASS2 };
1316 : suxen_drol 1017 static const int zone_dlgs[] = { IDD_ZONE };
1317 :     static const int bitrate_dlgs[] = { IDD_CALC };
1318 :     static const int adv_dlgs[] = { IDD_MOTION, IDD_QUANT, IDD_DEBUG};
1319 : suxen_drol 983
1320 :    
1321 : suxen_drol 889 BOOL CALLBACK main_proc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
1322 :     {
1323 : suxen_drol 1017 CONFIG* config = (CONFIG*)GetWindowLong(hDlg, GWL_USERDATA);
1324 :     unsigned int i;
1325 : suxen_drol 889
1326 :     switch (uMsg)
1327 :     {
1328 :     case WM_INITDIALOG :
1329 :     SetWindowLong(hDlg, GWL_USERDATA, lParam);
1330 :     config = (CONFIG*)lParam;
1331 :    
1332 : suxen_drol 983 for (i=0; i<sizeof(profiles)/sizeof(profile_t); i++)
1333 :     SendDlgItemMessage(hDlg, IDC_PROFILE, CB_ADDSTRING, 0, (LPARAM)profiles[i].name);
1334 :    
1335 : suxen_drol 1017 SendDlgItemMessage(hDlg, IDC_MODE, CB_ADDSTRING, 0, (LPARAM)"Single pass");
1336 :     SendDlgItemMessage(hDlg, IDC_MODE, CB_ADDSTRING, 0, (LPARAM)"Twopass - 1st pass");
1337 :     SendDlgItemMessage(hDlg, IDC_MODE, CB_ADDSTRING, 0, (LPARAM)"Twopass - 2nd pass");
1338 :     #ifdef _DEBUG
1339 :     SendDlgItemMessage(hDlg, IDC_MODE, CB_ADDSTRING, 0, (LPARAM)"Null test speed");
1340 :     #endif
1341 : suxen_drol 889
1342 :     InitCommonControls();
1343 :    
1344 : suxen_drol 983 if ((g_hTooltip = CreateWindow(TOOLTIPS_CLASS, NULL, TTS_ALWAYSTIP,
1345 : suxen_drol 889 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
1346 : suxen_drol 983 NULL, NULL, g_hInst, NULL)))
1347 : suxen_drol 889 {
1348 : suxen_drol 983 SetWindowPos(g_hTooltip, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE);
1349 :     SendMessage(g_hTooltip, TTM_SETDELAYTIME, TTDT_AUTOMATIC, MAKELONG(1500, 0));
1350 :     SendMessage(g_hTooltip, TTM_SETMAXTIPWIDTH, 0, 400);
1351 : suxen_drol 889
1352 :     EnumChildWindows(hDlg, enum_tooltips, 0);
1353 :     }
1354 :    
1355 : suxen_drol 1061 SetClassLong(GetDlgItem(hDlg, IDC_BITRATE_S), GCL_HCURSOR, (LONG)LoadCursor(NULL, IDC_HAND));
1356 :    
1357 : suxen_drol 1017 {
1358 :     DWORD ext_style = ListView_GetExtendedListViewStyle(GetDlgItem(hDlg,IDC_ZONES));
1359 :     ext_style |= LVS_EX_FULLROWSELECT | LVS_EX_FLATSB ;
1360 :     ListView_SetExtendedListViewStyle(GetDlgItem(hDlg,IDC_ZONES), ext_style);
1361 :     }
1362 : suxen_drol 889
1363 : suxen_drol 1017 {
1364 :     typedef struct {
1365 :     char * name;
1366 :     int value;
1367 :     } char_int_t;
1368 :    
1369 :     const static char_int_t columns[] = {
1370 :     {"Frame #", 64},
1371 :     {"Weight (Q)", 72},
1372 :     {"Modifiers", 120}};
1373 :    
1374 :     LVCOLUMN lvc;
1375 :     int i;
1376 :    
1377 : edgomez 1053 /* Initialize the LVCOLUMN structure. */
1378 : suxen_drol 1017 lvc.mask = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM;
1379 :     lvc.fmt = LVCFMT_LEFT;
1380 :    
1381 : edgomez 1053 /* Add the columns. */
1382 : suxen_drol 1017 for (i=0; i<sizeof(columns)/sizeof(char_int_t); i++) {
1383 :     lvc.pszText = (char*)columns[i].name;
1384 :     lvc.cchTextMax = strlen(columns[i].name);
1385 :     lvc.iSubItem = i;
1386 :     lvc.cx = columns[i].value; /* column width, pixels */
1387 :     ListView_InsertColumn(GetDlgItem(hDlg,IDC_ZONES), i, &lvc);
1388 :     }
1389 :     }
1390 :    
1391 : suxen_drol 1061 /* XXX: main_mode needs RC_MODE_xxx, main_upload needs g_use_bitrate set correctly... */
1392 : suxen_drol 1017 main_upload(hDlg, config);
1393 :     main_mode(hDlg, config);
1394 : suxen_drol 1061 main_upload(hDlg, config);
1395 : suxen_drol 889 break;
1396 :    
1397 : suxen_drol 1017 case WM_NOTIFY :
1398 :     {
1399 :     NMHDR * n = (NMHDR*)lParam;
1400 :    
1401 :     if (n->code == NM_DBLCLK) {
1402 :     NMLISTVIEW * nmlv = (NMLISTVIEW*) lParam;
1403 :     config->cur_zone = nmlv->iItem;
1404 :    
1405 :     main_download(hDlg, config);
1406 :     if (config->cur_zone >= 0 && adv_dialog(hDlg, config, zone_dlgs, sizeof(zone_dlgs)/sizeof(int))) {
1407 :     main_insert_zone(GetDlgItem(hDlg, IDC_ZONES), &config->zones[config->cur_zone], config->cur_zone, FALSE);
1408 :     }
1409 :     break;
1410 :     }
1411 :    
1412 :     if (n->code == NM_RCLICK) {
1413 :     OutputDebugString("Right click");
1414 :     }
1415 :     break;
1416 :     }
1417 :    
1418 : suxen_drol 889 case WM_COMMAND :
1419 : suxen_drol 1017 if (HIWORD(wParam) == BN_CLICKED) {
1420 : suxen_drol 983
1421 : suxen_drol 1017 switch(LOWORD(wParam)) {
1422 :     case IDC_PROFILE_ADV :
1423 :     main_download(hDlg, config);
1424 :     adv_dialog(hDlg, config, profile_dlgs, sizeof(profile_dlgs)/sizeof(int));
1425 : suxen_drol 889
1426 : suxen_drol 1017 SendDlgItemMessage(hDlg, IDC_PROFILE, CB_SETCURSEL, config->profile, 0);
1427 :     main_mode(hDlg, config);
1428 :     break;
1429 : suxen_drol 889
1430 : suxen_drol 1017 case IDC_MODE_ADV :
1431 :     main_download(hDlg, config);
1432 :     if (config->mode == RC_MODE_1PASS) {
1433 :     adv_dialog(hDlg, config, single_dlgs, sizeof(single_dlgs)/sizeof(int));
1434 :     }else if (config->mode == RC_MODE_2PASS1) {
1435 :     adv_dialog(hDlg, config, pass1_dlgs, sizeof(pass1_dlgs)/sizeof(int));
1436 :     }else if (config->mode == RC_MODE_2PASS2) {
1437 :     adv_dialog(hDlg, config, pass2_dlgs, sizeof(pass2_dlgs)/sizeof(int));
1438 :     }
1439 :     break;
1440 : suxen_drol 889
1441 : suxen_drol 1061
1442 :     case IDC_BITRATE_S :
1443 :     /* alternate between bitrate/desired_length metrics */
1444 :     main_download(hDlg, config);
1445 :     config->use_2pass_bitrate = !config->use_2pass_bitrate;
1446 :     main_mode(hDlg, config);
1447 :     main_upload(hDlg, config);
1448 :     break;
1449 :    
1450 : suxen_drol 1017 case IDC_BITRATE_CALC :
1451 :     main_download(hDlg, config);
1452 :     adv_dialog(hDlg, config, bitrate_dlgs, sizeof(bitrate_dlgs)/sizeof(int));
1453 : syskin 1233 //SetDlgItemInt(hDlg, IDC_BITRATE, config->bitrate, FALSE);
1454 : suxen_drol 1017 main_mode(hDlg, config);
1455 :     break;
1456 : suxen_drol 889
1457 : suxen_drol 1017 case IDC_ADD :
1458 :     {
1459 :     int i, sel, new_frame;
1460 : suxen_drol 889
1461 : suxen_drol 1017 if (config->num_zones >= MAX_ZONES) {
1462 : suxen_drol 1069 MessageBox(hDlg, "Exceeded maximum number of zones.\nIncrease config.h:MAX_ZONES and rebuild.", "Warning", 0);
1463 : suxen_drol 1017 break;
1464 :     }
1465 : suxen_drol 889
1466 : suxen_drol 1017 sel = ListView_GetNextItem(GetDlgItem(hDlg, IDC_ZONES), -1, LVNI_SELECTED);
1467 : suxen_drol 889
1468 : suxen_drol 1017 if (sel<0) {
1469 :     if (config->ci_valid && config->ci.ciActiveFrame>0) {
1470 :     for(sel=0; sel<config->num_zones-1 && config->zones[sel].frame<config->ci.ciActiveFrame; sel++) ;
1471 :     sel--;
1472 :     new_frame = config->ci.ciActiveFrame;
1473 :     }else{
1474 :     sel = config->num_zones-1;
1475 : suxen_drol 1069 new_frame = sel<0 ? 0 : config->zones[sel].frame + 1;
1476 : suxen_drol 1017 }
1477 :     }else{
1478 :     new_frame = config->zones[sel].frame + 1;
1479 :     }
1480 :    
1481 :     for(i=config->num_zones-1; i>sel; i--) {
1482 :     config->zones[i+1] = config->zones[i];
1483 :     }
1484 :     config->num_zones++;
1485 :     config->zones[sel+1].frame = new_frame;
1486 :     config->zones[sel+1].mode = RC_ZONE_WEIGHT;
1487 :     config->zones[sel+1].weight = 100;
1488 :     config->zones[sel+1].quant = 500;
1489 : suxen_drol 1069 config->zones[sel+1].type = XVID_TYPE_AUTO;
1490 : suxen_drol 1017 config->zones[sel+1].greyscale = 0;
1491 :     config->zones[sel+1].chroma_opt = 0;
1492 :     config->zones[sel+1].bvop_threshold = 0;
1493 :    
1494 :     ListView_SetItemState(GetDlgItem(hDlg, IDC_ZONES), sel, 0x00000000, LVIS_SELECTED);
1495 :     main_insert_zone(GetDlgItem(hDlg, IDC_ZONES), &config->zones[sel+1], sel+1, TRUE);
1496 :     ListView_SetItemState(GetDlgItem(hDlg, IDC_ZONES), sel+1, 0xffffffff, LVIS_SELECTED);
1497 :     break;
1498 :     }
1499 :    
1500 :     case IDC_REMOVE :
1501 :     {
1502 :     int i, sel;
1503 :     sel = ListView_GetNextItem(GetDlgItem(hDlg, IDC_ZONES), -1, LVNI_SELECTED);
1504 :    
1505 :     if (sel == -1) {
1506 :     MessageBox(hDlg, "Nothing selected", "Warning", 0);
1507 :     break;
1508 :     }
1509 :    
1510 :     for (i=sel; i<config->num_zones-1; i++) {
1511 :     config->zones[i] = config->zones[i+1];
1512 :     }
1513 :     config->num_zones--;
1514 :     ListView_DeleteItem(GetDlgItem(hDlg, IDC_ZONES), sel);
1515 :    
1516 :     sel--;
1517 :     if (sel==0 && config->num_zones>1) {
1518 :     sel=1;
1519 :     }
1520 :     ListView_SetItemState(GetDlgItem(hDlg, IDC_ZONES), sel, 0xffffffff, LVIS_SELECTED);
1521 :     break;
1522 :     }
1523 :    
1524 :     case IDC_EDIT :
1525 :     main_download(hDlg, config);
1526 :     config->cur_zone = ListView_GetNextItem(GetDlgItem(hDlg, IDC_ZONES), -1, LVNI_SELECTED);
1527 :     if (config->cur_zone != -1 && adv_dialog(hDlg, config, zone_dlgs, sizeof(zone_dlgs)/sizeof(int))) {
1528 :     main_insert_zone(GetDlgItem(hDlg, IDC_ZONES), &config->zones[config->cur_zone], config->cur_zone, FALSE);
1529 :     }
1530 :     break;
1531 :    
1532 :     case IDC_ADVANCED :
1533 :     main_download(hDlg, config);
1534 :     adv_dialog(hDlg, config, adv_dlgs, sizeof(adv_dlgs)/sizeof(int));
1535 :     break;
1536 :    
1537 :     case IDC_DEFAULTS :
1538 :     config_reg_default(config);
1539 :     main_upload(hDlg, config);
1540 :     break;
1541 :    
1542 :     case IDOK :
1543 :     main_download(hDlg, config);
1544 :     config->save = TRUE;
1545 :     EndDialog(hDlg, IDOK);
1546 :     break;
1547 :    
1548 :     case IDCANCEL :
1549 :     config->save = FALSE;
1550 :     EndDialog(hDlg, IDCANCEL);
1551 :     break;
1552 :     }
1553 :     }else if (HIWORD(wParam) == LBN_SELCHANGE &&
1554 :     (LOWORD(wParam)==IDC_PROFILE || LOWORD(wParam)==IDC_MODE)) {
1555 : suxen_drol 1061
1556 :     main_download(hDlg, config);
1557 : suxen_drol 1017 main_mode(hDlg, config);
1558 : suxen_drol 1061 main_upload(hDlg, config);
1559 :    
1560 : suxen_drol 1017 }else if (HIWORD(wParam)==EN_UPDATE && LOWORD(wParam)==IDC_BITRATE) {
1561 :    
1562 : suxen_drol 1061 if (g_use_bitrate) {
1563 :     SendDlgItemMessage(hDlg, IDC_SLIDER, TBM_SETPOS, TRUE,
1564 :     config_get_uint(hDlg, IDC_BITRATE, DEFAULT_MIN_KBPS) );
1565 :     }
1566 :    
1567 : suxen_drol 1017 }else {
1568 :     return 0;
1569 :     }
1570 : suxen_drol 889 break;
1571 :    
1572 : suxen_drol 1017 case WM_HSCROLL :
1573 :     if((HWND)lParam == GetDlgItem(hDlg, IDC_SLIDER)) {
1574 :     SetDlgItemInt(hDlg, IDC_BITRATE, SendMessage((HWND)lParam, TBM_GETPOS, 0, 0), FALSE);
1575 :     break;
1576 :     }
1577 :     return 0;
1578 :    
1579 : suxen_drol 889 default :
1580 :     return 0;
1581 :     }
1582 :    
1583 :     return 1;
1584 :     }
1585 :    
1586 :    
1587 :    
1588 : suxen_drol 983 /* ===================================================================================== */
1589 :     /* ABOUT DIALOG ======================================================================== */
1590 :     /* ===================================================================================== */
1591 : suxen_drol 889
1592 :     BOOL CALLBACK about_proc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
1593 :     {
1594 :     switch (uMsg)
1595 :     {
1596 :     case WM_INITDIALOG :
1597 :     {
1598 :     xvid_gbl_info_t info;
1599 :     char core[100];
1600 :     HFONT hFont;
1601 :     LOGFONT lfData;
1602 :    
1603 :     SetDlgItemText(hDlg, IDC_BUILD, XVID_BUILD);
1604 :     SetDlgItemText(hDlg, IDC_SPECIAL_BUILD, XVID_SPECIAL_BUILD);
1605 :    
1606 :     memset(&info, 0, sizeof(info));
1607 :     info.version = XVID_VERSION;
1608 :     xvid_global(0, XVID_GBL_INFO, &info, NULL);
1609 :     wsprintf(core, "libxvidcore version %d.%d.%d (\"%s\")",
1610 : edgomez 1107 XVID_VERSION_MAJOR(info.actual_version),
1611 :     XVID_VERSION_MINOR(info.actual_version),
1612 :     XVID_VERSION_PATCH(info.actual_version),
1613 : suxen_drol 889 info.build);
1614 :    
1615 :     SetDlgItemText(hDlg, IDC_CORE, core);
1616 :    
1617 :     hFont = (HFONT)SendDlgItemMessage(hDlg, IDC_WEBSITE, WM_GETFONT, 0, 0L);
1618 :    
1619 : suxen_drol 1017 if (GetObject(hFont, sizeof(LOGFONT), &lfData)) {
1620 : suxen_drol 889 lfData.lfUnderline = 1;
1621 :    
1622 :     hFont = CreateFontIndirect(&lfData);
1623 : suxen_drol 1017 if (hFont) {
1624 : suxen_drol 889 SendDlgItemMessage(hDlg, IDC_WEBSITE, WM_SETFONT, (WPARAM)hFont, 1L);
1625 :     }
1626 :     }
1627 :    
1628 :     SetClassLong(GetDlgItem(hDlg, IDC_WEBSITE), GCL_HCURSOR, (LONG)LoadCursor(NULL, IDC_HAND));
1629 :     SetDlgItemText(hDlg, IDC_WEBSITE, XVID_WEBSITE);
1630 :     }
1631 :     break;
1632 :    
1633 :     case WM_CTLCOLORSTATIC :
1634 :     if ((HWND)lParam == GetDlgItem(hDlg, IDC_WEBSITE))
1635 :     {
1636 :     SetBkMode((HDC)wParam, TRANSPARENT) ;
1637 :     SetTextColor((HDC)wParam, RGB(0x00,0x00,0xc0));
1638 :     return (BOOL)GetStockObject(NULL_BRUSH);
1639 :     }
1640 :     return 0;
1641 :    
1642 :     case WM_COMMAND :
1643 :     if (LOWORD(wParam) == IDC_WEBSITE && HIWORD(wParam) == STN_CLICKED)
1644 :     {
1645 :     ShellExecute(hDlg, "open", XVID_WEBSITE, NULL, NULL, SW_SHOWNORMAL);
1646 :     }
1647 :     else if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)
1648 :     {
1649 :     EndDialog(hDlg, LOWORD(wParam));
1650 :     }
1651 :     break;
1652 :    
1653 :     default :
1654 :     return 0;
1655 :     }
1656 :    
1657 :     return 1;
1658 :     }

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