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

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