[cvs] / xvidcore / vfw / src / config.c Repository:
ViewVC logotype

Diff of /xvidcore/vfw/src/config.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

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

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.1.2.27

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