[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.34, Tue Jan 27 11:21:11 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 <stdio.h>  /* sprintf */
61    #include <xvid.h>       /* XviD API */
62    
63    #include "debug.h"
64    #include "config.h"
65    #include "resource.h"
66    
67    
68    #define CONSTRAINVAL(X,Y,Z) if((X)<(Y)) X=Y; if((X)>(Z)) X=Z;
69    #define IsDlgChecked(hwnd,idc)  (IsDlgButtonChecked(hwnd,idc) == BST_CHECKED)
70    #define CheckDlg(hwnd,idc,value) CheckDlgButton(hwnd,idc, value?BST_CHECKED:BST_UNCHECKED)
71    #define EnableDlgWindow(hwnd,idc,state) EnableWindow(GetDlgItem(hwnd,idc),state)
72    
73    static void zones_update(HWND hDlg, CONFIG * config);
74    
75    HINSTANCE g_hInst;
76    HWND g_hTooltip;
77    
78    static int g_use_bitrate = 1;
79    int pp_dy, pp_duv, pp_dr, pp_fe; /* decoder options */
80    
81    /* enumerates child windows, assigns tooltips */
82    BOOL CALLBACK enum_tooltips(HWND hWnd, LPARAM lParam)
83    {
84            char help[500];
85    
86            if (LoadString(g_hInst, GetDlgCtrlID(hWnd), help, 500))
87            {
88                    TOOLINFO ti;
89                    ti.cbSize = sizeof(TOOLINFO);
90                    ti.uFlags = TTF_SUBCLASS | TTF_IDISHWND;
91                    ti.hwnd = GetParent(hWnd);
92                    ti.uId  = (LPARAM)hWnd;
93                    ti.lpszText = help;
94                    SendMessage(g_hTooltip, TTM_ADDTOOL, 0, (LPARAM)&ti);
95            }
96    
97            return TRUE;
98    }
99    
100    
101    /* ===================================================================================== */
102    /* MPEG-4 PROFILES/LEVELS ============================================================== */
103    /* ===================================================================================== */
104    
105    
106    
107    /* default vbv_occupancy is (64/170)*vbv_buffer_size */
108    
109    const profile_t profiles[] =
110    {
111    /*      name                             p@l,   w       h  fps  obj  Tvmv  vmv  vcv   ac%        vbv      pkt   kbps  flags */
112            { "Simple @ L0",           0x08,  176, 144, 15,  1,  198,   99,   1485, 100,  10*16368,  2048,   64, 0 },
113            /* simple@l0: max f_code=1, intra_dc_vlc_threshold=0 */
114            /* if ac preidition is used, adaptive quantization must not be used */
115            /* <=qcif must be used */
116            { "Simple @ L1",           0x01,  176, 144, 15,  4,  198,   99,   1485, 100,  10*16368,  2048,   64, PROFILE_ADAPTQUANT },
117            { "Simple @ L2",           0x02,  352, 288, 15,  4,  792,  396,   5940, 100,  40*16368,  4096,  128, PROFILE_ADAPTQUANT },
118            { "Simple @ L3",           0x03,  352, 288, 15,  4,  792,  396,  11880, 100,  40*16368,  8192,  384, PROFILE_ADAPTQUANT },
119    
120            { "ARTS @ L1",           0x91,  176, 144, 15,  4,  198,   99,   1485, 100,  10*16368,  8192,   64, PROFILE_ARTS },
121            { "ARTS @ L2",           0x92,  352, 288, 15,  4,  792,  396,   5940, 100,  40*16368, 16384,  128, PROFILE_ARTS },
122            { "ARTS @ L3",           0x93,  352, 288, 30,  4,  792,  396,  11880, 100,  40*16368, 16384,  384, PROFILE_ARTS },
123            { "ARTS @ L4",           0x94,  352, 288, 30, 16,  792,  396,  11880, 100,  80*16368, 16384, 2000, PROFILE_ARTS },
124    
125            { "AS @ L0",               0xf0,  176, 144, 30,  1,  297,   99,   2970, 100,  10*16368,  2048,  128, PROFILE_AS },
126            { "AS @ L1",               0xf1,  176, 144, 30,  4,  297,   99,   2970, 100,  10*16368,  2048,  128, PROFILE_AS },
127            { "AS @ L2",               0xf2,  352, 288, 15,  4, 1188,  396,   5940, 100,  40*16368,  4096,  384, PROFILE_AS },
128            { "AS @ L3",               0xf3,  352, 288, 30,  4, 1188,  396,  11880, 100,  40*16368,  4096,  768, PROFILE_AS },
129     /*  ISMA Profile 1, (ASP) @ L3b (CIF, 1.5 Mb/s) CIF(352x288), 30fps, 1.5Mbps max ??? */
130            { "AS @ L4",               0xf4,  352, 576, 30,  4, 2376,  792,  23760,  50,  80*16368,  8192, 3000, PROFILE_AS },
131            { "AS @ L5",               0xf5,  720, 576, 30,  4, 4860, 1620,  48600,  25, 112*16368, 16384, 8000, PROFILE_AS },
132    
133    #ifdef DXN_PROFILES
134            { "DXN Handheld",          0x00,  176, 144, 15, -1,  198,   99,   1485, 100,  16*16368, -1,  128, PROFILE_ADAPTQUANT },
135            { "DXN Portable NTSC", 0x00,  352, 240, 30, -1,  990,  330,   9900, 100,  64*16368,     -1,  768, PROFILE_ADAPTQUANT|PROFILE_BVOP },
136            { "DXN Portable PAL",  0x00,  352, 288, 25, -1, 1188,  396,   9900, 100,  64*16368,     -1,  768, PROFILE_ADAPTQUANT|PROFILE_BVOP },
137            { "DXN HT NTSC",           0x00,  720, 480, 30, -1, 4050, 1350,  40500, 100, 192*16368, -1, 4000, PROFILE_ADAPTQUANT|PROFILE_BVOP|PROFILE_INTERLACE },
138            { "DXN HT PAL",         0x00,  720, 576, 25, -1, 4860, 1620,  40500, 100, 192*16368,    -1, 4000, PROFILE_ADAPTQUANT|PROFILE_BVOP|PROFILE_INTERLACE },
139            { "DXN HDTV",             0x00, 1280, 720, 30, -1,10800, 3600, 108000, 100, 384*16368,  -1, 8000, PROFILE_ADAPTQUANT|PROFILE_BVOP|PROFILE_INTERLACE },
140    #endif
141    
142            { "(unrestricted)",     0x00,   0,   0,  0,  0, 0,      0,        0, 100,   0*16368,     0,     0, 0xffffffff },
143    };
144    
145    
146    typedef struct {
147            char * name;
148            float value;
149    } named_float_t;
150    
151    static const named_float_t video_fps_list[] = {
152            {  "15.0",                      15.0F   },
153            {  "23.976 (FILM)",     23.976F },
154            {  "25.0 (PAL)",        25.0F   },
155            {  "29.97 (NTSC)",      29.970F },
156            {  "30.0",                      30.0F   }
157    };
158    
159    
160    typedef struct {
161            char * name;
162            int value;
163    } named_int_t;
164    
165    /* audio overhead intervals (milliseconds) */
166    
167    static const named_int_t audio_type_list[] = {
168            {       "MP3-CBR",              1000    },
169            {       "MP3-VBR",                24    },
170            {       "AC3",                    64    },
171            {       "DTS",                    21    },
172            {       "(None)",                  0    },
173    };
174    
175    
176    /* ===================================================================================== */
177    /* REGISTRY ============================================================================ */
178    /* ===================================================================================== */
179    
180    /* registry info structs */
181    CONFIG reg;
182    
183    static const REG_INT reg_ints[] = {
184            {"mode",                                        &reg.mode,                                              RC_MODE_1PASS},
185            {"bitrate",                                     &reg.bitrate,                                   700},
186            {"desired_size",                        &reg.desired_size,                              570000},
187            {"use_2pass_bitrate",           &reg.use_2pass_bitrate,                 0},
188            {"desired_quant",                       &reg.desired_quant,                             DEFAULT_QUANT}, /* 100-base float */
189    
190            /* profile */
191            {"quant_type",                          &reg.quant_type,                                0},
192            {"lum_masking",                         &reg.lum_masking,                               0},
193            {"interlacing",                         &reg.interlacing,                               0},
194            {"qpel",                                        &reg.qpel,                                              0},
195            {"gmc",                                         &reg.gmc,                                               0},
196            {"reduced_resolution",          &reg.reduced_resolution,                0},
197            {"use_bvop",                            &reg.use_bvop,                                  1},
198            {"max_bframes",                         &reg.max_bframes,                               2},
199            {"bquant_ratio",                        &reg.bquant_ratio,                              150},   /* 100-base float */
200            {"bquant_offset",                       &reg.bquant_offset,                             100},   /* 100-base float */
201            {"packed",                                      &reg.packed,                                    1},
202            {"closed_gov",                          &reg.closed_gov,                                1},
203    
204            /* aspect ratio */
205            {"ar_mode",                                     &reg.ar_mode,                                   0},
206            {"aspect_ratio",                        &reg.display_aspect_ratio,              0},
207            {"par_x",                                       &reg.par_x,                                             1},
208            {"par_y",                                       &reg.par_y,                                             1},
209            {"ar_x",                                        &reg.ar_x,                                              4},
210            {"ar_y",                                        &reg.ar_y,                                              3},
211    
212            /* zones */
213            {"num_zones",                           &reg.num_zones,                                 1},
214    
215            /* single pass */
216            {"rc_reaction_delay_factor",&reg.rc_reaction_delay_factor,      16},
217            {"rc_averaging_period",         &reg.rc_averaging_period,               100},
218            {"rc_buffer",                           &reg.rc_buffer,                                 100},
219    
220            /* 2pass1 */
221            {"discard1pass",                        &reg.discard1pass,                              1},
222    
223            /* 2pass2 */
224            {"keyframe_boost",                      &reg.keyframe_boost,                    10},
225            {"kfreduction",                         &reg.kfreduction,                               20},
226            {"kfthreshold",                         &reg.kfthreshold,                               1},
227            {"curve_compression_high",      &reg.curve_compression_high,    0},
228            {"curve_compression_low",       &reg.curve_compression_low,             0},
229            {"overflow_control_strength", &reg.overflow_control_strength, 5},
230            {"twopass_max_overflow_improvement", &reg.twopass_max_overflow_improvement, 5},
231            {"twopass_max_overflow_degradation", &reg.twopass_max_overflow_degradation, 5},
232    
233            /* bitrate calculator */
234            {"container_type",                      &reg.container_type,                    1},
235            {"target_size",                         &reg.target_size,                               650 * 1024},
236            {"subtitle_size",                       &reg.subtitle_size,                             0},
237            {"hours",                               &reg.hours,                                             1},
238            {"minutes",                             &reg.minutes,                                   30},
239            {"seconds",                             &reg.seconds,                                   0},
240            {"fps",                                 &reg.fps,                                               2},
241            {"audio_mode",                          &reg.audio_mode,                                0},
242            {"audio_type",                          &reg.audio_type,                                0},
243            {"audio_rate",                          &reg.audio_rate,                                128},
244            {"audio_size",                          &reg.audio_size,                                0},
245    
246            /* motion */
247            {"motion_search",                       &reg.motion_search,                             6},
248            {"vhq_mode",                            &reg.vhq_mode,                                  1},
249            {"chromame",                            &reg.chromame,                                  1},
250            {"cartoon_mode",                        &reg.cartoon_mode,                              0},
251            {"turbo",                                       &reg.turbo,                                             0},
252            {"max_key_interval",            &reg.max_key_interval,                  300},
253            {"frame_drop_ratio",            &reg.frame_drop_ratio,                  0},
254    
255            /* quant */
256            {"min_iquant",                          &reg.min_iquant,                                1},
257            {"max_iquant",                          &reg.max_iquant,                                31},
258            {"min_pquant",                          &reg.min_pquant,                                1},
259            {"max_pquant",                          &reg.max_pquant,                                31},
260            {"min_bquant",                          &reg.min_bquant,                                1},
261            {"max_bquant",                          &reg.max_bquant,                                31},
262            {"trellis_quant",                       &reg.trellis_quant,                             0},
263    
264            /* debug */
265            {"fourcc_used",                         &reg.fourcc_used,                               0},
266            {"debug",                                       &reg.debug,                                             0x0},
267            {"vop_debug",                           &reg.vop_debug,                                 0},
268            {"display_status",                      &reg.display_status,                    1},
269    
270            /* decoder, shared with dshow */
271            {"Deblock_Y",                           &pp_dy,                                                 0},
272            {"Deblock_UV",                          &pp_duv,                                                0},
273            {"Dering",                                      &pp_dr,                                                 0},
274            {"FilmEffect",                          &pp_fe,                                                 0},
275    
276    };
277    
278    static const REG_STR reg_strs[] = {
279            {"profile",                                     reg.profile_name,                               "AS @ L5"},
280            {"stats",                                       reg.stats,                                              CONFIG_2PASS_FILE},
281    };
282    
283    
284    zone_t stmp;
285    static const REG_INT reg_zone[] = {
286            {"zone%i_frame",                        &stmp.frame,                                    0},
287            {"zone%i_mode",                         &stmp.mode,                                             RC_ZONE_WEIGHT},
288            {"zone%i_weight",                       &stmp.weight,                                   100},     /* 100-base float */
289            {"zone%i_quant",                        &stmp.quant,                                    500},     /* 100-base float */
290            {"zone%i_type",                         &stmp.type,                                             XVID_TYPE_AUTO},
291            {"zone%i_greyscale",            &stmp.greyscale,                                0},
292            {"zone%i_chroma_opt",           &stmp.chroma_opt,                               0},
293            {"zone%i_bvop_threshold",   &stmp.bvop_threshold,                       0},
294    };
295    
296    static const BYTE default_qmatrix_intra[] = {
297            8, 17,18,19,21,23,25,27,
298            17,18,19,21,23,25,27,28,
299            20,21,22,23,24,26,28,30,
300            21,22,23,24,26,28,30,32,
301            22,23,24,26,28,30,32,35,
302            23,24,26,28,30,32,35,38,
303            25,26,28,30,32,35,38,41,
304            27,28,30,32,35,38,41,45
305    };
306    
307    static const BYTE default_qmatrix_inter[] = {
308            16,17,18,19,20,21,22,23,
309            17,18,19,20,21,22,23,24,
310            18,19,20,21,22,23,24,25,
311            19,20,21,22,23,24,26,27,
312            20,21,22,23,25,26,27,28,
313            21,22,23,24,26,27,28,30,
314            22,23,24,26,27,28,30,31,
315            23,24,25,27,28,30,31,33
316    };
317    
318    
319    
320    #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)));}
321    
322    #define XVID_DLL_NAME "xvidcore.dll"
323    
324    void config_reg_get(CONFIG * config)
325    {
326            char tmp[32];
327            HKEY hKey;
328            DWORD size;
329            int i,j;
330            xvid_gbl_info_t info;
331            HINSTANCE m_hdll;
332    
333            memset(&info, 0, sizeof(info));
334            info.version = XVID_VERSION;
335    
336            m_hdll = LoadLibrary(XVID_DLL_NAME);
337            if (m_hdll != NULL) {
338    
339                    ((int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_global"))
340                            (0, XVID_GBL_INFO, &info, NULL);
341    
342                    FreeLibrary(m_hdll);
343            }
344    
345            reg.cpu = info.cpu_flags;
346            reg.num_threads = info.num_threads;
347    
348            RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT "\\" XVID_REG_CHILD, 0, KEY_READ, &hKey);
349    
350            /* read integer values */
351            for (i=0 ; i<sizeof(reg_ints)/sizeof(REG_INT); i++) {
352                    size = sizeof(int);
353                    if (RegQueryValueEx(hKey, reg_ints[i].reg_value, 0, 0, (LPBYTE)reg_ints[i].config_int, &size) != ERROR_SUCCESS) {
354                            *reg_ints[i].config_int = reg_ints[i].def;
355                    }
356            }
357    
358            /* read string values */
359            for (i=0 ; i<sizeof(reg_strs)/sizeof(REG_STR); i++) {
360                    size = MAX_PATH;
361                    if (RegQueryValueEx(hKey, reg_strs[i].reg_value, 0, 0, (LPBYTE)reg_strs[i].config_str, &size) != ERROR_SUCCESS) {
362                            memcpy(reg_strs[i].config_str, reg_strs[i].def, MAX_PATH);
363                    }
364            }
365    
366            reg.profile = 0;
367            for (i=0; i<sizeof(profiles)/sizeof(profile_t); i++) {
368                    if (strcmpi(profiles[i].name, reg.profile_name) == 0) {
369                            reg.profile = i;
370                    }
371            }
372    
373            memcpy(config, &reg, sizeof(CONFIG));
374    
375    
376            /* read quant matrices */
377            REG_GET_B("qmatrix_intra", config->qmatrix_intra, default_qmatrix_intra);
378            REG_GET_B("qmatrix_inter", config->qmatrix_inter, default_qmatrix_inter);
379    
380    
381            /* read zones */
382            if (config->num_zones>MAX_ZONES) {
383                    config->num_zones=MAX_ZONES;
384            }else if (config->num_zones<=0) {
385                    config->num_zones = 1;
386            }
387    
388            for (i=0; i<config->num_zones; i++) {
389                    for (j=0; j<sizeof(reg_zone)/sizeof(REG_INT); j++)  {
390                            size = sizeof(int);
391    
392                            wsprintf(tmp, reg_zone[j].reg_value, i);
393                            if (RegQueryValueEx(hKey, tmp, 0, 0, (LPBYTE)reg_zone[j].config_int, &size) != ERROR_SUCCESS)
394                                    *reg_zone[j].config_int = reg_zone[j].def;
395                    }
396    
397                    memcpy(&config->zones[i], &stmp, sizeof(zone_t));
398            }
399    
400            RegCloseKey(hKey);
401    }
402    
403    
404    /* put config settings in registry */
405    
406    #define REG_SET_B(X, Y) RegSetValueEx(hKey, X, 0, REG_BINARY, Y, sizeof((Y)))
407    
408    void config_reg_set(CONFIG * config)
409    {
410            char tmp[64];
411            HKEY hKey;
412            DWORD dispo;
413            int i,j;
414    
415            if (RegCreateKeyEx(
416                            XVID_REG_KEY,
417                            XVID_REG_PARENT "\\" XVID_REG_CHILD,
418                            0,
419                            XVID_REG_CLASS,
420                            REG_OPTION_NON_VOLATILE,
421                            KEY_WRITE,
422                            0,
423                            &hKey,
424                            &dispo) != ERROR_SUCCESS)
425            {
426                    DPRINTF("Couldn't create XVID_REG_SUBKEY - GetLastError=%i", GetLastError());
427                    return;
428            }
429    
430            memcpy(&reg, config, sizeof(CONFIG));
431    
432            /* set integer values */
433            for (i=0 ; i<sizeof(reg_ints)/sizeof(REG_INT); i++) {
434                    RegSetValueEx(hKey, reg_ints[i].reg_value, 0, REG_DWORD, (LPBYTE)reg_ints[i].config_int, sizeof(int));
435            }
436    
437            /* set string values */
438            strcpy(reg.profile_name, profiles[reg.profile].name);
439            for (i=0 ; i<sizeof(reg_strs)/sizeof(REG_STR); i++) {
440                    RegSetValueEx(hKey, reg_strs[i].reg_value, 0, REG_SZ, reg_strs[i].config_str, lstrlen(reg_strs[i].config_str)+1);
441            }
442    
443            /* set quant matrices */
444            REG_SET_B("qmatrix_intra", config->qmatrix_intra);
445            REG_SET_B("qmatrix_inter", config->qmatrix_inter);
446    
447            /* set seections */
448            for (i=0; i<config->num_zones; i++) {
449                    memcpy(&stmp, &config->zones[i], sizeof(zone_t));
450                    for (j=0; j<sizeof(reg_zone)/sizeof(REG_INT); j++)  {
451                            wsprintf(tmp, reg_zone[j].reg_value, i);
452                            RegSetValueEx(hKey, tmp, 0, REG_DWORD, (LPBYTE)reg_zone[j].config_int, sizeof(int));
453                    }
454            }
455    
456            RegCloseKey(hKey);
457    }
458    
459    
460    /* clear XviD registry key, load defaults */
461    
462    static void config_reg_default(CONFIG * config)
463    {
464            HKEY hKey;
465    
466            if (RegOpenKeyEx(XVID_REG_KEY, XVID_REG_PARENT, 0, KEY_ALL_ACCESS, &hKey)) {
467                    DPRINTF("Couldn't open registry key for deletion - GetLastError=%i", GetLastError());
468                    return;
469            }
470    
471            if (RegDeleteKey(hKey, XVID_REG_CHILD)) {
472                    DPRINTF("Couldn't delete registry key - GetLastError=%i", GetLastError());
473                    return;
474            }
475    
476            RegCloseKey(hKey);
477            config_reg_get(config);
478            config_reg_set(config);
479    }
480    
481    
482    /* leaves current config value if dialog item is empty */
483    static int config_get_int(HWND hDlg, INT item, int config)
484    {
485            BOOL success = FALSE;
486            int tmp = GetDlgItemInt(hDlg, item, &success, TRUE);
487            return (success) ? tmp : config;
488    }
489    
490    
491    static int config_get_uint(HWND hDlg, UINT item, int config)
492    {
493            BOOL success = FALSE;
494            int tmp = GetDlgItemInt(hDlg, item, &success, FALSE);
495            return (success) ? tmp : config;
496    }
497    
498    
499    /* we use "100 base" floats */
500    
501    #define FLOAT_BUF_SZ    20
502    static int get_dlgitem_float(HWND hDlg, UINT item, int def)
503    {
504            char buf[FLOAT_BUF_SZ];
505    
506            if (GetDlgItemText(hDlg, item, buf, FLOAT_BUF_SZ) == 0)
507                    return def;
508    
509            return (int)(atof(buf)*100);
510    }
511    
512    static void set_dlgitem_float(HWND hDlg, UINT item, int value)
513    {
514            char buf[FLOAT_BUF_SZ];
515            sprintf(buf, "%.2f", (float)value/100);
516            SetDlgItemText(hDlg, item, buf);
517    }
518    
519    
520    #define HEX_BUF_SZ  16
521    static unsigned int get_dlgitem_hex(HWND hDlg, UINT item, unsigned int def)
522    {
523            char buf[HEX_BUF_SZ];
524            unsigned int value;
525    
526            if (GetDlgItemText(hDlg, item, buf, HEX_BUF_SZ) == 0)
527                    return def;
528    
529            if (sscanf(buf,"0x%x", &value)==1 || sscanf(buf,"%x", &value)==1) {
530                    return value;
531            }
532    
533            return def;
534    }
535    
536    static void set_dlgitem_hex(HWND hDlg, UINT item, int value)
537    {
538            char buf[HEX_BUF_SZ];
539            wsprintf(buf, "0x%x", value);
540            SetDlgItemText(hDlg, item, buf);
541    }
542    
543    /* ===================================================================================== */
544    /* QUANT MATRIX DIALOG ================================================================= */
545    /* ===================================================================================== */
546    
547    static void quant_upload(HWND hDlg, CONFIG* config)
548    {
549            int i;
550    
551            for (i=0 ; i<64; i++) {
552                    SetDlgItemInt(hDlg, IDC_QINTRA00 + i, config->qmatrix_intra[i], FALSE);
553                    SetDlgItemInt(hDlg, IDC_QINTER00 + i, config->qmatrix_inter[i], FALSE);
554            }
555    }
556    
557    
558    static void quant_download(HWND hDlg, CONFIG* config)
559    {
560            int i;
561    
562            for (i=0; i<64; i++) {
563                    int temp;
564    
565                    temp = config_get_uint(hDlg, i + IDC_QINTRA00, config->qmatrix_intra[i]);
566                    CONSTRAINVAL(temp, 1, 255);
567                    config->qmatrix_intra[i] = temp;
568    
569                    temp = config_get_uint(hDlg, i + IDC_QINTER00, config->qmatrix_inter[i]);
570                    CONSTRAINVAL(temp, 1, 255);
571                    config->qmatrix_inter[i] = temp;
572            }
573    }
574    
575    
576    static void quant_loadsave(HWND hDlg, CONFIG * config, int save)
577    {
578            char file[MAX_PATH];
579            OPENFILENAME ofn;
580            HANDLE hFile;
581            DWORD read=128, wrote=0;
582            BYTE quant_data[128];
583    
584            strcpy(file, "\\matrix");
585            memset(&ofn, 0, sizeof(OPENFILENAME));
586            ofn.lStructSize = sizeof(OPENFILENAME);
587    
588            ofn.hwndOwner = hDlg;
589            ofn.lpstrFilter = "All files (*.*)\0*.*\0\0";
590            ofn.lpstrFile = file;
591            ofn.nMaxFile = MAX_PATH;
592            ofn.Flags = OFN_PATHMUSTEXIST;
593    
594            if (save) {
595                    ofn.Flags |= OFN_OVERWRITEPROMPT;
596                    if (GetSaveFileName(&ofn)) {
597                            hFile = CreateFile(file, GENERIC_WRITE, 0, 0, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
598    
599                            quant_download(hDlg, config);
600                            memcpy(quant_data, config->qmatrix_intra, 64);
601                            memcpy(quant_data+64, config->qmatrix_inter, 64);
602    
603                            if (hFile == INVALID_HANDLE_VALUE) {
604                                    DPRINTF("Couldn't save quant matrix");
605                            }else{
606                                    if (!WriteFile(hFile, quant_data, 128, &wrote, 0)) {
607                                            DPRINTF("Couldnt write quant matrix");
608                                    }
609                            }
610                            CloseHandle(hFile);
611                    }
612            }else{
613                    ofn.Flags |= OFN_FILEMUSTEXIST;
614                    if (GetOpenFileName(&ofn)) {
615                            hFile = CreateFile(file, GENERIC_READ, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
616    
617                            if (hFile == INVALID_HANDLE_VALUE) {
618                                    DPRINTF("Couldn't load quant matrix");
619                            } else {
620                                    if (!ReadFile(hFile, quant_data, 128, &read, 0)) {
621                                            DPRINTF("Couldnt read quant matrix");
622                                    }else{
623                                            memcpy(config->qmatrix_intra, quant_data, 64);
624                                            memcpy(config->qmatrix_inter, quant_data+64, 64);
625                                            quant_upload(hDlg, config);
626                                    }
627                            }
628                            CloseHandle(hFile);
629                    }
630            }
631    }
632    
633    /* quantization matrix dialog proc */
634    
635    static BOOL CALLBACK quantmatrix_proc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
636    {
637            CONFIG* config = (CONFIG*)GetWindowLong(hDlg, GWL_USERDATA);
638    
639            switch (uMsg)
640            {
641            case WM_INITDIALOG :
642                    SetWindowLong(hDlg, GWL_USERDATA, lParam);
643                    config = (CONFIG*)lParam;
644                    quant_upload(hDlg, config);
645    
646                    if (g_hTooltip)
647                    {
648                            EnumChildWindows(hDlg, enum_tooltips, 0);
649                    }
650                    break;
651    
652            case WM_COMMAND :
653    
654                    if (HIWORD(wParam) == BN_CLICKED) {
655                            switch(LOWORD(wParam)) {
656                            case IDOK :
657                                    quant_download(hDlg, config);
658                                    EndDialog(hDlg, IDOK);
659                                    break;
660    
661                            case IDCANCEL :
662                                    EndDialog(hDlg, IDCANCEL);
663                                    break;
664    
665                            case IDC_SAVE :
666                                    quant_loadsave(hDlg, config, 1);
667                                    break;
668    
669                            case IDC_LOAD :
670                                    quant_loadsave(hDlg, config, 0);
671                                    break;
672    
673                            default :
674                                    return FALSE;
675                            }
676                            break;
677                    }
678                    return FALSE;
679    
680            default :
681                    return FALSE;
682            }
683    
684            return TRUE;
685    }
686    
687    
688    /* ===================================================================================== */
689    /* ADVANCED DIALOG PAGES ================================================================ */
690    /* ===================================================================================== */
691    
692    /* initialise pages */
693    static void adv_init(HWND hDlg, int idd, CONFIG * config)
694    {
695            unsigned int i;
696    
697            switch(idd) {
698            case IDD_PROFILE :
699                    for (i=0; i<sizeof(profiles)/sizeof(profile_t); i++)
700                            SendDlgItemMessage(hDlg, IDC_PROFILE_PROFILE, CB_ADDSTRING, 0, (LPARAM)profiles[i].name);
701                    SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_ADDSTRING, 0, (LPARAM)"H.263");
702                    SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_ADDSTRING, 0, (LPARAM)"MPEG");
703                    SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_ADDSTRING, 0, (LPARAM)"MPEG-Custom");
704                    break;
705    
706            case IDD_AR:
707                    SendDlgItemMessage(hDlg, IDC_ASPECT_RATIO, CB_ADDSTRING, 0, (LPARAM)"Square (default)");
708                    SendDlgItemMessage(hDlg, IDC_ASPECT_RATIO, CB_ADDSTRING, 0, (LPARAM)"4:3 PAL");
709                    SendDlgItemMessage(hDlg, IDC_ASPECT_RATIO, CB_ADDSTRING, 0, (LPARAM)"4:3 NTSC");
710                    SendDlgItemMessage(hDlg, IDC_ASPECT_RATIO, CB_ADDSTRING, 0, (LPARAM)"16:9 PAL");
711                    SendDlgItemMessage(hDlg, IDC_ASPECT_RATIO, CB_ADDSTRING, 0, (LPARAM)"16:9 NTSC");
712                    SendDlgItemMessage(hDlg, IDC_ASPECT_RATIO, CB_ADDSTRING, 0, (LPARAM)"Custom...");
713                    break;
714    
715            case IDD_LEVEL :
716                    for (i=0; i<sizeof(profiles)/sizeof(profile_t); i++)
717                            SendDlgItemMessage(hDlg, IDC_LEVEL_PROFILE, CB_ADDSTRING, 0, (LPARAM)profiles[i].name);
718                    break;
719    
720            case IDD_BITRATE :
721                    SendDlgItemMessage(hDlg, IDC_BITRATE_CFORMAT, CB_ADDSTRING, 0, (LPARAM)"AVI-Legacy");
722                    SendDlgItemMessage(hDlg, IDC_BITRATE_CFORMAT, CB_ADDSTRING, 0, (LPARAM)"AVI-OpenDML");
723                    SendDlgItemMessage(hDlg, IDC_BITRATE_CFORMAT, CB_ADDSTRING, 0, (LPARAM)"(None)");
724    
725                    SendDlgItemMessage(hDlg, IDC_BITRATE_TSIZE, CB_ADDSTRING, 0, (LPARAM)"665600");
726                    SendDlgItemMessage(hDlg, IDC_BITRATE_TSIZE, CB_ADDSTRING, 0, (LPARAM)"716800");
727    
728                    for (i=0; i<sizeof(video_fps_list)/sizeof(named_float_t); i++)
729                            SendDlgItemMessage(hDlg, IDC_BITRATE_FPS, CB_ADDSTRING, 0, (LPARAM)video_fps_list[i].name);
730    
731                    for (i=0; i<sizeof(audio_type_list)/sizeof(named_int_t); i++)
732                            SendDlgItemMessage(hDlg, IDC_BITRATE_AFORMAT, CB_ADDSTRING, 0, (LPARAM)audio_type_list[i].name);
733    
734                    SendDlgItemMessage(hDlg, IDC_BITRATE_ARATE, CB_ADDSTRING, 0, (LPARAM)"32");
735                    SendDlgItemMessage(hDlg, IDC_BITRATE_ARATE, CB_ADDSTRING, 0, (LPARAM)"56");
736                    SendDlgItemMessage(hDlg, IDC_BITRATE_ARATE, CB_ADDSTRING, 0, (LPARAM)"64");
737                    SendDlgItemMessage(hDlg, IDC_BITRATE_ARATE, CB_ADDSTRING, 0, (LPARAM)"96");
738                    SendDlgItemMessage(hDlg, IDC_BITRATE_ARATE, CB_ADDSTRING, 0, (LPARAM)"112");
739                    SendDlgItemMessage(hDlg, IDC_BITRATE_ARATE, CB_ADDSTRING, 0, (LPARAM)"128");
740                    SendDlgItemMessage(hDlg, IDC_BITRATE_ARATE, CB_ADDSTRING, 0, (LPARAM)"160");
741                    SendDlgItemMessage(hDlg, IDC_BITRATE_ARATE, CB_ADDSTRING, 0, (LPARAM)"192");
742                    SendDlgItemMessage(hDlg, IDC_BITRATE_ARATE, CB_ADDSTRING, 0, (LPARAM)"224");
743                    SendDlgItemMessage(hDlg, IDC_BITRATE_ARATE, CB_ADDSTRING, 0, (LPARAM)"256");
744                    SendDlgItemMessage(hDlg, IDC_BITRATE_ARATE, CB_ADDSTRING, 0, (LPARAM)"384");
745                    SendDlgItemMessage(hDlg, IDC_BITRATE_ARATE, CB_ADDSTRING, 0, (LPARAM)"512");
746                    break;
747    
748            case IDD_ZONE :
749                    EnableDlgWindow(hDlg, IDC_ZONE_FETCH, config->ci_valid);
750                    break;
751    
752            case IDD_MOTION :
753                    SendDlgItemMessage(hDlg, IDC_MOTION, CB_ADDSTRING, 0, (LPARAM)"0 - None");
754                    SendDlgItemMessage(hDlg, IDC_MOTION, CB_ADDSTRING, 0, (LPARAM)"1 - Very Low");
755                    SendDlgItemMessage(hDlg, IDC_MOTION, CB_ADDSTRING, 0, (LPARAM)"2 - Low");
756                    SendDlgItemMessage(hDlg, IDC_MOTION, CB_ADDSTRING, 0, (LPARAM)"3 - Medium");
757                    SendDlgItemMessage(hDlg, IDC_MOTION, CB_ADDSTRING, 0, (LPARAM)"4 - High");
758                    SendDlgItemMessage(hDlg, IDC_MOTION, CB_ADDSTRING, 0, (LPARAM)"5 - Very High");
759                    SendDlgItemMessage(hDlg, IDC_MOTION, CB_ADDSTRING, 0, (LPARAM)"6 - Ultra High");
760    
761                    SendDlgItemMessage(hDlg, IDC_VHQ, CB_ADDSTRING, 0, (LPARAM)"0 - Off");
762                    SendDlgItemMessage(hDlg, IDC_VHQ, CB_ADDSTRING, 0, (LPARAM)"1 - Mode Decision");
763                    SendDlgItemMessage(hDlg, IDC_VHQ, CB_ADDSTRING, 0, (LPARAM)"2 - Limited Search");
764                    SendDlgItemMessage(hDlg, IDC_VHQ, CB_ADDSTRING, 0, (LPARAM)"3 - Medium Search");
765                    SendDlgItemMessage(hDlg, IDC_VHQ, CB_ADDSTRING, 0, (LPARAM)"4 - Wide Search");
766                    break;
767    
768            case IDD_DEBUG :
769                    /* force threads disabled */
770                    EnableWindow(GetDlgItem(hDlg, IDC_NUMTHREADS_STATIC), FALSE);
771                    EnableWindow(GetDlgItem(hDlg, IDC_NUMTHREADS), FALSE);
772    
773                    SendDlgItemMessage(hDlg, IDC_FOURCC, CB_ADDSTRING, 0, (LPARAM)"XVID");
774                    SendDlgItemMessage(hDlg, IDC_FOURCC, CB_ADDSTRING, 0, (LPARAM)"DIVX");
775                    SendDlgItemMessage(hDlg, IDC_FOURCC, CB_ADDSTRING, 0, (LPARAM)"DX50");
776                    break;
777            }
778    }
779    
780    
781    /* enable/disable controls based on encoder-mode or user selection */
782    
783    static void adv_mode(HWND hDlg, int idd, CONFIG * config)
784    {
785            int profile;
786            int weight_en, quant_en;
787            int cpu_force;
788            int custom_quant, bvops;
789            int ar_mode, ar_par;
790    
791            switch(idd) {
792            case IDD_PROFILE :
793                    profile = SendDlgItemMessage(hDlg, IDC_PROFILE_PROFILE, CB_GETCURSEL, 0, 0);
794                    EnableDlgWindow(hDlg, IDC_BVOP, profiles[profile].flags&PROFILE_BVOP);
795    
796                    EnableDlgWindow(hDlg, IDC_QUANTTYPE_S, profiles[profile].flags&PROFILE_MPEGQUANT);
797                    EnableDlgWindow(hDlg, IDC_QUANTTYPE_S, profiles[profile].flags&PROFILE_MPEGQUANT);
798                    EnableDlgWindow(hDlg, IDC_QUANTTYPE, profiles[profile].flags&PROFILE_MPEGQUANT);
799                    custom_quant = (profiles[profile].flags&PROFILE_MPEGQUANT) && SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_GETCURSEL, 0, 0)==QUANT_MODE_CUSTOM;
800                    EnableDlgWindow(hDlg, IDC_QUANTMATRIX, custom_quant);
801                    EnableDlgWindow(hDlg, IDC_LUMMASK, profiles[profile].flags&PROFILE_ADAPTQUANT);
802                    EnableDlgWindow(hDlg, IDC_INTERLACING, profiles[profile].flags&PROFILE_INTERLACE);
803                    EnableDlgWindow(hDlg, IDC_QPEL, profiles[profile].flags&PROFILE_QPEL);
804                    EnableDlgWindow(hDlg, IDC_GMC, profiles[profile].flags&PROFILE_GMC);
805                    EnableDlgWindow(hDlg, IDC_REDUCED, profiles[profile].flags&PROFILE_REDUCED);
806    
807                    bvops = (profiles[profile].flags&PROFILE_BVOP) && IsDlgChecked(hDlg, IDC_BVOP);
808                    EnableDlgWindow(hDlg, IDC_MAXBFRAMES,      bvops);
809                    EnableDlgWindow(hDlg, IDC_BQUANTRATIO,    bvops);
810                    EnableDlgWindow(hDlg, IDC_BQUANTOFFSET,  bvops);
811                    EnableDlgWindow(hDlg, IDC_MAXBFRAMES_S,  bvops);
812                    EnableDlgWindow(hDlg, IDC_BQUANTRATIO_S,        bvops);
813                    EnableDlgWindow(hDlg, IDC_BQUANTOFFSET_S,   bvops);
814                    EnableDlgWindow(hDlg, IDC_PACKED,                  bvops);
815                    EnableDlgWindow(hDlg, IDC_CLOSEDGOV,            bvops);
816                    break;
817    
818            case IDD_AR:
819                    ar_mode = IsDlgChecked(hDlg, IDC_PAR);
820                    EnableDlgWindow(hDlg, IDC_ASPECT_RATIO, ar_mode);
821    
822                    ar_par = SendDlgItemMessage(hDlg, IDC_ASPECT_RATIO, CB_GETCURSEL, 0, 0);
823                    if (ar_par == 5) { /* custom par */
824                            SetDlgItemInt(hDlg, IDC_PARY, config->par_y, FALSE);
825                            SetDlgItemInt(hDlg, IDC_PARX, config->par_x, FALSE);
826    
827                            EnableDlgWindow(hDlg, IDC_PARX, ar_mode);
828                            EnableDlgWindow(hDlg, IDC_PARY, ar_mode);
829                    } else {
830                            SetDlgItemInt(hDlg, IDC_PARX, PARS[ar_par][0], FALSE);
831                            SetDlgItemInt(hDlg, IDC_PARY, PARS[ar_par][1], FALSE);
832                            EnableDlgWindow(hDlg, IDC_PARX, FALSE);
833                            EnableDlgWindow(hDlg, IDC_PARY, FALSE);
834                    }
835    
836                    ar_mode = IsDlgChecked(hDlg, IDC_AR);
837    
838                    config->ar_x = config_get_uint(hDlg, IDC_ARX, config->ar_x);
839                    config->ar_y = config_get_uint(hDlg, IDC_ARY, config->ar_y);
840    
841                    EnableDlgWindow(hDlg, IDC_ARX, ar_mode);
842                    EnableDlgWindow(hDlg, IDC_ARY, ar_mode);
843                    break;
844    
845            case IDD_LEVEL :
846                    profile = SendDlgItemMessage(hDlg, IDC_LEVEL_PROFILE, CB_GETCURSEL, 0, 0);
847                    SetDlgItemInt(hDlg, IDC_LEVEL_WIDTH, profiles[profile].width, FALSE);
848                    SetDlgItemInt(hDlg, IDC_LEVEL_HEIGHT, profiles[profile].height, FALSE);
849                    SetDlgItemInt(hDlg, IDC_LEVEL_FPS, profiles[profile].fps, FALSE);
850                    SetDlgItemInt(hDlg, IDC_LEVEL_VMV, profiles[profile].max_vmv_buffer_sz, FALSE);
851                    SetDlgItemInt(hDlg, IDC_LEVEL_VCV, profiles[profile].vcv_decoder_rate, FALSE);
852                    SetDlgItemInt(hDlg, IDC_LEVEL_VBV, profiles[profile].max_vbv_size, FALSE);
853                    SetDlgItemInt(hDlg, IDC_LEVEL_BITRATE, profiles[profile].max_bitrate, FALSE);
854                    break;
855    
856            case IDD_BITRATE :
857                    {
858                            int ctype = SendDlgItemMessage(hDlg, IDC_BITRATE_CFORMAT, CB_GETCURSEL, 0, 0);
859                            int target_size = config_get_uint(hDlg, IDC_BITRATE_TSIZE, 0);
860                            int subtitle_size = config_get_uint(hDlg, IDC_BITRATE_SSIZE, 0);
861                            int fps = SendDlgItemMessage(hDlg, IDC_BITRATE_FPS, CB_GETCURSEL, 0, 0);
862    
863                            int duration =
864                                    3600 * config_get_uint(hDlg, IDC_BITRATE_HOURS, 0) +
865                                    60 * config_get_uint(hDlg, IDC_BITRATE_MINUTES, 0) +
866                                    config_get_uint(hDlg, IDC_BITRATE_SECONDS, 0);
867    
868                            int audio_type = SendDlgItemMessage(hDlg, IDC_BITRATE_AFORMAT, CB_GETCURSEL, 0, 0);
869                            int audio_mode = IsDlgChecked(hDlg, IDC_BITRATE_AMODE_SIZE);
870                            int audio_rate = config_get_uint(hDlg, IDC_BITRATE_ARATE, 0);
871                            int audio_size = config_get_uint(hDlg, IDC_BITRATE_ASIZE, 0);
872                            int audio_value;
873    
874                            int frames;
875                            int overhead;
876                            int vsize;
877    
878                            if (duration == 0)
879                                    break;
880    
881                            if (fps < 0 || fps >= sizeof(video_fps_list)/sizeof(named_float_t)) {
882                                    fps = 0;
883                            }
884                            if (audio_type < 0 || audio_type >= sizeof(audio_type_list)/sizeof(named_int_t)) {
885                                    audio_type = 0;
886                            }
887    
888                            /* audio_value tells us the audio overhead interval (milliseconds), or
889                               zero if audio is not selected*/
890    
891                            audio_value = audio_type_list[audio_type].value;
892    
893                            EnableDlgWindow(hDlg, IDC_BITRATE_AMODE_RATE, audio_value);
894                            EnableDlgWindow(hDlg, IDC_BITRATE_AMODE_SIZE, audio_value);
895                            EnableDlgWindow(hDlg, IDC_BITRATE_ARATE, audio_value && !audio_mode);
896                            EnableDlgWindow(hDlg, IDC_BITRATE_ASIZE, audio_value && audio_mode);
897                            EnableDlgWindow(hDlg, IDC_BITRATE_ASELECT, audio_value && audio_mode);
898    
899                            /* step 1: calculate number of frames */
900    
901                            frames = (int)(duration * video_fps_list[fps].value);
902    
903                            /* step 2: calculate audio_size (kbytes)*/
904    
905                            if (audio_value) {
906                                    if (audio_mode==0) {
907                                            audio_size = (duration * audio_rate) / 8;
908                                    }
909                            }else{
910                                    audio_size = 0;
911                            }
912    
913                            /* step 3: calculate container overhead */
914    
915                            switch(ctype) {
916                            case 0 :        /* AVI */
917                            case 1 :        /* AVI-OpenDML */
918    
919                                    overhead = frames;
920    
921                                    if (audio_value) {
922                                            overhead += (duration * 1000) / audio_value;
923                                    }
924    
925                                    overhead *= (ctype==0) ? 24 : 16;
926                                    overhead /= 1024;
927                                    break;
928    
929                            default :       /* (none) */
930                                    overhead = 0;
931                                    break;
932                            }
933    
934                            SetDlgItemInt(hDlg, IDC_BITRATE_COVERHEAD, overhead, TRUE);
935    
936                            /* final video bitstream size */
937                            vsize = target_size - subtitle_size - audio_size - overhead;
938                            if (vsize > 0) {
939                                    SetDlgItemInt(hDlg, IDC_BITRATE_VSIZE, vsize, TRUE);
940                                    /* convert from kbytes to kbits-per-second */
941                                    SetDlgItemInt(hDlg, IDC_BITRATE_VRATE, (vsize * 8 * 128) / (duration * 125), TRUE);
942                            }else{
943                                    SetDlgItemText(hDlg, IDC_BITRATE_VSIZE, "Overflow");
944                                    SetDlgItemText(hDlg, IDC_BITRATE_VRATE, "Overflow");
945                            }
946    
947                    }
948                    break;
949    
950            case IDD_ZONE :
951                    weight_en = IsDlgChecked(hDlg, IDC_ZONE_MODE_WEIGHT);
952                    quant_en =   IsDlgChecked(hDlg, IDC_ZONE_MODE_QUANT);
953                    EnableDlgWindow(hDlg, IDC_ZONE_WEIGHT, weight_en);
954                    EnableDlgWindow(hDlg, IDC_ZONE_QUANT, quant_en);
955                    EnableDlgWindow(hDlg, IDC_ZONE_SLIDER, weight_en|quant_en);
956    
957                    if (weight_en) {
958                            SendDlgItemMessage(hDlg, IDC_ZONE_SLIDER, TBM_SETRANGE, TRUE, MAKELONG(001,200));
959                            SendDlgItemMessage(hDlg, IDC_ZONE_SLIDER, TBM_SETPOS, TRUE, get_dlgitem_float(hDlg, IDC_ZONE_WEIGHT, 100));
960                            SetDlgItemText(hDlg, IDC_ZONE_MIN, "0.01");
961                            SetDlgItemText(hDlg, IDC_ZONE_MAX, "2.00");
962                    }else if (quant_en) {
963                            SendDlgItemMessage(hDlg, IDC_ZONE_SLIDER, TBM_SETRANGE, TRUE, MAKELONG(100,3100));
964                            SendDlgItemMessage(hDlg, IDC_ZONE_SLIDER, TBM_SETPOS, TRUE, get_dlgitem_float(hDlg, IDC_ZONE_QUANT, 100));
965                            SetDlgItemText(hDlg, IDC_ZONE_MIN, "1");
966                            SetDlgItemText(hDlg, IDC_ZONE_MAX, "31");
967                    }
968    
969                    bvops = (profiles[config->profile].flags&PROFILE_BVOP) && config->use_bvop;
970                    EnableDlgWindow(hDlg, IDC_ZONE_BVOPTHRESHOLD_S, bvops);
971                    EnableDlgWindow(hDlg, IDC_ZONE_BVOPTHRESHOLD, bvops);
972                    break;
973    
974            case IDD_DEBUG :
975                    cpu_force                       = IsDlgChecked(hDlg, IDC_CPU_FORCE);
976                    EnableDlgWindow(hDlg, IDC_CPU_MMX,              cpu_force);
977                    EnableDlgWindow(hDlg, IDC_CPU_MMXEXT,   cpu_force);
978                    EnableDlgWindow(hDlg, IDC_CPU_SSE,              cpu_force);
979                    EnableDlgWindow(hDlg, IDC_CPU_SSE2,             cpu_force);
980                    EnableDlgWindow(hDlg, IDC_CPU_3DNOW,    cpu_force);
981                    EnableDlgWindow(hDlg, IDC_CPU_3DNOWEXT, cpu_force);
982                    break;
983            }
984    }
985    
986    
987    /* upload config data into dialog */
988    static void adv_upload(HWND hDlg, int idd, CONFIG * config)
989    {
990            switch (idd)
991            {
992            case IDD_PROFILE :
993                    SendDlgItemMessage(hDlg, IDC_PROFILE_PROFILE, CB_SETCURSEL, config->profile, 0);
994    
995                    SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_SETCURSEL, config->quant_type, 0);
996                    CheckDlg(hDlg, IDC_LUMMASK, config->lum_masking);
997                    CheckDlg(hDlg, IDC_INTERLACING, config->interlacing);
998                    CheckDlg(hDlg, IDC_QPEL, config->qpel);
999                    CheckDlg(hDlg, IDC_GMC, config->gmc);
1000                    CheckDlg(hDlg, IDC_REDUCED, config->reduced_resolution);
1001                    CheckDlg(hDlg, IDC_BVOP, config->use_bvop);
1002    
1003                    SetDlgItemInt(hDlg, IDC_MAXBFRAMES, config->max_bframes, FALSE);
1004                    set_dlgitem_float(hDlg, IDC_BQUANTRATIO, config->bquant_ratio);
1005                    set_dlgitem_float(hDlg, IDC_BQUANTOFFSET, config->bquant_offset);
1006                    CheckDlg(hDlg, IDC_PACKED, config->packed);
1007                    CheckDlg(hDlg, IDC_CLOSEDGOV, config->closed_gov);
1008    
1009                    break;
1010            case IDD_AR:
1011                    CheckRadioButton(hDlg, IDC_AR, IDC_PAR, config->ar_mode == 0 ? IDC_PAR : IDC_AR);
1012                    SendDlgItemMessage(hDlg, IDC_ASPECT_RATIO, CB_SETCURSEL, (config->display_aspect_ratio), 0);
1013                    SetDlgItemInt(hDlg, IDC_ARX, config->ar_x, FALSE);
1014                    SetDlgItemInt(hDlg, IDC_ARY, config->ar_y, FALSE);
1015                    break;
1016    
1017            case IDD_LEVEL :
1018                    SendDlgItemMessage(hDlg, IDC_LEVEL_PROFILE, CB_SETCURSEL, config->profile, 0);
1019                    break;
1020    
1021            case IDD_RC_CBR :
1022                    SetDlgItemInt(hDlg, IDC_CBR_REACTIONDELAY, config->rc_reaction_delay_factor, FALSE);
1023                    SetDlgItemInt(hDlg, IDC_CBR_AVERAGINGPERIOD, config->rc_averaging_period, FALSE);
1024                    SetDlgItemInt(hDlg, IDC_CBR_BUFFER, config->rc_buffer, FALSE);
1025                    break;
1026    
1027            case IDD_RC_2PASS1 :
1028                    SetDlgItemText(hDlg, IDC_STATS, config->stats);
1029                    CheckDlg(hDlg, IDC_DISCARD1PASS, config->discard1pass);
1030                    break;
1031    
1032            case IDD_RC_2PASS2 :
1033                    SetDlgItemText(hDlg, IDC_STATS, config->stats);
1034                    SetDlgItemInt(hDlg, IDC_KFBOOST, config->keyframe_boost, FALSE);
1035                    SetDlgItemInt(hDlg, IDC_KFREDUCTION, config->kfreduction, FALSE);
1036    
1037                    SetDlgItemInt(hDlg, IDC_OVERFLOW_CONTROL_STRENGTH, config->overflow_control_strength, FALSE);
1038                    SetDlgItemInt(hDlg, IDC_OVERIMP, config->twopass_max_overflow_improvement, FALSE);
1039                    SetDlgItemInt(hDlg, IDC_OVERDEG, config->twopass_max_overflow_degradation, FALSE);
1040    
1041                    SetDlgItemInt(hDlg, IDC_CURVECOMPH, config->curve_compression_high, FALSE);
1042                    SetDlgItemInt(hDlg, IDC_CURVECOMPL, config->curve_compression_low, FALSE);
1043                    SetDlgItemInt(hDlg, IDC_MINKEY, config->kfthreshold, FALSE);
1044                    break;
1045    
1046            case IDD_BITRATE :
1047                    SendDlgItemMessage(hDlg, IDC_BITRATE_CFORMAT, CB_SETCURSEL, config->container_type, 0);
1048                    SetDlgItemInt(hDlg, IDC_BITRATE_TSIZE, config->target_size, FALSE);
1049                    SetDlgItemInt(hDlg, IDC_BITRATE_SSIZE, config->subtitle_size, FALSE);
1050    
1051                    SetDlgItemInt(hDlg, IDC_BITRATE_HOURS, config->hours, FALSE);
1052                    SetDlgItemInt(hDlg, IDC_BITRATE_MINUTES, config->minutes, FALSE);
1053                    SetDlgItemInt(hDlg, IDC_BITRATE_SECONDS, config->seconds, FALSE);
1054                    SendDlgItemMessage(hDlg, IDC_BITRATE_FPS, CB_SETCURSEL, config->fps, 0);
1055    
1056                    SendDlgItemMessage(hDlg, IDC_BITRATE_AFORMAT, CB_SETCURSEL, config->audio_type, 0);
1057                    CheckRadioButton(hDlg, IDC_BITRATE_AMODE_RATE, IDC_BITRATE_AMODE_SIZE, config->audio_mode == 0 ? IDC_BITRATE_AMODE_RATE : IDC_BITRATE_AMODE_SIZE);
1058                    SetDlgItemInt(hDlg, IDC_BITRATE_ARATE, config->audio_rate, FALSE);
1059                    SetDlgItemInt(hDlg, IDC_BITRATE_ASIZE, config->audio_size, FALSE);
1060                    break;
1061    
1062            case IDD_ZONE :
1063                    SetDlgItemInt(hDlg, IDC_ZONE_FRAME, config->zones[config->cur_zone].frame, FALSE);
1064    
1065                    CheckDlgButton(hDlg, IDC_ZONE_MODE_WEIGHT,   config->zones[config->cur_zone].mode == RC_ZONE_WEIGHT);
1066                    CheckDlgButton(hDlg, IDC_ZONE_MODE_QUANT,                config->zones[config->cur_zone].mode == RC_ZONE_QUANT);
1067    
1068                    set_dlgitem_float(hDlg, IDC_ZONE_WEIGHT, config->zones[config->cur_zone].weight);
1069                    set_dlgitem_float(hDlg, IDC_ZONE_QUANT, config->zones[config->cur_zone].quant);
1070    
1071                    CheckDlgButton(hDlg, IDC_ZONE_FORCEIVOP, config->zones[config->cur_zone].type==XVID_TYPE_IVOP);
1072                    CheckDlgButton(hDlg, IDC_ZONE_GREYSCALE, config->zones[config->cur_zone].greyscale);
1073                    CheckDlgButton(hDlg, IDC_ZONE_CHROMAOPT, config->zones[config->cur_zone].chroma_opt);
1074    
1075                    SetDlgItemInt(hDlg, IDC_ZONE_BVOPTHRESHOLD, config->zones[config->cur_zone].bvop_threshold, TRUE);
1076                    break;
1077    
1078            case IDD_MOTION :
1079                    SendDlgItemMessage(hDlg, IDC_MOTION, CB_SETCURSEL, config->motion_search, 0);
1080                    SendDlgItemMessage(hDlg, IDC_VHQ, CB_SETCURSEL, config->vhq_mode, 0);
1081                    CheckDlg(hDlg, IDC_CHROMAME, config->chromame);
1082                    CheckDlg(hDlg, IDC_CARTOON, config->cartoon_mode);
1083                    CheckDlg(hDlg, IDC_TURBO, config->turbo);
1084                    SetDlgItemInt(hDlg, IDC_FRAMEDROP, config->frame_drop_ratio, FALSE);
1085                    SetDlgItemInt(hDlg, IDC_MAXKEY, config->max_key_interval, FALSE);
1086                    break;
1087    
1088            case IDD_QUANT :
1089                    SetDlgItemInt(hDlg, IDC_MINIQUANT, config->min_iquant, FALSE);
1090                    SetDlgItemInt(hDlg, IDC_MAXIQUANT, config->max_iquant, FALSE);
1091                    SetDlgItemInt(hDlg, IDC_MINPQUANT, config->min_pquant, FALSE);
1092                    SetDlgItemInt(hDlg, IDC_MAXPQUANT, config->max_pquant, FALSE);
1093                    SetDlgItemInt(hDlg, IDC_MINBQUANT, config->min_bquant, FALSE);
1094                    SetDlgItemInt(hDlg, IDC_MAXBQUANT, config->max_bquant, FALSE);
1095                    CheckDlg(hDlg, IDC_TRELLISQUANT, config->trellis_quant);
1096                    break;
1097    
1098            case IDD_DEBUG :
1099                    CheckDlg(hDlg, IDC_CPU_MMX, (config->cpu & XVID_CPU_MMX));
1100                    CheckDlg(hDlg, IDC_CPU_MMXEXT, (config->cpu & XVID_CPU_MMXEXT));
1101                    CheckDlg(hDlg, IDC_CPU_SSE, (config->cpu & XVID_CPU_SSE));
1102                    CheckDlg(hDlg, IDC_CPU_SSE2, (config->cpu & XVID_CPU_SSE2));
1103                    CheckDlg(hDlg, IDC_CPU_3DNOW, (config->cpu & XVID_CPU_3DNOW));
1104                    CheckDlg(hDlg, IDC_CPU_3DNOWEXT, (config->cpu & XVID_CPU_3DNOWEXT));
1105    
1106                    CheckRadioButton(hDlg, IDC_CPU_AUTO, IDC_CPU_FORCE,
1107                            config->cpu & XVID_CPU_FORCE ? IDC_CPU_FORCE : IDC_CPU_AUTO );
1108    
1109                    SetDlgItemInt(hDlg, IDC_NUMTHREADS, config->num_threads, FALSE);
1110    
1111                    SendDlgItemMessage(hDlg, IDC_FOURCC, CB_SETCURSEL, config->fourcc_used, 0);
1112                    set_dlgitem_hex(hDlg, IDC_DEBUG, config->debug);
1113                    CheckDlg(hDlg, IDC_VOPDEBUG, config->vop_debug);
1114                    CheckDlg(hDlg, IDC_DISPLAY_STATUS, config->display_status);
1115                    break;
1116    
1117            case IDD_DEC :
1118                    CheckDlg(hDlg, IDC_DEC_DY,      pp_dy);
1119                    CheckDlg(hDlg, IDC_DEC_DUV,     pp_duv);
1120                    CheckDlg(hDlg, IDC_DEC_DR,      pp_dr);
1121                    CheckDlg(hDlg, IDC_DEC_FE,      pp_fe);
1122                    break;
1123            }
1124    }
1125    
1126    
1127    /* download config data from dialog */
1128    
1129    static void adv_download(HWND hDlg, int idd, CONFIG * config)
1130    {
1131            switch (idd)
1132            {
1133            case IDD_PROFILE :
1134                    config->profile = SendDlgItemMessage(hDlg, IDC_PROFILE_PROFILE, CB_GETCURSEL, 0, 0);
1135    
1136                    config->quant_type = SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_GETCURSEL, 0, 0);
1137                    config->lum_masking = IsDlgChecked(hDlg, IDC_LUMMASK);
1138                    config->interlacing = IsDlgChecked(hDlg, IDC_INTERLACING);
1139                    config->qpel = IsDlgChecked(hDlg, IDC_QPEL);
1140                    config->gmc = IsDlgChecked(hDlg, IDC_GMC);
1141                    config->reduced_resolution = IsDlgChecked(hDlg, IDC_REDUCED);
1142    
1143                    config->use_bvop = IsDlgChecked(hDlg, IDC_BVOP);
1144                    config->max_bframes = config_get_uint(hDlg, IDC_MAXBFRAMES, config->max_bframes);
1145                    config->bquant_ratio = get_dlgitem_float(hDlg, IDC_BQUANTRATIO, config->bquant_ratio);
1146                    config->bquant_offset = get_dlgitem_float(hDlg, IDC_BQUANTOFFSET, config->bquant_offset);
1147                    config->packed = IsDlgChecked(hDlg, IDC_PACKED);
1148                    config->closed_gov = IsDlgChecked(hDlg, IDC_CLOSEDGOV);
1149                    break;
1150    
1151            case IDD_AR:
1152                    config->ar_mode = IsDlgChecked(hDlg, IDC_PAR) ? 0:1;
1153                    config->ar_x = config_get_uint(hDlg, IDC_ARX, config->ar_x);
1154                    config->ar_y = config_get_uint(hDlg, IDC_ARY, config->ar_y);
1155                    config->display_aspect_ratio = SendDlgItemMessage(hDlg, IDC_ASPECT_RATIO, CB_GETCURSEL, 0, 0);
1156                    if (config->display_aspect_ratio == 5) {
1157                            config->par_x = config_get_uint(hDlg, IDC_PARX, config->par_x);
1158                            config->par_y = config_get_uint(hDlg, IDC_PARY, config->par_y);
1159                    }
1160                    break;
1161    
1162            case IDD_LEVEL :
1163                    config->profile = SendDlgItemMessage(hDlg, IDC_LEVEL_PROFILE, CB_GETCURSEL, 0, 0);
1164                    break;
1165    
1166            case IDD_RC_CBR :
1167                    config->rc_reaction_delay_factor = config_get_uint(hDlg, IDC_CBR_REACTIONDELAY, config->rc_reaction_delay_factor);
1168                    config->rc_averaging_period = config_get_uint(hDlg, IDC_CBR_AVERAGINGPERIOD, config->rc_averaging_period);
1169                    config->rc_buffer = config_get_uint(hDlg, IDC_CBR_BUFFER, config->rc_buffer);
1170                    break;
1171    
1172            case IDD_RC_2PASS1 :
1173                    if (GetDlgItemText(hDlg, IDC_STATS, config->stats, MAX_PATH) == 0)
1174                            lstrcpy(config->stats, CONFIG_2PASS_FILE);
1175                    config->discard1pass = IsDlgChecked(hDlg, IDC_DISCARD1PASS);
1176                    break;
1177    
1178            case IDD_RC_2PASS2 :
1179                    if (GetDlgItemText(hDlg, IDC_STATS, config->stats, MAX_PATH) == 0)
1180                            lstrcpy(config->stats, CONFIG_2PASS_FILE);
1181    
1182                    config->keyframe_boost = GetDlgItemInt(hDlg, IDC_KFBOOST, NULL, FALSE);
1183                    config->kfreduction = GetDlgItemInt(hDlg, IDC_KFREDUCTION, NULL, FALSE);
1184                    CONSTRAINVAL(config->keyframe_boost, 0, 1000);
1185    
1186                    config->overflow_control_strength = GetDlgItemInt(hDlg, IDC_OVERFLOW_CONTROL_STRENGTH, NULL, FALSE);
1187                    config->twopass_max_overflow_improvement = config_get_uint(hDlg, IDC_OVERIMP, config->twopass_max_overflow_improvement);
1188                    config->twopass_max_overflow_degradation = config_get_uint(hDlg, IDC_OVERDEG, config->twopass_max_overflow_degradation);
1189                    CONSTRAINVAL(config->twopass_max_overflow_improvement, 1, 80);
1190                    CONSTRAINVAL(config->twopass_max_overflow_degradation, 1, 80);
1191                    CONSTRAINVAL(config->overflow_control_strength, 0, 100);
1192    
1193                    config->curve_compression_high = GetDlgItemInt(hDlg, IDC_CURVECOMPH, NULL, FALSE);
1194                    config->curve_compression_low = GetDlgItemInt(hDlg, IDC_CURVECOMPL, NULL, FALSE);
1195                    CONSTRAINVAL(config->curve_compression_high, 0, 100);
1196                    CONSTRAINVAL(config->curve_compression_low, 0, 100);
1197    
1198                    config->kfthreshold = config_get_uint(hDlg, IDC_MINKEY, config->kfthreshold);
1199    
1200                    break;
1201    
1202            case IDD_BITRATE :
1203                    config->container_type = SendDlgItemMessage(hDlg, IDC_BITRATE_CFORMAT, CB_GETCURSEL, 0, 0);
1204                    config->target_size = config_get_uint(hDlg, IDC_BITRATE_TSIZE, config->target_size);
1205                    config->subtitle_size = config_get_uint(hDlg, IDC_BITRATE_SSIZE, config->subtitle_size);
1206    
1207                    config->hours = config_get_uint(hDlg, IDC_BITRATE_HOURS, config->hours);
1208                    config->minutes = config_get_uint(hDlg, IDC_BITRATE_MINUTES, config->minutes);
1209                    config->seconds = config_get_uint(hDlg, IDC_BITRATE_SECONDS, config->seconds);
1210                    config->fps = SendDlgItemMessage(hDlg, IDC_BITRATE_FPS, CB_GETCURSEL, 0, 0);
1211    
1212                    config->audio_type = SendDlgItemMessage(hDlg, IDC_BITRATE_AFORMAT, CB_GETCURSEL, 0, 0);
1213                    config->audio_mode = IsDlgChecked(hDlg, IDC_BITRATE_AMODE_SIZE) ? 1 : 0 ;
1214                    config->audio_rate = config_get_uint(hDlg, IDC_BITRATE_ARATE, config->audio_rate);
1215                    config->audio_size = config_get_uint(hDlg, IDC_BITRATE_ASIZE, config->audio_size);
1216    
1217                    /* the main window uses "AVI bitrate/filesize" not "video bitrate/filesize",
1218                       so we have to compensate by frames * 24 bytes */
1219                    {
1220                            int frame_compensate = 24 * (int)(
1221                                    (3600*config->hours +
1222                                       60*config->minutes +
1223                                          config->seconds) * video_fps_list[config->fps].value) / 1024;
1224    
1225                            int bitrate_compensate = (int)(24 * video_fps_list[config->fps].value) / 125;
1226    
1227                            config->desired_size =
1228                                                    config_get_uint(hDlg, IDC_BITRATE_VSIZE, config->desired_size) - frame_compensate;
1229    
1230                            config->bitrate =
1231                                                    config_get_uint(hDlg, IDC_BITRATE_VRATE, config->bitrate) - bitrate_compensate;
1232                    }
1233                    break;
1234    
1235            case IDD_ZONE :
1236                    config->zones[config->cur_zone].frame = config_get_uint(hDlg, IDC_ZONE_FRAME, config->zones[config->cur_zone].frame);
1237    
1238                    if (IsDlgChecked(hDlg, IDC_ZONE_MODE_WEIGHT)) {
1239                            config->zones[config->cur_zone].mode = RC_ZONE_WEIGHT;
1240                    }else if (IsDlgChecked(hDlg, IDC_ZONE_MODE_QUANT)) {
1241                            config->zones[config->cur_zone].mode = RC_ZONE_QUANT;
1242                    }
1243    
1244                    config->zones[config->cur_zone].weight = get_dlgitem_float(hDlg, IDC_ZONE_WEIGHT, config->zones[config->cur_zone].weight);
1245                    config->zones[config->cur_zone].quant =  get_dlgitem_float(hDlg, IDC_ZONE_QUANT, config->zones[config->cur_zone].quant);
1246    
1247                    config->zones[config->cur_zone].type = IsDlgButtonChecked(hDlg, IDC_ZONE_FORCEIVOP)?XVID_TYPE_IVOP:XVID_TYPE_AUTO;
1248                    config->zones[config->cur_zone].greyscale = IsDlgButtonChecked(hDlg, IDC_ZONE_GREYSCALE);
1249                    config->zones[config->cur_zone].chroma_opt = IsDlgButtonChecked(hDlg, IDC_ZONE_CHROMAOPT);
1250    
1251                    config->zones[config->cur_zone].bvop_threshold = config_get_int(hDlg, IDC_ZONE_BVOPTHRESHOLD, config->zones[config->cur_zone].bvop_threshold);
1252                    break;
1253    
1254            case IDD_MOTION :
1255                    config->motion_search = SendDlgItemMessage(hDlg, IDC_MOTION, CB_GETCURSEL, 0, 0);
1256                    config->vhq_mode = SendDlgItemMessage(hDlg, IDC_VHQ, CB_GETCURSEL, 0, 0);
1257                    config->chromame = IsDlgChecked(hDlg, IDC_CHROMAME);
1258                    config->cartoon_mode = IsDlgChecked(hDlg, IDC_CARTOON);
1259                    config->turbo = IsDlgChecked(hDlg, IDC_TURBO);
1260    
1261                    config->frame_drop_ratio = config_get_uint(hDlg, IDC_FRAMEDROP, config->frame_drop_ratio);
1262    
1263                    config->max_key_interval = config_get_uint(hDlg, IDC_MAXKEY, config->max_key_interval);
1264                    break;
1265    
1266            case IDD_QUANT :
1267                    config->min_iquant = config_get_uint(hDlg, IDC_MINIQUANT, config->min_iquant);
1268                    config->max_iquant = config_get_uint(hDlg, IDC_MAXIQUANT, config->max_iquant);
1269                    config->min_pquant = config_get_uint(hDlg, IDC_MINPQUANT, config->min_pquant);
1270                    config->max_pquant = config_get_uint(hDlg, IDC_MAXPQUANT, config->max_pquant);
1271                    config->min_bquant = config_get_uint(hDlg, IDC_MINBQUANT, config->min_bquant);
1272                    config->max_bquant = config_get_uint(hDlg, IDC_MAXBQUANT, config->max_bquant);
1273    
1274                    CONSTRAINVAL(config->min_iquant, 1, 31);
1275                    CONSTRAINVAL(config->max_iquant, config->min_iquant, 31);
1276                    CONSTRAINVAL(config->min_pquant, 1, 31);
1277                    CONSTRAINVAL(config->max_pquant, config->min_pquant, 31);
1278                    CONSTRAINVAL(config->min_bquant, 1, 31);
1279                    CONSTRAINVAL(config->max_bquant, config->min_bquant, 31);
1280    
1281                    config->trellis_quant = IsDlgChecked(hDlg, IDC_TRELLISQUANT);
1282                    break;
1283    
1284            case IDD_DEBUG :
1285                    config->cpu = 0;
1286                    config->cpu |= IsDlgChecked(hDlg, IDC_CPU_MMX)    ? XVID_CPU_MMX : 0;
1287                    config->cpu |= IsDlgChecked(hDlg, IDC_CPU_MMXEXT)   ? XVID_CPU_MMXEXT : 0;
1288                    config->cpu |= IsDlgChecked(hDlg, IDC_CPU_SSE)    ? XVID_CPU_SSE : 0;
1289                    config->cpu |= IsDlgChecked(hDlg, IDC_CPU_SSE2)  ? XVID_CPU_SSE2 : 0;
1290                    config->cpu |= IsDlgChecked(hDlg, IDC_CPU_3DNOW)        ? XVID_CPU_3DNOW : 0;
1291                    config->cpu |= IsDlgChecked(hDlg, IDC_CPU_3DNOWEXT) ? XVID_CPU_3DNOWEXT : 0;
1292                    config->cpu |= IsDlgChecked(hDlg, IDC_CPU_FORCE)        ? XVID_CPU_FORCE : 0;
1293    
1294                    config->num_threads = config_get_uint(hDlg, IDC_NUMTHREADS, config->num_threads);
1295    
1296                    config->fourcc_used = SendDlgItemMessage(hDlg, IDC_FOURCC, CB_GETCURSEL, 0, 0);
1297                    config->debug = get_dlgitem_hex(hDlg, IDC_DEBUG, config->debug);
1298                    config->vop_debug = IsDlgChecked(hDlg, IDC_VOPDEBUG);
1299                    config->display_status = IsDlgChecked(hDlg, IDC_DISPLAY_STATUS);
1300                    break;
1301    
1302            case IDD_DEC :
1303                    pp_dy = IsDlgChecked(hDlg, IDC_DEC_DY);
1304                    pp_duv = IsDlgChecked(hDlg, IDC_DEC_DUV);
1305                    pp_dr = IsDlgChecked(hDlg, IDC_DEC_DR);
1306                    pp_fe = IsDlgChecked(hDlg, IDC_DEC_FE);
1307                    break;
1308            }
1309    }
1310    
1311    
1312    
1313    /* advanced dialog proc */
1314    
1315    static BOOL CALLBACK adv_proc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
1316    {
1317            PROPSHEETINFO *psi;
1318    
1319            psi = (PROPSHEETINFO*)GetWindowLong(hDlg, GWL_USERDATA);
1320    
1321            switch (uMsg)
1322            {
1323            case WM_INITDIALOG :
1324                    psi = (PROPSHEETINFO*) ((LPPROPSHEETPAGE)lParam)->lParam;
1325                    SetWindowLong(hDlg, GWL_USERDATA, (LPARAM)psi);
1326    
1327                    if (g_hTooltip)
1328                            EnumChildWindows(hDlg, enum_tooltips, 0);
1329    
1330                    adv_init(hDlg, psi->idd, psi->config);
1331                    break;
1332    
1333            case WM_COMMAND :
1334                    if (HIWORD(wParam) == BN_CLICKED)
1335                    {
1336                            switch (LOWORD(wParam))
1337                            {
1338                            case IDC_BVOP :
1339                            case IDC_ZONE_MODE_WEIGHT :
1340                            case IDC_ZONE_MODE_QUANT :
1341                            case IDC_ZONE_BVOPTHRESHOLD_ENABLE :
1342                            case IDC_CPU_AUTO :
1343                            case IDC_CPU_FORCE :
1344                            case IDC_AR :
1345                            case IDC_PAR :
1346                            case IDC_BITRATE_AMODE_RATE :
1347                            case IDC_BITRATE_AMODE_SIZE :
1348                                    adv_mode(hDlg, psi->idd, psi->config);
1349                                    break;
1350    
1351                            case IDC_BITRATE_SSELECT :
1352                            case IDC_BITRATE_ASELECT :
1353                                    {
1354                                    OPENFILENAME ofn;
1355                                    char filename[MAX_PATH] = "";
1356    
1357                                    memset(&ofn, 0, sizeof(OPENFILENAME));
1358                                    ofn.lStructSize = sizeof(OPENFILENAME);
1359    
1360                                    ofn.hwndOwner = hDlg;
1361                                    if (LOWORD(wParam)==IDC_BITRATE_SSELECT) {
1362                                            ofn.lpstrFilter = "Subtitle files (*.sub, *.ssa)\0*.sub;*.ssa\0All files (*.*)\0*.*\0\0";
1363                                    }else{
1364                                            ofn.lpstrFilter = "Audio files (*.mp3, *.ac3)\0*.mp3; *.ac3\0All files (*.*)\0*.*\0\0";
1365                                    }
1366    
1367                                    ofn.lpstrFile = filename;
1368                                    ofn.nMaxFile = MAX_PATH;
1369                                    ofn.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST;
1370    
1371                                    if (GetOpenFileName(&ofn)) {
1372                                            HANDLE hFile;
1373                                            DWORD filesize;
1374    
1375                                            if ((hFile = CreateFile(filename, GENERIC_READ, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0)) == INVALID_HANDLE_VALUE ||
1376                                                    (filesize = GetFileSize(hFile, NULL)) == INVALID_FILE_SIZE) {
1377                                                    MessageBox(hDlg, "Could not get file size", "Error", 0);
1378                                            }else{
1379                                                    SetDlgItemInt(hDlg, IDC_BITRATE_SSIZE, filesize / 1024, FALSE);
1380                                                    CloseHandle(hFile);
1381                                            }
1382                                    }
1383                                    }
1384                                    break;
1385    
1386                            case IDC_QUANTMATRIX :
1387                                    DialogBoxParam(g_hInst, MAKEINTRESOURCE(IDD_QUANTMATRIX), hDlg, quantmatrix_proc, (LPARAM)psi->config);
1388                                    break;
1389    
1390                            case IDC_STATS_BROWSE :
1391                            {
1392                                    OPENFILENAME ofn;
1393                                    char tmp[MAX_PATH];
1394    
1395                                    GetDlgItemText(hDlg, IDC_STATS, tmp, MAX_PATH);
1396    
1397                                    memset(&ofn, 0, sizeof(OPENFILENAME));
1398                                    ofn.lStructSize = sizeof(OPENFILENAME);
1399    
1400                                    ofn.hwndOwner = hDlg;
1401                                    ofn.lpstrFilter = "bitrate curve (*.pass)\0*.pass\0All files (*.*)\0*.*\0\0";
1402                                    ofn.lpstrFile = tmp;
1403                                    ofn.nMaxFile = MAX_PATH;
1404                                    ofn.Flags = OFN_PATHMUSTEXIST;
1405    
1406                                    if (psi->idd == IDD_RC_2PASS1) {
1407                                            ofn.Flags |= OFN_OVERWRITEPROMPT;
1408                                    }else{
1409                                            ofn.Flags |= OFN_FILEMUSTEXIST;
1410                                    }
1411    
1412                                    if (GetSaveFileName(&ofn))
1413                                    {
1414                                            SetDlgItemText(hDlg, IDC_STATS, tmp);
1415                                    }
1416                                    }
1417                                    break;
1418    
1419                            case IDC_ZONE_FETCH :
1420                                    SetDlgItemInt(hDlg, IDC_ZONE_FRAME, psi->config->ci.ciActiveFrame, FALSE);
1421                                    break;
1422    
1423                            case IDC_AR_DEFAULT:
1424                                    CheckRadioButton(hDlg, IDC_AR, IDC_PAR, IDC_PAR);
1425                                    SendDlgItemMessage(hDlg, IDC_ASPECT_RATIO, CB_SETCURSEL, 0, 0);
1426                                    adv_mode(hDlg, psi->idd, psi->config);
1427                                    break;
1428                            case IDC_AR_4_3:
1429                                    SetDlgItemInt(hDlg, IDC_ARX, 4, FALSE);
1430                                    SetDlgItemInt(hDlg, IDC_ARY, 3, FALSE);
1431                                    CheckRadioButton(hDlg, IDC_AR, IDC_PAR, IDC_AR);
1432                                    adv_mode(hDlg, psi->idd, psi->config);
1433                                    break;
1434                            case IDC_AR_16_9:
1435                                    SetDlgItemInt(hDlg, IDC_ARX, 16, FALSE);
1436                                    SetDlgItemInt(hDlg, IDC_ARY, 9, FALSE);
1437                                    CheckRadioButton(hDlg, IDC_AR, IDC_PAR, IDC_AR);
1438                                    adv_mode(hDlg, psi->idd, psi->config);
1439                                    break;
1440                            case IDC_AR_235_100:
1441                                    SetDlgItemInt(hDlg, IDC_ARX, 235, FALSE);
1442                                    SetDlgItemInt(hDlg, IDC_ARY, 100, FALSE);
1443                                    CheckRadioButton(hDlg, IDC_AR, IDC_PAR, IDC_AR);
1444                                    adv_mode(hDlg, psi->idd, psi->config);
1445                                    break;
1446    
1447                            default :
1448                                    return TRUE;
1449                            }
1450                    }else if ((HIWORD(wParam) == CBN_EDITCHANGE || HIWORD(wParam)==CBN_SELCHANGE) &&
1451                            (LOWORD(wParam)==IDC_BITRATE_TSIZE ||
1452                             LOWORD(wParam)==IDC_BITRATE_ARATE )) {
1453                            adv_mode(hDlg, psi->idd, psi->config);
1454                    }else if (HIWORD(wParam) == LBN_SELCHANGE &&
1455                            (LOWORD(wParam) == IDC_PROFILE_PROFILE ||
1456                             LOWORD(wParam) == IDC_LEVEL_PROFILE ||
1457                             LOWORD(wParam) == IDC_QUANTTYPE ||
1458                             LOWORD(wParam) == IDC_ASPECT_RATIO ||
1459                             LOWORD(wParam) == IDC_BITRATE_CFORMAT ||
1460                             LOWORD(wParam) == IDC_BITRATE_AFORMAT ||
1461                             LOWORD(wParam) == IDC_BITRATE_FPS)) {
1462                            adv_mode(hDlg, psi->idd, psi->config);
1463                    }else if (HIWORD(wParam) == EN_UPDATE && (LOWORD(wParam)==IDC_ZONE_WEIGHT || LOWORD(wParam)==IDC_ZONE_QUANT)) {
1464    
1465                            SendDlgItemMessage(hDlg, IDC_ZONE_SLIDER, TBM_SETPOS, TRUE,
1466                                            get_dlgitem_float(hDlg, LOWORD(wParam), 100));
1467    
1468                    } else if (HIWORD(wParam) == EN_UPDATE && (LOWORD(wParam)==IDC_PARX || LOWORD(wParam)==IDC_PARY)) {
1469    
1470                            if (5 == SendDlgItemMessage(hDlg, IDC_ASPECT_RATIO, CB_GETCURSEL, 0, 0)) {
1471                                    if(LOWORD(wParam)==IDC_PARX)
1472                                            psi->config->par_x = config_get_uint(hDlg, LOWORD(wParam), psi->config->par_x);
1473                                    else
1474                                            psi->config->par_y = config_get_uint(hDlg, LOWORD(wParam), psi->config->par_y);
1475                            }
1476                    } else if (HIWORD(wParam) == EN_UPDATE &&
1477                            (LOWORD(wParam)==IDC_BITRATE_SSIZE ||
1478                             LOWORD(wParam)==IDC_BITRATE_HOURS ||
1479                             LOWORD(wParam)==IDC_BITRATE_MINUTES ||
1480                             LOWORD(wParam)==IDC_BITRATE_SECONDS ||
1481                             LOWORD(wParam)==IDC_BITRATE_ASIZE)) {
1482                            adv_mode(hDlg, psi->idd, psi->config);
1483                    } else
1484                            return 0;
1485                    break;
1486    
1487            case WM_HSCROLL :
1488                    if((HWND)lParam == GetDlgItem(hDlg, IDC_ZONE_SLIDER)) {
1489                            int idc = IsDlgChecked(hDlg, IDC_ZONE_MODE_WEIGHT) ? IDC_ZONE_WEIGHT : IDC_ZONE_QUANT;
1490                            set_dlgitem_float(hDlg, idc, SendMessage((HWND)lParam, TBM_GETPOS, 0, 0) );
1491                            break;
1492                    }
1493                    return 0;
1494    
1495    
1496            case WM_NOTIFY :
1497                    switch (((NMHDR *)lParam)->code)
1498                    {
1499                    case PSN_SETACTIVE :
1500                            OutputDebugString("PSN_SET");
1501                            adv_upload(hDlg, psi->idd, psi->config);
1502                            adv_mode(hDlg, psi->idd, psi->config);
1503                            SetWindowLong(hDlg, DWL_MSGRESULT, FALSE);
1504                            break;
1505    
1506                    case PSN_KILLACTIVE :
1507                            OutputDebugString("PSN_KILL");
1508                            adv_download(hDlg, psi->idd, psi->config);
1509                            SetWindowLong(hDlg, DWL_MSGRESULT, FALSE);
1510                            break;
1511    
1512                    case PSN_APPLY :
1513                            OutputDebugString("PSN_APPLY");
1514                            psi->config->save = TRUE;
1515                            SetWindowLong(hDlg, DWL_MSGRESULT, FALSE);
1516                            break;
1517                    }
1518                    break;
1519    
1520            default :
1521                    return 0;
1522            }
1523    
1524            return 1;
1525    }
1526    
1527    
1528    
1529    
1530    /* load advanced options property sheet
1531      returns true, if the user accepted the changes
1532      or fasle if changes were canceled.
1533    
1534      */
1535    static BOOL adv_dialog(HWND hParent, CONFIG * config, const int * dlgs, int size)
1536    {
1537            PROPSHEETINFO psi[6];
1538            PROPSHEETPAGE psp[6];
1539            PROPSHEETHEADER psh;
1540            CONFIG temp;
1541            int i;
1542    
1543            config->save = FALSE;
1544            memcpy(&temp, config, sizeof(CONFIG));
1545    
1546            for (i=0; i<size; i++)
1547            {
1548                    psp[i].dwSize = sizeof(PROPSHEETPAGE);
1549                    psp[i].dwFlags = 0;
1550                    psp[i].hInstance = g_hInst;
1551                    psp[i].pfnDlgProc = adv_proc;
1552                    psp[i].lParam = (LPARAM)&psi[i];
1553                    psp[i].pfnCallback = NULL;
1554                    psp[i].pszTemplate = MAKEINTRESOURCE(dlgs[i]);
1555    
1556                    psi[i].idd = dlgs[i];
1557                    psi[i].config = &temp;
1558            }
1559    
1560            psh.dwSize = sizeof(PROPSHEETHEADER);
1561            psh.dwFlags = PSH_PROPSHEETPAGE | PSH_NOAPPLYNOW;
1562            psh.hwndParent = hParent;
1563            psh.hInstance = g_hInst;
1564            psh.pszCaption = (LPSTR) "XviD Configuration";
1565            psh.nPages = size;
1566            psh.nStartPage = 0;
1567            psh.ppsp = (LPCPROPSHEETPAGE)&psp;
1568            psh.pfnCallback = NULL;
1569            PropertySheet(&psh);
1570    
1571            if (temp.save)
1572                    memcpy(config, &temp, sizeof(CONFIG));
1573    
1574            return temp.save;
1575    }
1576    
1577    /* ===================================================================================== */
1578    /* MAIN DIALOG ========================================================================= */
1579    /* ===================================================================================== */
1580    
1581    
1582    static void main_insert_zone(HWND hDlg, zone_t * s, int i, BOOL insert)
1583    {
1584            char tmp[32];
1585    
1586            wsprintf(tmp,"%i",s->frame);
1587    
1588            if (insert) {
1589                    LVITEM lvi;
1590    
1591                    lvi.mask = LVIF_TEXT | LVIF_IMAGE | LVIF_PARAM | LVIF_STATE;
1592                    lvi.state = 0;
1593                    lvi.stateMask = 0;
1594                    lvi.iImage = 0;
1595                    lvi.pszText = tmp;
1596                    lvi.cchTextMax = strlen(tmp);
1597                    lvi.iItem = i;
1598                    lvi.iSubItem = 0;
1599                    ListView_InsertItem(hDlg, &lvi);
1600            }else{
1601                    ListView_SetItemText(hDlg, i, 0, tmp);
1602            }
1603    
1604            if (s->mode == RC_ZONE_WEIGHT) {
1605                    sprintf(tmp,"W %.2f",(float)s->weight/100);
1606            }else if (s->mode == RC_ZONE_QUANT) {
1607                    sprintf(tmp,"Q %.2f",(float)s->quant/100);
1608            }else {
1609                    strcpy(tmp,"EXT");
1610            }
1611            ListView_SetItemText(hDlg, i, 1, tmp);
1612    
1613            tmp[0] = '\0';
1614            if (s->type==XVID_TYPE_IVOP)
1615                    strcat(tmp, "K ");
1616    
1617            if (s->greyscale)
1618                    strcat(tmp, "G ");
1619    
1620            if (s->chroma_opt)
1621                    strcat(tmp, "C ");
1622    
1623            ListView_SetItemText(hDlg, i, 2, tmp);
1624    }
1625    
1626    
1627    static void main_mode(HWND hDlg, CONFIG * config)
1628    {
1629            const int profile = SendDlgItemMessage(hDlg, IDC_PROFILE, CB_GETCURSEL, 0, 0);
1630            const int rc_mode = SendDlgItemMessage(hDlg, IDC_MODE, CB_GETCURSEL, 0, 0);
1631            /* enable target rate/size control only for 1pass and 2pass  modes*/
1632            const int target_en = rc_mode==RC_MODE_1PASS || rc_mode==RC_MODE_2PASS2;
1633            const int target_en_slider = rc_mode==RC_MODE_1PASS ||
1634                    (rc_mode==RC_MODE_2PASS2 && config->use_2pass_bitrate);
1635    
1636            char buf[16];
1637            int max;
1638    
1639            g_use_bitrate = config->use_2pass_bitrate;
1640    
1641            if (g_use_bitrate) {
1642                    SetDlgItemText(hDlg, IDC_BITRATE_S, "Target bitrate (kbps):");
1643    
1644                    wsprintf(buf, "%i kbps", DEFAULT_MIN_KBPS);
1645                    SetDlgItemText(hDlg, IDC_BITRATE_MIN, buf);
1646    
1647                    max = profiles[profile].max_bitrate;
1648                    if (max == 0) max = DEFAULT_MAX_KBPS;
1649                    wsprintf(buf, "%i kbps", max);
1650                    SetDlgItemText(hDlg, IDC_BITRATE_MAX, buf);
1651    
1652                    SendDlgItemMessage(hDlg, IDC_SLIDER, TBM_SETRANGE, TRUE, MAKELONG(DEFAULT_MIN_KBPS, max));
1653                    SendDlgItemMessage(hDlg, IDC_SLIDER, TBM_SETPOS, TRUE,
1654                                                    config_get_uint(hDlg, IDC_BITRATE, DEFAULT_MIN_KBPS) );
1655    
1656            } else if (rc_mode==RC_MODE_2PASS2) {
1657                    SetDlgItemText(hDlg, IDC_BITRATE_S, "Target size (kbytes):");
1658            } else if (rc_mode==RC_MODE_1PASS) {
1659                    SetDlgItemText(hDlg, IDC_BITRATE_S, "Target quantizer:");
1660                    SendDlgItemMessage(hDlg, IDC_SLIDER, TBM_SETRANGE, TRUE, MAKELONG(100, 3100));
1661                    SendDlgItemMessage(hDlg, IDC_SLIDER, TBM_SETPOS, TRUE,
1662                                                            get_dlgitem_float(hDlg, IDC_BITRATE, DEFAULT_QUANT ));
1663                    SetDlgItemText(hDlg, IDC_BITRATE_MIN, "1 (maximum quality)");
1664                    SetDlgItemText(hDlg, IDC_BITRATE_MAX, "(smallest file) 31");
1665    
1666            }
1667    
1668            EnableDlgWindow(hDlg, IDC_BITRATE_S, target_en);
1669            EnableDlgWindow(hDlg, IDC_BITRATE, target_en);
1670            EnableDlgWindow(hDlg, IDC_BITRATE_ADV, target_en);
1671    
1672            EnableDlgWindow(hDlg, IDC_BITRATE_MIN, target_en_slider);
1673            EnableDlgWindow(hDlg, IDC_BITRATE_MAX, target_en_slider);
1674            EnableDlgWindow(hDlg, IDC_SLIDER, target_en_slider);
1675    }
1676    
1677    
1678    static void main_upload(HWND hDlg, CONFIG * config)
1679    {
1680    
1681            SendDlgItemMessage(hDlg, IDC_PROFILE, CB_SETCURSEL, config->profile, 0);
1682            SendDlgItemMessage(hDlg, IDC_MODE, CB_SETCURSEL, config->mode, 0);
1683    
1684            g_use_bitrate = config->use_2pass_bitrate;
1685    
1686            if (g_use_bitrate) {
1687                    SetDlgItemInt(hDlg, IDC_BITRATE, config->bitrate, FALSE);
1688            } else if (config->mode == RC_MODE_2PASS2) {
1689                    SetDlgItemInt(hDlg, IDC_BITRATE, config->desired_size, FALSE);
1690            } else if (config->mode == RC_MODE_1PASS) {
1691                    set_dlgitem_float(hDlg, IDC_BITRATE, config->desired_quant);
1692            }
1693    
1694            zones_update(hDlg, config);
1695    }
1696    
1697    
1698    /* downloads data from main dialog */
1699    static void main_download(HWND hDlg, CONFIG * config)
1700    {
1701            config->profile = SendDlgItemMessage(hDlg, IDC_PROFILE, CB_GETCURSEL, 0, 0);
1702            config->mode = SendDlgItemMessage(hDlg, IDC_MODE, CB_GETCURSEL, 0, 0);
1703    
1704            if (g_use_bitrate) {
1705                    config->bitrate = config_get_uint(hDlg, IDC_BITRATE, config->bitrate);
1706            } else if (config->mode == RC_MODE_2PASS2) {
1707                    config->desired_size = config_get_uint(hDlg, IDC_BITRATE, config->desired_size);
1708            } else if (config->mode == RC_MODE_1PASS) {
1709                    config->desired_quant = get_dlgitem_float(hDlg, IDC_BITRATE, config->desired_quant);
1710            }
1711    }
1712    
1713    
1714    /* main dialog proc */
1715    
1716    static const int profile_dlgs[] = { IDD_PROFILE, IDD_LEVEL, IDD_AR };
1717    static const int single_dlgs[] = { IDD_RC_CBR };
1718    static const int pass1_dlgs[] = { IDD_RC_2PASS1 };
1719    static const int pass2_dlgs[] = { IDD_RC_2PASS2 };
1720    static const int bitrate_dlgs[] = { IDD_BITRATE };
1721    static const int zone_dlgs[] = { IDD_ZONE };
1722    static const int decoder_dlgs[] = { IDD_DEC };
1723    static const int adv_dlgs[] = { IDD_MOTION, IDD_QUANT, IDD_DEBUG};
1724    
1725    
1726    BOOL CALLBACK main_proc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
1727    {
1728            CONFIG* config = (CONFIG*)GetWindowLong(hDlg, GWL_USERDATA);
1729            unsigned int i;
1730    
1731            switch (uMsg)
1732            {
1733            case WM_INITDIALOG :
1734                    SetWindowLong(hDlg, GWL_USERDATA, lParam);
1735                    config = (CONFIG*)lParam;
1736    
1737                    for (i=0; i<sizeof(profiles)/sizeof(profile_t); i++)
1738                            SendDlgItemMessage(hDlg, IDC_PROFILE, CB_ADDSTRING, 0, (LPARAM)profiles[i].name);
1739    
1740                    SendDlgItemMessage(hDlg, IDC_MODE, CB_ADDSTRING, 0, (LPARAM)"Single pass");
1741                    SendDlgItemMessage(hDlg, IDC_MODE, CB_ADDSTRING, 0, (LPARAM)"Twopass - 1st pass");
1742                    SendDlgItemMessage(hDlg, IDC_MODE, CB_ADDSTRING, 0, (LPARAM)"Twopass - 2nd pass");
1743    #ifdef _DEBUG
1744                    SendDlgItemMessage(hDlg, IDC_MODE, CB_ADDSTRING, 0, (LPARAM)"Null test speed");
1745    #endif
1746    
1747                    InitCommonControls();
1748    
1749                    if ((g_hTooltip = CreateWindow(TOOLTIPS_CLASS, NULL, TTS_ALWAYSTIP,
1750                                    CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
1751                                    NULL, NULL, g_hInst, NULL)))
1752                    {
1753                            SetWindowPos(g_hTooltip, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE);
1754                            SendMessage(g_hTooltip, TTM_SETDELAYTIME, TTDT_AUTOMATIC, MAKELONG(1500, 0));
1755                            SendMessage(g_hTooltip, TTM_SETMAXTIPWIDTH, 0, 400);
1756    
1757                            EnumChildWindows(hDlg, enum_tooltips, 0);
1758                    }
1759    
1760                    SetClassLong(GetDlgItem(hDlg, IDC_BITRATE_S), GCL_HCURSOR, (LONG)LoadCursor(NULL, IDC_HAND));
1761    
1762                    {
1763                            DWORD ext_style = ListView_GetExtendedListViewStyle(GetDlgItem(hDlg,IDC_ZONES));
1764                            ext_style |= LVS_EX_FULLROWSELECT | LVS_EX_FLATSB ;
1765                            ListView_SetExtendedListViewStyle(GetDlgItem(hDlg,IDC_ZONES), ext_style);
1766                    }
1767    
1768                    {
1769                            typedef struct {
1770                                    char * name;
1771                                    int value;
1772                            } char_int_t;
1773    
1774                            const static char_int_t columns[] = {
1775                                    {"Frame #",      64},
1776                                    {"Weight/Quant",  82},
1777                                    {"Modifiers",   120}};
1778    
1779                            LVCOLUMN lvc;
1780                            int i;
1781    
1782                            /* Initialize the LVCOLUMN structure.  */
1783                            lvc.mask = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM;
1784                            lvc.fmt = LVCFMT_LEFT;
1785    
1786                            /* Add the columns.  */
1787                            for (i=0; i<sizeof(columns)/sizeof(char_int_t); i++) {
1788                                    lvc.pszText = (char*)columns[i].name;
1789                                    lvc.cchTextMax = strlen(columns[i].name);
1790                                    lvc.iSubItem = i;
1791                                    lvc.cx = columns[i].value;  /* column width, pixels */
1792                                    ListView_InsertColumn(GetDlgItem(hDlg,IDC_ZONES), i, &lvc);
1793                            }
1794                    }
1795    
1796                    /* XXX: main_mode needs RC_MODE_xxx, main_upload needs g_use_bitrate set correctly... */
1797                    main_upload(hDlg, config);
1798                    main_mode(hDlg, config);
1799                    main_upload(hDlg, config);
1800                    break;
1801    
1802            case WM_NOTIFY :
1803                    {
1804                            NMHDR * n = (NMHDR*)lParam;
1805    
1806                            if (n->code == NM_DBLCLK) {
1807                                     NMLISTVIEW * nmlv = (NMLISTVIEW*) lParam;
1808                                     config->cur_zone = nmlv->iItem;
1809    
1810                                     main_download(hDlg, config);
1811                                     if (config->cur_zone >= 0 && adv_dialog(hDlg, config, zone_dlgs, sizeof(zone_dlgs)/sizeof(int))) {
1812                                             zones_update(hDlg, config);
1813                                     }
1814                                     break;
1815                            }
1816    
1817                            if (n->code == NM_RCLICK) {
1818                                    OutputDebugString("Right click");
1819                            }
1820                    break;
1821                    }
1822    
1823            case WM_COMMAND :
1824                    if (HIWORD(wParam) == BN_CLICKED) {
1825    
1826                            switch(LOWORD(wParam)) {
1827                            case IDC_PROFILE_ADV :
1828                                    main_download(hDlg, config);
1829                                    adv_dialog(hDlg, config, profile_dlgs, sizeof(profile_dlgs)/sizeof(int));
1830    
1831                                    SendDlgItemMessage(hDlg, IDC_PROFILE, CB_SETCURSEL, config->profile, 0);
1832                                    main_mode(hDlg, config);
1833                                    break;
1834    
1835                            case IDC_MODE_ADV :
1836                                    main_download(hDlg, config);
1837                                    if (config->mode == RC_MODE_1PASS) {
1838                                            adv_dialog(hDlg, config, single_dlgs, sizeof(single_dlgs)/sizeof(int));
1839                                    }else if (config->mode == RC_MODE_2PASS1) {
1840                                            adv_dialog(hDlg, config, pass1_dlgs, sizeof(pass1_dlgs)/sizeof(int));
1841                                    }else if (config->mode == RC_MODE_2PASS2) {
1842                                            adv_dialog(hDlg, config, pass2_dlgs, sizeof(pass2_dlgs)/sizeof(int));
1843                                    }
1844                                    break;
1845    
1846                            case IDC_BITRATE_S :
1847                                    /* alternate between bitrate/desired_length metrics */
1848                                    main_download(hDlg, config);
1849                                    config->use_2pass_bitrate = !config->use_2pass_bitrate;
1850                                    main_mode(hDlg, config);
1851                                    main_upload(hDlg, config);
1852                                    break;
1853    
1854                            case IDC_BITRATE_ADV :
1855                                    main_download(hDlg, config);
1856                                    adv_dialog(hDlg, config, bitrate_dlgs, sizeof(bitrate_dlgs)/sizeof(int));
1857                                    main_mode(hDlg, config);
1858                                    main_upload(hDlg, config);
1859                                    break;
1860    
1861                            case IDC_DECODER :
1862                                    main_download(hDlg, config);
1863                                    adv_dialog(hDlg, config, decoder_dlgs, sizeof(decoder_dlgs)/sizeof(int));
1864                                    main_mode(hDlg, config);
1865                                    break;
1866    
1867                            case IDC_ADD :
1868                            {
1869                                    int i, sel, new_frame;
1870    
1871                                    if (config->num_zones >= MAX_ZONES) {
1872                                            MessageBox(hDlg, "Exceeded maximum number of zones.\nIncrease config.h:MAX_ZONES and rebuild.", "Warning", 0);
1873                                            break;
1874                                    }
1875    
1876                                    sel = ListView_GetNextItem(GetDlgItem(hDlg, IDC_ZONES), -1, LVNI_SELECTED);
1877    
1878                                    if (sel<0) {
1879                                            if (config->ci_valid && config->ci.ciActiveFrame>0) {
1880                                                    for(sel=0; sel<config->num_zones-1 && config->zones[sel].frame<config->ci.ciActiveFrame; sel++) ;
1881                                                    sel--;
1882                                                    new_frame = config->ci.ciActiveFrame;
1883                                            }else{
1884                                                    sel = config->num_zones-1;
1885                                                    new_frame = sel<0 ? 0 : config->zones[sel].frame + 1;
1886                                            }
1887                                    }else{
1888                                            new_frame = config->zones[sel].frame + 1;
1889                                    }
1890    
1891                                    for(i=config->num_zones-1; i>sel; i--) {
1892                                            config->zones[i+1] = config->zones[i];
1893                                    }
1894                                    config->num_zones++;
1895                                    config->zones[sel+1].frame = new_frame;
1896                                    config->zones[sel+1].mode = RC_ZONE_WEIGHT;
1897                                    config->zones[sel+1].weight = 100;
1898                                    config->zones[sel+1].quant = 500;
1899                                    config->zones[sel+1].type = XVID_TYPE_AUTO;
1900                                    config->zones[sel+1].greyscale = 0;
1901                                    config->zones[sel+1].chroma_opt = 0;
1902                                    config->zones[sel+1].bvop_threshold = 0;
1903    
1904                                    ListView_SetItemState(GetDlgItem(hDlg, IDC_ZONES), sel, 0x00000000, LVIS_SELECTED);
1905                                    zones_update(hDlg, config);
1906                                    ListView_SetItemState(GetDlgItem(hDlg, IDC_ZONES), sel+1, 0xffffffff, LVIS_SELECTED);
1907                                    break;
1908                            }
1909    
1910                            case IDC_REMOVE :
1911                            {
1912                                    int i, sel;
1913                                    sel = ListView_GetNextItem(GetDlgItem(hDlg, IDC_ZONES), -1, LVNI_SELECTED);
1914    
1915                                    if (sel == -1 || config->num_zones < 1) {
1916                                            /*MessageBox(hDlg, "Nothing selected", "Warning", 0);*/
1917                                            break;
1918                                    }
1919    
1920                                    for (i=sel; i<config->num_zones-1; i++)
1921                                            config->zones[i] = config->zones[i+1];
1922    
1923                                    config->num_zones--;
1924    
1925                                    zones_update(hDlg, config);
1926                                    break;
1927                            }
1928    
1929                            case IDC_EDIT :
1930                                    main_download(hDlg, config);
1931                                    config->cur_zone = ListView_GetNextItem(GetDlgItem(hDlg, IDC_ZONES), -1, LVNI_SELECTED);
1932                                    if (config->cur_zone != -1 && adv_dialog(hDlg, config, zone_dlgs, sizeof(zone_dlgs)/sizeof(int))) {
1933                                            zones_update(hDlg, config);
1934                                    }
1935                                    break;
1936    
1937                            case IDC_ADVANCED :
1938                                    main_download(hDlg, config);
1939                                    adv_dialog(hDlg, config, adv_dlgs, sizeof(adv_dlgs)/sizeof(int));
1940                                    break;
1941    
1942                            case IDC_DEFAULTS :
1943                                    config_reg_default(config);
1944                                    main_mode(hDlg, config);
1945                                    main_upload(hDlg, config);
1946                                    break;
1947    
1948                            case IDOK :
1949                                    main_download(hDlg, config);
1950                                    config->save = TRUE;
1951                                    EndDialog(hDlg, IDOK);
1952                                    break;
1953    
1954                            case IDCANCEL :
1955                                    config->save = FALSE;
1956                                    EndDialog(hDlg, IDCANCEL);
1957                                    break;
1958                            }
1959                    } else if (HIWORD(wParam) == LBN_SELCHANGE &&
1960                            (LOWORD(wParam)==IDC_PROFILE || LOWORD(wParam)==IDC_MODE)) {
1961    
1962                            config->mode = SendDlgItemMessage(hDlg, IDC_MODE, CB_GETCURSEL, 0, 0);
1963                            config->profile = SendDlgItemMessage(hDlg, IDC_PROFILE, CB_GETCURSEL, 0, 0);
1964    
1965                            if (!g_use_bitrate) {
1966                                    if (config->mode == RC_MODE_1PASS)
1967                                            set_dlgitem_float(hDlg, IDC_BITRATE, config->desired_quant);
1968                                    else if (config->mode == RC_MODE_2PASS2)
1969                                            SetDlgItemInt(hDlg, IDC_BITRATE, config->desired_size, FALSE);
1970                            }
1971    
1972                            main_mode(hDlg, config);
1973                            main_upload(hDlg, config);
1974    
1975                    }else if (HIWORD(wParam)==EN_UPDATE && LOWORD(wParam)==IDC_BITRATE) {
1976    
1977                            if (g_use_bitrate) {
1978                                    SendDlgItemMessage(hDlg, IDC_SLIDER, TBM_SETPOS, TRUE,
1979                                                    config_get_uint(hDlg, IDC_BITRATE, DEFAULT_MIN_KBPS) );
1980                            } else if (config->mode == RC_MODE_1PASS) {
1981                                    SendDlgItemMessage(hDlg, IDC_SLIDER, TBM_SETPOS, TRUE,
1982                                                    get_dlgitem_float(hDlg, IDC_BITRATE, DEFAULT_QUANT) );
1983                            }
1984                            main_download(hDlg, config);
1985    
1986                    }else {
1987                            return 0;
1988                    }
1989                    break;
1990    
1991            case WM_HSCROLL :
1992                    if((HWND)lParam == GetDlgItem(hDlg, IDC_SLIDER)) {
1993                            if (g_use_bitrate)
1994                                    SetDlgItemInt(hDlg, IDC_BITRATE, SendMessage((HWND)lParam, TBM_GETPOS, 0, 0), FALSE);
1995                            else
1996                                    set_dlgitem_float(hDlg, IDC_BITRATE, SendMessage((HWND)lParam, TBM_GETPOS, 0, 0));
1997    
1998                            main_download(hDlg, config);
1999                            break;
2000                    }
2001                    return 0;
2002    
2003            default :
2004                    return 0;
2005            }
2006    
2007            return 1;
2008    }
2009    
2010    
2011    
2012    /* ===================================================================================== */
2013    /* ABOUT DIALOG ======================================================================== */
2014    /* ===================================================================================== */
2015    
2016    BOOL CALLBACK about_proc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
2017    {
2018            switch (uMsg)
2019            {
2020            case WM_INITDIALOG :
2021                    {
2022                            xvid_gbl_info_t info;
2023                            char core[100];
2024                            HFONT hFont;
2025                            LOGFONT lfData;
2026                            HINSTANCE m_hdll;
2027    
2028                            SetDlgItemText(hDlg, IDC_BUILD, XVID_BUILD);
2029                            SetDlgItemText(hDlg, IDC_SPECIAL_BUILD, XVID_SPECIAL_BUILD);
2030    
2031                            memset(&info, 0, sizeof(info));
2032                            info.version = XVID_VERSION;
2033    
2034                            m_hdll = LoadLibrary(XVID_DLL_NAME);
2035                            if (m_hdll != NULL) {
2036    
2037                                    ((int (__cdecl *)(void *, int, void *, void *))GetProcAddress(m_hdll, "xvid_global"))
2038                                            (0, XVID_GBL_INFO, &info, NULL);
2039    
2040                                    wsprintf(core, "xvidcore.dll version %d.%d.%d (\"%s\")",
2041                                            XVID_VERSION_MAJOR(info.actual_version),
2042                                            XVID_VERSION_MINOR(info.actual_version),
2043                                            XVID_VERSION_PATCH(info.actual_version),
2044                                            info.build);
2045    
2046                                    FreeLibrary(m_hdll);
2047                            } else {
2048                                    wsprintf(core, "xvidcore.dll not found!");
2049                            }
2050    
2051                            SetDlgItemText(hDlg, IDC_CORE, core);
2052    
2053                            hFont = (HFONT)SendDlgItemMessage(hDlg, IDC_WEBSITE, WM_GETFONT, 0, 0L);
2054    
2055                            if (GetObject(hFont, sizeof(LOGFONT), &lfData)) {
2056                                    lfData.lfUnderline = 1;
2057    
2058                                    hFont = CreateFontIndirect(&lfData);
2059                                    if (hFont) {
2060                                            SendDlgItemMessage(hDlg, IDC_WEBSITE, WM_SETFONT, (WPARAM)hFont, 1L);
2061                                    }
2062                            }
2063    
2064                            SetClassLong(GetDlgItem(hDlg, IDC_WEBSITE), GCL_HCURSOR, (LONG)LoadCursor(NULL, IDC_HAND));
2065                            SetDlgItemText(hDlg, IDC_WEBSITE, XVID_WEBSITE);
2066                    }
2067                    break;
2068            case WM_CTLCOLORSTATIC :
2069                    if ((HWND)lParam == GetDlgItem(hDlg, IDC_WEBSITE))
2070                    {
2071                            SetBkMode((HDC)wParam, TRANSPARENT) ;
2072                            SetTextColor((HDC)wParam, RGB(0x00,0x00,0xc0));
2073                            return (BOOL)GetStockObject(NULL_BRUSH);
2074                    }
2075                    return 0;
2076    
2077            case WM_COMMAND :
2078                    if (LOWORD(wParam) == IDC_WEBSITE && HIWORD(wParam) == STN_CLICKED)
2079                    {
2080                            ShellExecute(hDlg, "open", XVID_WEBSITE, NULL, NULL, SW_SHOWNORMAL);
2081                    }
2082                    else if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)
2083                    {
2084                            EndDialog(hDlg, LOWORD(wParam));
2085                    }
2086                    break;
2087    
2088            default :
2089                    return 0;
2090            }
2091    
2092            return 1;
2093    }
2094    
2095    
2096    void
2097    sort_zones(zone_t * zones, int zone_num, int * sel)
2098    {
2099            int i, j;
2100            zone_t tmp;
2101            for (i = 0; i < zone_num; i++) {
2102                    int cur = i;
2103                    int min_f = zones[i].frame;
2104                    for (j = i + 1; j < zone_num; j++) {
2105                            if (zones[j].frame < min_f) {
2106                                    min_f = zones[j].frame;
2107                                    cur = j;
2108                            }
2109                    }
2110                    if (cur != i) {
2111                            tmp = zones[i];
2112                            zones[i] = zones[cur];
2113                            zones[cur] = tmp;
2114                            if (i == *sel) *sel = cur;
2115                            else if (cur == *sel) *sel = i;
2116                    }
2117            }
2118    }
2119    
2120    
2121    static void
2122    zones_update(HWND hDlg, CONFIG * config)
2123    {
2124            int i, sel;
2125    
2126            sel = ListView_GetNextItem(GetDlgItem(hDlg, IDC_ZONES), -1, LVNI_SELECTED);
2127    
2128            sort_zones(config->zones, config->num_zones, &sel);
2129    
2130            ListView_DeleteAllItems(GetDlgItem(hDlg,IDC_ZONES));
2131    
2132            for (i = 0; i < config->num_zones; i++)
2133                    main_insert_zone(GetDlgItem(hDlg,IDC_ZONES), &config->zones[i], i, TRUE);
2134    
2135            if (sel == -1 && config->num_zones > 0) sel = 0;
2136            if (sel >= config->num_zones) sel = config->num_zones-1;
2137    
2138            config->cur_zone = sel;
2139            ListView_SetItemState(GetDlgItem(hDlg, IDC_ZONES), sel, 0xffffffff, LVIS_SELECTED);
2140    }

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

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