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

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

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

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

Legend:
Removed from v.889  
changed lines
  Added in v.1329

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