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

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

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

trunk/vfw/src/config.c revision 30, Sat Mar 16 11:40:48 2002 UTC branches/dev-api-3/vfw/src/config.c revision 839, Wed Feb 12 13:43:47 2003 UTC
# Line 23  Line 23 
23   *   *
24   *      History:   *      History:
25   *   *
26     *      15.06.2002      added bframes options
27     *      21.04.2002      fixed custom matrix support, tried to get dll size down
28     *      17.04.2002      re-enabled lumi masking in 1st pass
29     *      15.04.2002      updated cbr support
30     *      07.04.2002      min keyframe interval checkbox
31     *                              2-pass max bitrate and overflow customization
32     *      04.04.2002      interlacing support
33     *                              hinted ME support
34     *      24.03.2002      daniel smith <danielsmith@astroboymail.com>
35     *                              added Foxer's new CBR engine
36     *                              - cbr_buffer is being used as reaction delay (quick hack)
37     *      23.03.2002      daniel smith <danielsmith@astroboymail.com>
38     *                              added load defaults button
39     *                              merged foxer's alternative 2-pass code (2-pass alt tab)
40     *                              added proper tooltips
41     *                              moved registry data into reg_ints/reg_strs arrays
42     *                              added DEBUGERR output on errors instead of returning
43   *      16.03.2002      daniel smith <danielsmith@astroboymail.com>   *      16.03.2002      daniel smith <danielsmith@astroboymail.com>
44   *                              rewrote/restructured most of file   *                              rewrote/restructured most of file
45   *                              added tooltips (kind of - dirty message hook method)   *                              added tooltips (kind of - dirty message hook method)
# Line 33  Line 50 
50   *              now get Core Version use xvid_init()   *              now get Core Version use xvid_init()
51   *      05.03.2002  Min Chen <chenm001@163.com>   *      05.03.2002  Min Chen <chenm001@163.com>
52   *                              Add Core version display to about box   *                              Add Core version display to about box
53   *      01.12.2001      inital version; (c)2001 peter ross <suxen_drol@hotmail.com>   *      01.12.2001      inital version; (c)2001 peter ross <pross@xvid.org>
54   *   *
55   *************************************************************************/   *************************************************************************/
56    
# Line 42  Line 59 
59  #include <commctrl.h>  #include <commctrl.h>
60  #include <shlobj.h>  #include <shlobj.h>
61  #include <prsht.h>  #include <prsht.h>
62    #ifdef _SMP
63    #include <pthread.h>
64    #endif
65    
66    #include <xvid.h>       // XviD API
67    
68  #include "codec.h"  #include "codec.h"
69  #include "config.h"  #include "config.h"
 #include "xvid.h"  // cpu masks  
70  #include "resource.h"  #include "resource.h"
71    
72    
73    
74    /* registry info structs */
75    
76    CONFIG reg;
77    
78    REG_INT const reg_ints[] = {
79            {"mode",                                        &reg.mode,                                              DLG_MODE_CBR},
80            {"quality",                                     &reg.quality,                                   85},
81            {"quant",                                       &reg.quant,                                             5},
82            {"rc_bitrate",                          &reg.rc_bitrate,                                900000},
83            {"rc_reaction_delay_factor",&reg.rc_reaction_delay_factor,      16},
84            {"rc_averaging_period",         &reg.rc_averaging_period,               100},
85            {"rc_buffer",                           &reg.rc_buffer,                                 100},
86    
87            {"motion_search",                       &reg.motion_search,                             6},
88            {"quant_type",                          &reg.quant_type,                                0},
89            {"fourcc_used",                         &reg.fourcc_used,                               0},
90            {"vhq_mode",                            &reg.vhq_mode,                                  0},
91            {"max_key_interval",            &reg.max_key_interval,                  300},
92            {"min_key_interval",            &reg.min_key_interval,                  1},
93            {"lum_masking",                         &reg.lum_masking,                               0},
94            {"interlacing",                         &reg.interlacing,                               0},
95            {"qpel",                                        &reg.qpel,                                              0},
96            {"gmc",                                         &reg.gmc,                                               0},
97            {"chromame",                            &reg.chromame,                                  0},
98    //added by koepi for gruel's greyscale_mode
99            {"greyscale",                           &reg.greyscale,                                 0},
100    // end of koepi's additions
101            {"max_bframes",                         &reg.max_bframes,                               -1},
102            {"bquant_ratio",                        &reg.bquant_ratio,                              150},
103            {"bquant_offset",                       &reg.bquant_offset,                             100},
104            {"packed",                                      &reg.packed,                                    0},
105            {"dx50bvop",                            &reg.dx50bvop,                                  1},
106            {"debug",                                       &reg.debug,                                             0},
107            {"reduced_resolution",          &reg.reduced_resolution,                0},
108            {"frame_drop_ratio",            &reg.frame_drop_ratio,                  0},
109    
110            {"min_iquant",                          &reg.min_iquant,                                2},
111            {"max_iquant",                          &reg.max_iquant,                                31},
112            {"min_pquant",                          &reg.min_pquant,                                2},
113            {"max_pquant",                          &reg.max_pquant,                                31},
114    
115            {"desired_size",                        &reg.desired_size,                              570000},
116            {"keyframe_boost",                      &reg.keyframe_boost,                    0},
117            {"discard1pass",                        &reg.discard1pass,                              1},
118            {"dummy2pass",                          &reg.dummy2pass,                                0},
119    // added by koepi for new two-pass curve treatment
120            {"kftreshold",                          &reg.kftreshold,                                10},
121            {"kfreduction",                         &reg.kfreduction,                               20},
122    // end of koepi's additions
123            {"curve_compression_high",      &reg.curve_compression_high,    0},
124            {"curve_compression_low",       &reg.curve_compression_low,             0},
125            {"use_alt_curve",                       &reg.use_alt_curve,                             0},
126            {"alt_curve_use_auto",          &reg.alt_curve_use_auto,                1},
127            {"alt_curve_auto_str",          &reg.alt_curve_auto_str,                30},
128            {"alt_curve_use_auto_bonus_bias",       &reg.alt_curve_use_auto_bonus_bias,     1},
129            {"alt_curve_bonus_bias",        &reg.alt_curve_bonus_bias,              50},
130            {"alt_curve_type",                      &reg.alt_curve_type,                    1},
131            {"alt_curve_high_dist",         &reg.alt_curve_high_dist,               500},
132            {"alt_curve_low_dist",          &reg.alt_curve_low_dist,                90},
133            {"alt_curve_min_rel_qual",      &reg.alt_curve_min_rel_qual,    50},
134            {"bitrate_payback_delay",       &reg.bitrate_payback_delay,             250},
135            {"bitrate_payback_method",      &reg.bitrate_payback_method,    0},
136            {"twopass_max_bitrate",         &reg.twopass_max_bitrate,               10000 * CONFIG_KBPS},
137            {"twopass_max_overflow_improvement", &reg.twopass_max_overflow_improvement, 60},
138            {"twopass_max_overflow_degradation", &reg.twopass_max_overflow_degradation, 60},
139            {"hinted_me",                           &reg.hinted_me,                                 0},
140    
141            {"credits_start",                       &reg.credits_start,                             0},
142            {"credits_start_begin",         &reg.credits_start_begin,               0},
143            {"credits_start_end",           &reg.credits_start_end,                 0},
144            {"credits_end",                         &reg.credits_end,                               0},
145            {"credits_end_begin",           &reg.credits_end_begin,                 0},
146            {"credits_end_end",                     &reg.credits_end_end,                   0},
147    
148    // added by koepi for greyscale credits
149            {"credits_greyscale",           &reg.credits_greyscale,                 0},
150    // end of koepi's addition
151            {"credits_mode",                        &reg.credits_mode,                              0},
152            {"credits_rate",                        &reg.credits_rate,                              20},
153            {"credits_quant_i",                     &reg.credits_quant_i,                   20},
154            {"credits_quant_p",                     &reg.credits_quant_p,                   20},
155            {"credits_start_size",          &reg.credits_start_size,                10000},
156            {"credits_end_size",            &reg.credits_end_size,                  10000},
157    
158            /* decoder */
159            {"deblock_y",                           &reg.deblock_y,                                 0},
160            {"deblock_uv",                          &reg.deblock_uv,                                0}
161    };
162    
163    REG_STR const reg_strs[] = {
164            {"hintfile",                            reg.hintfile,                                   CONFIG_HINTFILE},
165            {"stats1",                                      reg.stats1,                                             CONFIG_2PASS_1_FILE},
166            {"stats2",                                      reg.stats2,                                             CONFIG_2PASS_2_FILE}
167    //      {"build",                                       reg.build,                                              XVID_BUILD}
168    };
169    
170  /* get config settings from registry */  /* get config settings from registry */
171    
 #define REG_GET_N(X, Y, Z) size=sizeof(int);if(RegQueryValueEx(hKey, X, 0, 0, (LPBYTE)&Y, &size) != ERROR_SUCCESS) {Y=Z;}  
 #define REG_GET_S(X, Y, Z) size=MAX_PATH;if(RegQueryValueEx(hKey, X, 0, 0, Y, &size) != ERROR_SUCCESS) {lstrcpy(Y, Z);}  
172  #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)));}
173    
174  void config_reg_get(CONFIG * config)  void config_reg_get(CONFIG * config)
# Line 60  Line 176 
176          HKEY hKey;          HKEY hKey;
177          DWORD size;          DWORD size;
178          XVID_INIT_PARAM init_param;          XVID_INIT_PARAM init_param;
179            int i;
180    
181          init_param.cpu_flags = 0;          init_param.cpu_flags = XVID_CPU_CHKONLY;
182          xvid_init(0, 0, &init_param, NULL);          xvid_init(0, 0, &init_param, NULL);
183          config->cpu = init_param.cpu_flags;          reg.cpu = init_param.cpu_flags;
184    
185    #ifdef _SMP
186            reg.num_threads = pthread_num_processors_np();
187    #endif
188    
189          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);
190    
191          REG_GET_N("mode",                                       config->mode,                                   DLG_MODE_CBR);          for (i=0 ; i<sizeof(reg_ints)/sizeof(REG_INT) ; ++i)
192          REG_GET_N("bitrate",                            config->bitrate,                                900000);          {
193          REG_GET_N("quality",                            config->quality,                                85);                  size = sizeof(int);
194          REG_GET_N("quant",                                      config->quant,                                  5);  
195          REG_GET_N("rc_buffersize",                      config->rc_buffersize,                  2048000);                  if (RegQueryValueEx(hKey, reg_ints[i].reg_value, 0, 0, (LPBYTE)reg_ints[i].config_int, &size) != ERROR_SUCCESS)
196                    {
197          REG_GET_N("motion_search",                      config->motion_search,                  5);                          *reg_ints[i].config_int = reg_ints[i].def;
198          REG_GET_N("quant_type",                         config->quant_type,                             0);                  }
199          REG_GET_N("fourcc_used",                        config->fourcc_used,                    0);          }
200          REG_GET_N("max_key_interval",           config->max_key_interval,               300);  
201          REG_GET_N("lum_masking",                        config->lum_masking,                    0);          for (i=0 ; i<sizeof(reg_strs)/sizeof(REG_STR) ; ++i)
202            {
203          REG_GET_N("min_iquant",                         config->min_iquant,                             1);                  size = MAX_PATH;
204          REG_GET_N("max_iquant",                         config->max_iquant,                             31);  
205          REG_GET_N("min_pquant",                         config->min_pquant,                             1);                  if (RegQueryValueEx(hKey, reg_strs[i].reg_value, 0, 0, (LPBYTE)reg_strs[i].config_str, &size) != ERROR_SUCCESS)
206          REG_GET_N("max_pquant",                         config->max_pquant,                             31);                  {
207                            memcpy(reg_strs[i].config_str, reg_strs[i].def, MAX_PATH);
208          REG_GET_N("desired_size",                       config->desired_size,                   570000);                  }
209          REG_GET_N("keyframe_boost",                     config->keyframe_boost,                 20);          }
         REG_GET_N("min_key_interval",           config->min_key_interval,               6);  
         REG_GET_N("discard1pass",                       config->discard1pass,                   1);  
         REG_GET_N("dummy2pass",                         config->dummy2pass,                             0);  
         REG_GET_N("curve_compression_high", config->curve_compression_high,     25);  
         REG_GET_N("curve_compression_low",      config->curve_compression_low,  10);  
         REG_GET_N("bitrate_payback_delay",      config->bitrate_payback_delay,  240);  
         REG_GET_N("bitrate_payback_method",     config->bitrate_payback_method, 0);  
         REG_GET_S("stats1",                                     config->stats1,                                 CONFIG_2PASS_1_FILE);  
         REG_GET_S("stats2",                                     config->stats2,                                 CONFIG_2PASS_2_FILE);  
   
         REG_GET_N("credits_start",                      config->credits_start,                  0);  
         REG_GET_N("credits_start_begin",        config->credits_start_begin,    0);  
         REG_GET_N("credits_start_end",          config->credits_start_end,              0);  
         REG_GET_N("credits_end",                        config->credits_end,                    0);  
         REG_GET_N("credits_end_begin",          config->credits_end_begin,              0);  
         REG_GET_N("credits_end_end",            config->credits_end_end,                0);  
   
         REG_GET_N("credits_mode",                       config->credits_mode,                   0);  
         REG_GET_N("credits_rate",                       config->credits_rate,                   20);  
         REG_GET_N("credits_quant_i",            config->credits_quant_i,                20);  
         REG_GET_N("credits_quant_p",            config->credits_quant_p,                20);  
         REG_GET_N("credits_start_size",         config->credits_start_size,             10000);  
         REG_GET_N("credits_end_size",           config->credits_end_size,               10000);  
210    
211          {          {
212                  BYTE default_qmatrix_intra[] = {                  BYTE default_qmatrix_intra[] = {
# Line 133  Line 231 
231                          23,24,25,27,28,30,31,33                          23,24,25,27,28,30,31,33
232                  };                  };
233    
234                  REG_GET_B("qmatrix_intra", config->qmatrix_intra, default_qmatrix_intra);                  REG_GET_B("qmatrix_intra", reg.qmatrix_intra, default_qmatrix_intra);
235                  REG_GET_B("qmatrix_inter", config->qmatrix_inter, default_qmatrix_inter);                  REG_GET_B("qmatrix_inter", reg.qmatrix_inter, default_qmatrix_inter);
236          }          }
237    
238            memcpy(config, &reg, sizeof(CONFIG));
239    
240          RegCloseKey(hKey);          RegCloseKey(hKey);
241  }  }
242    
243    
244  /* put config settings in registry */  /* put config settings in registry */
245    
 #define REG_SET_N(X, Y) RegSetValueEx(hKey, X, 0, REG_DWORD, (LPBYTE)&Y, sizeof(int))  
 #define REG_SET_S(X, Y) RegSetValueEx(hKey, X, 0, REG_SZ, Y, lstrlen(Y)+1)  
246  #define REG_SET_B(X, Y) RegSetValueEx(hKey, X, 0, REG_BINARY, Y, sizeof((Y)))  #define REG_SET_B(X, Y) RegSetValueEx(hKey, X, 0, REG_BINARY, Y, sizeof((Y)))
247    
248  void config_reg_set(CONFIG * config)  void config_reg_set(CONFIG * config)
249  {  {
250          HKEY hKey;          HKEY hKey;
251          DWORD dispo;          DWORD dispo;
252            int i;
253    
254          if (RegCreateKeyEx(          if (RegCreateKeyEx(
255                          XVID_REG_KEY,                          XVID_REG_KEY,
# Line 167  Line 266 
266                  return;                  return;
267          }          }
268    
269          REG_SET_N("mode",                                       config->mode);          memcpy(&reg, config, sizeof(CONFIG));
270          REG_SET_N("bitrate",                            config->bitrate);  
271          REG_SET_N("quality",                            config->quality);          for (i=0 ; i<sizeof(reg_ints)/sizeof(REG_INT) ; ++i)
272          REG_SET_N("quant",                                      config->quant);          {
273          REG_SET_N("rc_buffersize",                      config->rc_buffersize);                  RegSetValueEx(hKey, reg_ints[i].reg_value, 0, REG_DWORD, (LPBYTE)reg_ints[i].config_int, sizeof(int));
274            }
275          REG_SET_N("motion_search",                      config->motion_search);  
276          REG_SET_N("quant_type",                         config->quant_type);          for (i=0 ; i<sizeof(reg_strs)/sizeof(REG_STR) ; ++i)
277          REG_SET_N("fourcc_used",                        config->fourcc_used);          {
278          REG_SET_N("max_key_interval",           config->max_key_interval);                  RegSetValueEx(hKey, reg_strs[i].reg_value, 0, REG_SZ, reg_strs[i].config_str, lstrlen(reg_strs[i].config_str)+1);
279          REG_SET_N("lum_masking",                        config->lum_masking);          }
280    
281          REG_SET_N("min_iquant",                         config->min_iquant);          REG_SET_B("qmatrix_intra", reg.qmatrix_intra);
282          REG_SET_N("max_iquant",                         config->max_iquant);          REG_SET_B("qmatrix_inter", reg.qmatrix_inter);
         REG_SET_N("min_pquant",                         config->min_pquant);  
         REG_SET_N("max_pquant",                         config->max_pquant);  
         REG_SET_B("qmatrix_intra",                      config->qmatrix_intra);  
         REG_SET_B("qmatrix_inter",                      config->qmatrix_inter);  
   
         REG_SET_N("desired_size",                       config->desired_size);  
         REG_SET_N("keyframe_boost",                     config->keyframe_boost);  
         REG_SET_N("min_key_interval",           config->min_key_interval);  
         REG_SET_N("discard1pass",                       config->discard1pass);  
         REG_SET_N("dummy2pass",                         config->dummy2pass);  
         REG_SET_N("curve_compression_high",     config->curve_compression_high);  
         REG_SET_N("curve_compression_low",      config->curve_compression_low);  
         REG_SET_N("bitrate_payback_delay",      config->bitrate_payback_delay);  
         REG_SET_N("bitrate_payback_method",     config->bitrate_payback_method);  
         REG_SET_S("stats1",                                     config->stats1);  
         REG_SET_S("stats2",                                     config->stats2);  
   
         REG_SET_N("credits_start",                      config->credits_start);  
         REG_SET_N("credits_start_begin",        config->credits_start_begin);  
         REG_SET_N("credits_start_end",          config->credits_start_end);  
         REG_SET_N("credits_end",                        config->credits_end);  
         REG_SET_N("credits_end_begin",          config->credits_end_begin);  
         REG_SET_N("credits_end_end",            config->credits_end_end);  
   
         REG_SET_N("credits_mode",                       config->credits_mode);  
         REG_SET_N("credits_rate",                       config->credits_rate);  
         REG_SET_N("credits_quant_i",            config->credits_quant_i);  
         REG_SET_N("credits_quant_p",            config->credits_quant_p);  
         REG_SET_N("credits_start_size",         config->credits_start_size);  
         REG_SET_N("credits_end_size",           config->credits_end_size);  
283    
284          RegCloseKey(hKey);          RegCloseKey(hKey);
285  }  }
# Line 228  Line 297 
297                  return;                  return;
298          }          }
299    
300          if (RegDeleteKey(XVID_REG_KEY, XVID_REG_CHILD))          if (RegDeleteKey(hKey, XVID_REG_CHILD))
301          {          {
302                  DEBUG1("Couldn't delete registry key - ", GetLastError());                  DEBUG1("Couldn't delete registry key - ", GetLastError());
303                  return;                  return;
304          }          }
305    
306            RegCloseKey(hKey);
307          config_reg_get(config);          config_reg_get(config);
308            config_reg_set(config);
309  }  }
310    
311    
312  /* leaves current config value if dialog item is empty */  /* leaves current config value if dialog item is empty */
313    
314  int config_get_int(HWND hDlg, UINT item, int config)  int config_get_int(HWND hDlg, INT item, int config)
315    {
316            BOOL success = FALSE;
317    
318            int tmp = GetDlgItemInt(hDlg, item, &success, TRUE);
319    
320            return (success) ? tmp : config;
321    }
322    
323    
324    int config_get_uint(HWND hDlg, UINT item, int config)
325  {  {
326          BOOL success = FALSE;          BOOL success = FALSE;
327    
# Line 258  Line 339 
339          {          {
340          default :          default :
341          case DLG_MODE_CBR :          case DLG_MODE_CBR :
342                  config->bitrate = config_get_int(hDlg, IDC_VALUE, config->bitrate) * CONFIG_KBPS;                  config->rc_bitrate = config_get_uint(hDlg, IDC_VALUE, config->rc_bitrate) * CONFIG_KBPS;
343                  break;                  break;
344    
345          case DLG_MODE_VBR_QUAL :          case DLG_MODE_VBR_QUAL :
346                  config->quality = config_get_int(hDlg, IDC_VALUE, config->quality);                  config->quality = config_get_uint(hDlg, IDC_VALUE, config->quality);
347                  break;                  break;
348    
349          case DLG_MODE_VBR_QUANT :          case DLG_MODE_VBR_QUANT :
350                  config->quant = config_get_int(hDlg, IDC_VALUE, config->quant);                  config->quant = config_get_uint(hDlg, IDC_VALUE, config->quant);
351                  break;                  break;
352    
353          case DLG_MODE_2PASS_2_INT :          case DLG_MODE_2PASS_2_INT :
354                  config->desired_size = config_get_int(hDlg, IDC_VALUE, config->desired_size);                  config->desired_size = config_get_uint(hDlg, IDC_VALUE, config->desired_size);
355                  break;                  break;
356          }          }
357    
358          config->mode = SendDlgItemMessage(hDlg, IDC_MODE, CB_GETCURSEL, 0, 0);          config->mode = SendDlgItemMessage(hDlg, IDC_MODE, CB_GETCURSEL, 0, 0);
         config->rc_buffersize = config_get_int(hDlg, IDC_CBRBUFFER, config->rc_buffersize);  
359  }  }
360    
361    
# Line 294  Line 374 
374    
375          case DLG_MODE_CBR :          case DLG_MODE_CBR :
376                  text = "Bitrate (Kbps):";                  text = "Bitrate (Kbps):";
377                  value = config->bitrate / CONFIG_KBPS;                  value = config->rc_bitrate / CONFIG_KBPS;
378                  break;                  break;
379    
380          case DLG_MODE_VBR_QUAL :          case DLG_MODE_VBR_QUAL :
# Line 318  Line 398 
398    
399          EnableWindow(GetDlgItem(hDlg, IDC_VALUE_STATIC), enabled);          EnableWindow(GetDlgItem(hDlg, IDC_VALUE_STATIC), enabled);
400          EnableWindow(GetDlgItem(hDlg, IDC_VALUE), enabled);          EnableWindow(GetDlgItem(hDlg, IDC_VALUE), enabled);
         EnableWindow(GetDlgItem(hDlg, IDC_CBRBUFFER_STATIC), (config->mode == DLG_MODE_CBR));  
         EnableWindow(GetDlgItem(hDlg, IDC_CBRBUFFER), (config->mode == DLG_MODE_CBR));  
401  }  }
402    
403    
# Line 340  Line 418 
418          case DLG_MODE_CBR :          case DLG_MODE_CBR :
419                  text = "Bitrate (Kbps):";                  text = "Bitrate (Kbps):";
420                  range = MAKELONG(0,10000);                  range = MAKELONG(0,10000);
421                  pos = config->bitrate / CONFIG_KBPS;                  pos = config->rc_bitrate / CONFIG_KBPS;
422                  break;                  break;
423    
424          case DLG_MODE_VBR_QUAL :          case DLG_MODE_VBR_QUAL :
# Line 394  Line 472 
472          psp[DLG_GLOBAL].pszTemplate             = MAKEINTRESOURCE(IDD_GLOBAL);          psp[DLG_GLOBAL].pszTemplate             = MAKEINTRESOURCE(IDD_GLOBAL);
473          psp[DLG_QUANT].pszTemplate              = MAKEINTRESOURCE(IDD_QUANT);          psp[DLG_QUANT].pszTemplate              = MAKEINTRESOURCE(IDD_QUANT);
474          psp[DLG_2PASS].pszTemplate              = MAKEINTRESOURCE(IDD_2PASS);          psp[DLG_2PASS].pszTemplate              = MAKEINTRESOURCE(IDD_2PASS);
475            psp[DLG_2PASSALT].pszTemplate   = MAKEINTRESOURCE(IDD_2PASSALT);
476          psp[DLG_CREDITS].pszTemplate    = MAKEINTRESOURCE(IDD_CREDITS);          psp[DLG_CREDITS].pszTemplate    = MAKEINTRESOURCE(IDD_CREDITS);
477          psp[DLG_CPU].pszTemplate                = MAKEINTRESOURCE(IDD_CPU);          psp[DLG_CPU].pszTemplate                = MAKEINTRESOURCE(IDD_CPU);
478    
# Line 421  Line 500 
500  #define CONTROLDLG(X,Y) EnableWindow(GetDlgItem(hDlg, (X)), (Y))  #define CONTROLDLG(X,Y) EnableWindow(GetDlgItem(hDlg, (X)), (Y))
501  #define ISDLGSET(X)     (IsDlgButtonChecked(hDlg, (X)) == BST_CHECKED)  #define ISDLGSET(X)     (IsDlgButtonChecked(hDlg, (X)) == BST_CHECKED)
502    
503    #define MOD_CBR
504    
505  void adv_mode(HWND hDlg, int mode)  void adv_mode(HWND hDlg, int mode)
506  {  {
507          // create arrays of controls to be disabled for each mode          // create arrays of controls to be disabled for each mode
508          const int cbr_disable[] = {          const short twopass_disable[] = {
509                  IDC_KFBOOST, IDC_MINKEY, IDC_DISCARD1PASS, IDC_DUMMY2PASS,                  IDC_KFBOOST, IDC_DUMMY2PASS, IDC_USEALT,
510    // added by koepi for new curve treatment
511                    IDC_KFTRESHOLD, IDC_KFREDUCTION,
512    //end of koepi's additions
513                  IDC_CURVECOMPH, IDC_CURVECOMPL, IDC_PAYBACK, IDC_PAYBACKBIAS, IDC_PAYBACKPROP,                  IDC_CURVECOMPH, IDC_CURVECOMPL, IDC_PAYBACK, IDC_PAYBACKBIAS, IDC_PAYBACKPROP,
514                  IDC_STATS1, IDC_STATS1_BROWSE, IDC_STATS2, IDC_STATS2_BROWSE,                  IDC_STATS2, IDC_STATS2_BROWSE,
515            };
516    
517            const short cbr_disable[] = {
518                    IDC_STATS1, IDC_STATS1_BROWSE, IDC_DISCARD1PASS, IDC_HINTEDME,
519                  IDC_CREDITS_START, IDC_CREDITS_END, IDC_CREDITS_START_BEGIN, IDC_CREDITS_START_END,                  IDC_CREDITS_START, IDC_CREDITS_END, IDC_CREDITS_START_BEGIN, IDC_CREDITS_START_END,
520                  IDC_CREDITS_END_BEGIN, IDC_CREDITS_END_END, IDC_CREDITS_RATE_RADIO,                  IDC_CREDITS_END_BEGIN, IDC_CREDITS_END_END, IDC_CREDITS_RATE_RADIO,
521                  IDC_CREDITS_QUANT_RADIO, IDC_CREDITS_QUANT_STATIC, IDC_CREDITS_SIZE_RADIO,                  IDC_CREDITS_QUANT_RADIO, IDC_CREDITS_QUANT_STATIC, IDC_CREDITS_SIZE_RADIO,
522                  IDC_CREDITS_END_STATIC, IDC_CREDITS_RATE, IDC_CREDITS_QUANTI, IDC_CREDITS_QUANTP,                  IDC_CREDITS_QUANTI, IDC_CREDITS_QUANTP, IDC_CREDITS_END_STATIC, IDC_CREDITS_RATE,
523                  IDC_CREDITS_START_SIZE, IDC_CREDITS_END_SIZE,                  IDC_CREDITS_START_SIZE, IDC_CREDITS_END_SIZE, IDC_CREDITS_GREYSCALE, IDC_HINTFILE
524          };          };
525    
526          const int qual_disable[] = {          const short qual_disable[] = {
527                  IDC_KFBOOST, IDC_MINKEY, IDC_DISCARD1PASS, IDC_DUMMY2PASS,                  IDC_STATS1, IDC_STATS1_BROWSE, IDC_DISCARD1PASS, IDC_HINTEDME,
528                  IDC_CURVECOMPH, IDC_CURVECOMPL, IDC_PAYBACK, IDC_PAYBACKBIAS, IDC_PAYBACKPROP,                  IDC_CBR_REACTIONDELAY, IDC_CBR_AVERAGINGPERIOD, IDC_CBR_BUFFER,
529                  IDC_STATS1, IDC_STATS1_BROWSE, IDC_STATS2, IDC_STATS2_BROWSE,                  IDC_CREDITS_SIZE_RADIO, IDC_CREDITS_END_STATIC, IDC_CREDITS_START_SIZE, IDC_CREDITS_END_SIZE,
530                  IDC_CREDITS_SIZE_RADIO, IDC_CREDITS_END_STATIC, IDC_CREDITS_START_SIZE, IDC_CREDITS_END_SIZE                  IDC_HINTFILE
531          };          };
532    
533          const int quant_disable[] = {          const short quant_disable[] = {
534                    IDC_STATS1, IDC_STATS1_BROWSE, IDC_DISCARD1PASS, IDC_HINTEDME,
535                    IDC_CBR_REACTIONDELAY, IDC_CBR_AVERAGINGPERIOD, IDC_CBR_BUFFER,
536                  IDC_MINIQUANT, IDC_MAXIQUANT, IDC_MINPQUANT, IDC_MAXPQUANT,                  IDC_MINIQUANT, IDC_MAXIQUANT, IDC_MINPQUANT, IDC_MAXPQUANT,
537                  IDC_KFBOOST, IDC_MINKEY, IDC_DISCARD1PASS, IDC_DUMMY2PASS,                  IDC_CREDITS_SIZE_RADIO, IDC_CREDITS_END_STATIC, IDC_CREDITS_START_SIZE, IDC_CREDITS_END_SIZE,
538                  IDC_CURVECOMPH, IDC_CURVECOMPL, IDC_PAYBACK, IDC_PAYBACKBIAS, IDC_PAYBACKPROP,                  IDC_HINTFILE
                 IDC_STATS1, IDC_STATS1_BROWSE, IDC_STATS2, IDC_STATS2_BROWSE,  
                 IDC_CREDITS_SIZE_RADIO, IDC_CREDITS_END_STATIC, IDC_CREDITS_START_SIZE, IDC_CREDITS_END_SIZE  
539          };          };
540    
541          const int twopass1_disable[] = {          const short twopass1_disable[] = {
542                  IDC_LUMMASK, IDC_MINIQUANT, IDC_MAXIQUANT, IDC_MINPQUANT, IDC_MAXPQUANT,                  IDC_CBR_REACTIONDELAY, IDC_CBR_AVERAGINGPERIOD, IDC_CBR_BUFFER,
543                  IDC_KFBOOST, IDC_DUMMY2PASS,                  IDC_MINIQUANT, IDC_MAXIQUANT, IDC_MINPQUANT, IDC_MAXPQUANT,
                 IDC_CURVECOMPH, IDC_CURVECOMPL, IDC_PAYBACK, IDC_PAYBACKBIAS, IDC_PAYBACKPROP,  
                 IDC_STATS2, IDC_STATS2_BROWSE,  
544                  IDC_CREDITS_RATE_RADIO, IDC_CREDITS_RATE, IDC_CREDITS_SIZE_RADIO, IDC_CREDITS_END_STATIC,                  IDC_CREDITS_RATE_RADIO, IDC_CREDITS_RATE, IDC_CREDITS_SIZE_RADIO, IDC_CREDITS_END_STATIC,
545                  IDC_CREDITS_START_SIZE, IDC_CREDITS_END_SIZE                  IDC_CREDITS_START_SIZE, IDC_CREDITS_END_SIZE
546          };          };
547    
548          const int twopass2_ext_disable[] = {          const short twopass2_ext_disable[] = {
549                  IDC_CREDITS_RATE_RADIO, IDC_CREDITS_QUANT_RADIO, IDC_CREDITS_QUANT_STATIC,                  IDC_CBR_REACTIONDELAY, IDC_CBR_AVERAGINGPERIOD, IDC_CBR_BUFFER,
550                    IDC_CREDITS_RATE_RADIO,
551                  IDC_CREDITS_SIZE_RADIO, IDC_CREDITS_END_STATIC, IDC_CREDITS_RATE,                  IDC_CREDITS_SIZE_RADIO, IDC_CREDITS_END_STATIC, IDC_CREDITS_RATE,
552                  IDC_CREDITS_QUANTI, IDC_CREDITS_QUANTP, IDC_CREDITS_START_SIZE, IDC_CREDITS_END_SIZE                  IDC_CREDITS_START_SIZE, IDC_CREDITS_END_SIZE
553          };          };
554    
555          const int twopass2_int_disable[] = {          const short twopass2_int_disable[] = {
556                    IDC_CBR_REACTIONDELAY, IDC_CBR_AVERAGINGPERIOD, IDC_CBR_BUFFER,
557                  IDC_STATS2, IDC_STATS2_BROWSE                  IDC_STATS2, IDC_STATS2_BROWSE
558          };          };
559    
560          // store pointers in order so we can lookup using config->mode          // store pointers in order so we can lookup using config->mode
561          const int* modes[] = {          const short* modes[] = {
562                  cbr_disable, qual_disable, quant_disable,                  cbr_disable, qual_disable, quant_disable,
563                  twopass1_disable, twopass2_ext_disable, twopass2_int_disable                  twopass1_disable, twopass2_ext_disable, twopass2_int_disable
564          };          };
565    
566          // ditto modes[]          // ditto modes[]
567          const int lengths[] = {          const int lengths[] = {
568                  sizeof(cbr_disable)/sizeof(int), sizeof(qual_disable)/sizeof(int),                  sizeof(cbr_disable)/sizeof(short), sizeof(qual_disable)/sizeof(short),
569                  sizeof(quant_disable)/sizeof(int), sizeof(twopass1_disable)/sizeof(int),                  sizeof(quant_disable)/sizeof(short), sizeof(twopass1_disable)/sizeof(short),
570                  sizeof(twopass2_ext_disable)/sizeof(int), sizeof(twopass2_int_disable)/sizeof(int)                  sizeof(twopass2_ext_disable)/sizeof(short), sizeof(twopass2_int_disable)/sizeof(short), 0
571          };          };
572    
573          int i;          int i;
574            int hinted_me, use_alt, use_alt_auto, use_alt_auto_bonus;
575            int credits_start, credits_end, credits_rate, credits_quant, credits_size;
576            int cpu_force;
577    
578          // first perform checkbox-based enable/disable          // first perform checkbox-based enable/disable
579          CONTROLDLG(IDC_CREDITS_START_BEGIN,     ISDLGSET(IDC_CREDITS_START));          hinted_me = ISDLGSET(IDC_HINTEDME);
580          CONTROLDLG(IDC_CREDITS_START_END,       ISDLGSET(IDC_CREDITS_START));          CONTROLDLG(IDC_HINTFILE,                        hinted_me);
581            CONTROLDLG(IDC_HINT_BROWSE,                     hinted_me);
582          CONTROLDLG(IDC_CREDITS_END_BEGIN,       ISDLGSET(IDC_CREDITS_END));  
583          CONTROLDLG(IDC_CREDITS_END_END,         ISDLGSET(IDC_CREDITS_END));          use_alt                         = ISDLGSET(IDC_USEALT) && (mode == DLG_MODE_2PASS_2_EXT || mode == DLG_MODE_2PASS_2_INT);
584            use_alt_auto            = ISDLGSET(IDC_USEAUTO);
585          CONTROLDLG(IDC_CREDITS_RATE,            ISDLGSET(IDC_CREDITS_RATE_RADIO));          use_alt_auto_bonus      = ISDLGSET(IDC_USEAUTOBONUS);
586          CONTROLDLG(IDC_CREDITS_QUANTI,          ISDLGSET(IDC_CREDITS_QUANT_RADIO));          CONTROLDLG(IDC_USEAUTO,                         use_alt);
587          CONTROLDLG(IDC_CREDITS_QUANTP,          ISDLGSET(IDC_CREDITS_QUANT_RADIO));          CONTROLDLG(IDC_AUTOSTR,                         use_alt && use_alt_auto);
588          CONTROLDLG(IDC_CREDITS_START_SIZE,      ISDLGSET(IDC_CREDITS_SIZE_RADIO));          CONTROLDLG(IDC_USEAUTOBONUS,            use_alt);
589          CONTROLDLG(IDC_CREDITS_END_SIZE,        ISDLGSET(IDC_CREDITS_SIZE_RADIO));          CONTROLDLG(IDC_BONUSBIAS,                       use_alt && !use_alt_auto_bonus);
590            CONTROLDLG(IDC_CURVETYPE,                       use_alt);
591          CONTROLDLG(IDC_CPU_MMX,                         ISDLGSET(IDC_CPU_FORCE));          CONTROLDLG(IDC_ALTCURVEHIGH,            use_alt);
592          CONTROLDLG(IDC_CPU_MMXEXT,                      ISDLGSET(IDC_CPU_FORCE));          CONTROLDLG(IDC_ALTCURVELOW,                     use_alt);
593          CONTROLDLG(IDC_CPU_SSE,                         ISDLGSET(IDC_CPU_FORCE));          CONTROLDLG(IDC_MINQUAL,                         use_alt && !use_alt_auto);
594          CONTROLDLG(IDC_CPU_SSE2,                        ISDLGSET(IDC_CPU_FORCE));  
595          CONTROLDLG(IDC_CPU_3DNOW,                       ISDLGSET(IDC_CPU_FORCE));          credits_start           = ISDLGSET(IDC_CREDITS_START);
596          CONTROLDLG(IDC_CPU_3DNOWEXT,            ISDLGSET(IDC_CPU_FORCE));          CONTROLDLG(IDC_CREDITS_START_BEGIN,     credits_start);
597            CONTROLDLG(IDC_CREDITS_START_END,       credits_start);
598    
599            credits_end                     = ISDLGSET(IDC_CREDITS_END);
600            CONTROLDLG(IDC_CREDITS_END_BEGIN,       credits_end);
601            CONTROLDLG(IDC_CREDITS_END_END,         credits_end);
602    
603            credits_rate            = ISDLGSET(IDC_CREDITS_RATE_RADIO);
604            credits_quant           = ISDLGSET(IDC_CREDITS_QUANT_RADIO);
605            credits_size            = ISDLGSET(IDC_CREDITS_SIZE_RADIO);
606            CONTROLDLG(IDC_CREDITS_RATE,            credits_rate);
607            CONTROLDLG(IDC_CREDITS_QUANTI,          credits_quant);
608            CONTROLDLG(IDC_CREDITS_QUANTP,          credits_quant);
609            CONTROLDLG(IDC_CREDITS_START_SIZE,      credits_size);
610            CONTROLDLG(IDC_CREDITS_END_SIZE,        credits_size);
611    
612            cpu_force                       = ISDLGSET(IDC_CPU_FORCE);
613            CONTROLDLG(IDC_CPU_MMX,                         cpu_force);
614            CONTROLDLG(IDC_CPU_MMXEXT,                      cpu_force);
615            CONTROLDLG(IDC_CPU_SSE,                         cpu_force);
616            CONTROLDLG(IDC_CPU_SSE2,                        cpu_force);
617            CONTROLDLG(IDC_CPU_3DNOW,                       cpu_force);
618            CONTROLDLG(IDC_CPU_3DNOWEXT,            cpu_force);
619    
620          // now perform codec mode enable/disable          // now perform codec mode enable/disable
621          for (i=0 ; i<lengths[mode] ; ++i)          for (i=0 ; i<lengths[mode] ; ++i)
622          {          {
623                  EnableWindow(GetDlgItem(hDlg, modes[mode][i]), FALSE);                  EnableWindow(GetDlgItem(hDlg, modes[mode][i]), FALSE);
624          }          }
625    
626            if (mode != DLG_MODE_2PASS_2_EXT && mode != DLG_MODE_2PASS_2_INT)
627            {
628                    for (i=0 ; i<sizeof(twopass_disable)/sizeof(short) ; ++i)
629                    {
630                            EnableWindow(GetDlgItem(hDlg, twopass_disable[i]), FALSE);
631                    }
632            }
633  }  }
634    
635    
# Line 522  Line 643 
643                  SendDlgItemMessage(hDlg, IDC_MOTION, CB_SETCURSEL, config->motion_search, 0);                  SendDlgItemMessage(hDlg, IDC_MOTION, CB_SETCURSEL, config->motion_search, 0);
644                  SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_SETCURSEL, config->quant_type, 0);                  SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_SETCURSEL, config->quant_type, 0);
645                  SendDlgItemMessage(hDlg, IDC_FOURCC, CB_SETCURSEL, config->fourcc_used, 0);                  SendDlgItemMessage(hDlg, IDC_FOURCC, CB_SETCURSEL, config->fourcc_used, 0);
646                    SendDlgItemMessage(hDlg, IDC_VHQ, CB_SETCURSEL, config->vhq_mode, 0);
647                  SetDlgItemInt(hDlg, IDC_MAXKEY, config->max_key_interval, FALSE);                  SetDlgItemInt(hDlg, IDC_MAXKEY, config->max_key_interval, FALSE);
648                    SetDlgItemInt(hDlg, IDC_MINKEY, config->min_key_interval, FALSE);
649                  CheckDlgButton(hDlg, IDC_LUMMASK, config->lum_masking ? BST_CHECKED : BST_UNCHECKED);                  CheckDlgButton(hDlg, IDC_LUMMASK, config->lum_masking ? BST_CHECKED : BST_UNCHECKED);
650                    CheckDlgButton(hDlg, IDC_INTERLACING, config->interlacing ? BST_CHECKED : BST_UNCHECKED);
651    
652                    CheckDlgButton(hDlg, IDC_QPEL, config->qpel ? BST_CHECKED : BST_UNCHECKED);
653                    CheckDlgButton(hDlg, IDC_GMC, config->gmc ? BST_CHECKED : BST_UNCHECKED);
654                    CheckDlgButton(hDlg, IDC_CHROMAME, config->chromame ? BST_CHECKED : BST_UNCHECKED);
655    // added by koepi for gruel's greyscale_mode
656                    CheckDlgButton(hDlg, IDC_GREYSCALE, config->greyscale ? BST_CHECKED : BST_UNCHECKED);
657    // end of koepi's addition
658                    SetDlgItemInt(hDlg, IDC_MAXBFRAMES, config->max_bframes, TRUE);
659                    SetDlgItemInt(hDlg, IDC_BQUANTRATIO, config->bquant_ratio, FALSE);
660                    SetDlgItemInt(hDlg, IDC_BQUANTOFFSET, config->bquant_offset, FALSE);
661                    CheckDlgButton(hDlg, IDC_PACKED, config->packed ? BST_CHECKED : BST_UNCHECKED);
662                    CheckDlgButton(hDlg, IDC_DX50BVOP, config->dx50bvop ? BST_CHECKED : BST_UNCHECKED);
663                    CheckDlgButton(hDlg, IDC_DEBUG, config->debug ? BST_CHECKED : BST_UNCHECKED);
664    
665                    CheckDlgButton(hDlg, IDC_REDUCED, config->reduced_resolution ? BST_CHECKED : BST_UNCHECKED);
666                  break;                  break;
667    
668          case DLG_QUANT :          case DLG_QUANT :
# Line 535  Line 674 
674    
675          case DLG_2PASS :          case DLG_2PASS :
676                  SetDlgItemInt(hDlg, IDC_KFBOOST, config->keyframe_boost, FALSE);                  SetDlgItemInt(hDlg, IDC_KFBOOST, config->keyframe_boost, FALSE);
                 SetDlgItemInt(hDlg, IDC_MINKEY, config->min_key_interval, FALSE);  
677                  CheckDlgButton(hDlg, IDC_DISCARD1PASS, config->discard1pass ? BST_CHECKED : BST_UNCHECKED);                  CheckDlgButton(hDlg, IDC_DISCARD1PASS, config->discard1pass ? BST_CHECKED : BST_UNCHECKED);
678                  CheckDlgButton(hDlg, IDC_DUMMY2PASS, config->dummy2pass ? BST_CHECKED : BST_UNCHECKED);                  CheckDlgButton(hDlg, IDC_DUMMY2PASS, config->dummy2pass ? BST_CHECKED : BST_UNCHECKED);
679    // added by koepi for new 2pass curve treatment
680                    SetDlgItemInt(hDlg, IDC_KFTRESHOLD, config->kftreshold, FALSE);
681                    SetDlgItemInt(hDlg, IDC_KFREDUCTION, config->kfreduction, FALSE);
682    // end of koepi's additions
683                  SetDlgItemInt(hDlg, IDC_CURVECOMPH, config->curve_compression_high, FALSE);                  SetDlgItemInt(hDlg, IDC_CURVECOMPH, config->curve_compression_high, FALSE);
684                  SetDlgItemInt(hDlg, IDC_CURVECOMPL, config->curve_compression_low, FALSE);                  SetDlgItemInt(hDlg, IDC_CURVECOMPL, config->curve_compression_low, FALSE);
685                  SetDlgItemInt(hDlg, IDC_PAYBACK, config->bitrate_payback_delay, FALSE);                  SetDlgItemInt(hDlg, IDC_PAYBACK, config->bitrate_payback_delay, FALSE);
686                  CheckDlgButton(hDlg, IDC_PAYBACKBIAS, (config->bitrate_payback_method == 0));                  CheckDlgButton(hDlg, IDC_PAYBACKBIAS, (config->bitrate_payback_method == 0));
687                  CheckDlgButton(hDlg, IDC_PAYBACKPROP, (config->bitrate_payback_method == 1));                  CheckDlgButton(hDlg, IDC_PAYBACKPROP, (config->bitrate_payback_method == 1));
688    
689                    CheckDlgButton(hDlg, IDC_HINTEDME, config->hinted_me ? BST_CHECKED : BST_UNCHECKED);
690                    SetDlgItemText(hDlg, IDC_HINTFILE, config->hintfile);
691                  SetDlgItemText(hDlg, IDC_STATS1, config->stats1);                  SetDlgItemText(hDlg, IDC_STATS1, config->stats1);
692                  SetDlgItemText(hDlg, IDC_STATS2, config->stats2);                  SetDlgItemText(hDlg, IDC_STATS2, config->stats2);
693                  break;                  break;
694    
695            case DLG_2PASSALT :
696                    CheckDlgButton(hDlg, IDC_USEALT, config->use_alt_curve ? BST_CHECKED : BST_UNCHECKED);
697    
698                    SendDlgItemMessage(hDlg, IDC_CURVETYPE, CB_SETCURSEL, config->alt_curve_type, 0);
699                    SetDlgItemInt(hDlg, IDC_ALTCURVEHIGH, config->alt_curve_high_dist, FALSE);
700                    SetDlgItemInt(hDlg, IDC_ALTCURVELOW, config->alt_curve_low_dist, FALSE);
701                    SetDlgItemInt(hDlg, IDC_MINQUAL, config->alt_curve_min_rel_qual, FALSE);
702    
703                    CheckDlgButton(hDlg, IDC_USEAUTO, config->alt_curve_use_auto ? BST_CHECKED : BST_UNCHECKED);
704                    SetDlgItemInt(hDlg, IDC_AUTOSTR, config->alt_curve_auto_str, FALSE);
705    
706                    CheckDlgButton(hDlg, IDC_USEAUTOBONUS, config->alt_curve_use_auto_bonus_bias ? BST_CHECKED : BST_UNCHECKED);
707                    SetDlgItemInt(hDlg, IDC_BONUSBIAS, config->alt_curve_bonus_bias, FALSE);
708    
709                    SetDlgItemInt(hDlg, IDC_MAXBITRATE, config->twopass_max_bitrate / CONFIG_KBPS, FALSE);
710                    SetDlgItemInt(hDlg, IDC_OVERIMP, config->twopass_max_overflow_improvement, FALSE);
711                    SetDlgItemInt(hDlg, IDC_OVERDEG, config->twopass_max_overflow_degradation, FALSE);
712                    break;
713    
714          case DLG_CREDITS :          case DLG_CREDITS :
715                  CheckDlgButton(hDlg, IDC_CREDITS_START, config->credits_start ? BST_CHECKED : BST_UNCHECKED);                  CheckDlgButton(hDlg, IDC_CREDITS_START, config->credits_start ? BST_CHECKED : BST_UNCHECKED);
716                  SetDlgItemInt(hDlg, IDC_CREDITS_START_BEGIN, config->credits_start_begin, FALSE);                  SetDlgItemInt(hDlg, IDC_CREDITS_START_BEGIN, config->credits_start_begin, FALSE);
# Line 557  Line 719 
719                  SetDlgItemInt(hDlg, IDC_CREDITS_END_BEGIN, config->credits_end_begin, FALSE);                  SetDlgItemInt(hDlg, IDC_CREDITS_END_BEGIN, config->credits_end_begin, FALSE);
720                  SetDlgItemInt(hDlg, IDC_CREDITS_END_END, config->credits_end_end, FALSE);                  SetDlgItemInt(hDlg, IDC_CREDITS_END_END, config->credits_end_end, FALSE);
721    
722    // added by koepi for credits greyscale
723                    CheckDlgButton(hDlg, IDC_CREDITS_GREYSCALE, config->credits_greyscale ? BST_CHECKED : BST_UNCHECKED);
724    // end of koepi's addition
725                  SetDlgItemInt(hDlg, IDC_CREDITS_RATE, config->credits_rate, FALSE);                  SetDlgItemInt(hDlg, IDC_CREDITS_RATE, config->credits_rate, FALSE);
726                  SetDlgItemInt(hDlg, IDC_CREDITS_QUANTI, config->credits_quant_i, FALSE);                  SetDlgItemInt(hDlg, IDC_CREDITS_QUANTI, config->credits_quant_i, FALSE);
727                  SetDlgItemInt(hDlg, IDC_CREDITS_QUANTP, config->credits_quant_p, FALSE);                  SetDlgItemInt(hDlg, IDC_CREDITS_QUANTP, config->credits_quant_p, FALSE);
# Line 587  Line 752 
752    
753                  CheckRadioButton(hDlg, IDC_CPU_AUTO, IDC_CPU_FORCE,                  CheckRadioButton(hDlg, IDC_CPU_AUTO, IDC_CPU_FORCE,
754                          config->cpu & XVID_CPU_FORCE ? IDC_CPU_FORCE : IDC_CPU_AUTO );                          config->cpu & XVID_CPU_FORCE ? IDC_CPU_FORCE : IDC_CPU_AUTO );
755    
756    #ifdef _SMP
757                    SetDlgItemInt(hDlg, IDC_NUMTHREADS, config->num_threads, FALSE);
758    #endif
759                    SetDlgItemInt(hDlg, IDC_FRAMEDROP, config->frame_drop_ratio, FALSE);
760                    SetDlgItemInt(hDlg, IDC_CBR_REACTIONDELAY, config->rc_reaction_delay_factor, FALSE);
761                    SetDlgItemInt(hDlg, IDC_CBR_AVERAGINGPERIOD, config->rc_averaging_period, FALSE);
762                    SetDlgItemInt(hDlg, IDC_CBR_BUFFER, config->rc_buffer, FALSE);
763                  break;                  break;
764          }          }
765  }  }
# Line 606  Line 779 
779                  config->motion_search = SendDlgItemMessage(hDlg, IDC_MOTION, CB_GETCURSEL, 0, 0);                  config->motion_search = SendDlgItemMessage(hDlg, IDC_MOTION, CB_GETCURSEL, 0, 0);
780                  config->quant_type = SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_GETCURSEL, 0, 0);                  config->quant_type = SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_GETCURSEL, 0, 0);
781                  config->fourcc_used = SendDlgItemMessage(hDlg, IDC_FOURCC, CB_GETCURSEL, 0, 0);                  config->fourcc_used = SendDlgItemMessage(hDlg, IDC_FOURCC, CB_GETCURSEL, 0, 0);
782                  config->max_key_interval = config_get_int(hDlg, IDC_MAXKEY, config->max_key_interval);                  config->vhq_mode = SendDlgItemMessage(hDlg, IDC_VHQ, CB_GETCURSEL, 0, 0);
783                    config->max_key_interval = config_get_uint(hDlg, IDC_MAXKEY, config->max_key_interval);
784                    config->min_key_interval = config_get_uint(hDlg, IDC_MINKEY, config->min_key_interval);
785                  config->lum_masking = ISDLGSET(IDC_LUMMASK);                  config->lum_masking = ISDLGSET(IDC_LUMMASK);
786                    config->interlacing = ISDLGSET(IDC_INTERLACING);
787    
788                    config->qpel = ISDLGSET(IDC_QPEL);
789                    config->gmc = ISDLGSET(IDC_GMC);
790                    config->chromame = ISDLGSET(IDC_CHROMAME);
791    // added by koepi for gruel's greyscale_mode
792                    config->greyscale = ISDLGSET(IDC_GREYSCALE);
793    // end of koepi's addition
794                    config->max_bframes = config_get_int(hDlg, IDC_MAXBFRAMES, config->max_bframes);
795                    config->bquant_ratio = config_get_uint(hDlg, IDC_BQUANTRATIO, config->bquant_ratio);
796                    config->bquant_offset = config_get_uint(hDlg, IDC_BQUANTOFFSET, config->bquant_offset);
797                    config->packed = ISDLGSET(IDC_PACKED);
798                    config->dx50bvop = ISDLGSET(IDC_DX50BVOP);
799                    config->debug = ISDLGSET(IDC_DEBUG);
800                    config->reduced_resolution = ISDLGSET(IDC_REDUCED);
801                  break;                  break;
802    
803          case DLG_QUANT :          case DLG_QUANT :
804                  config->min_iquant = config_get_int(hDlg, IDC_MINIQUANT, config->min_iquant);                  config->min_iquant = config_get_uint(hDlg, IDC_MINIQUANT, config->min_iquant);
805                  config->max_iquant = config_get_int(hDlg, IDC_MAXIQUANT, config->max_iquant);                  config->max_iquant = config_get_uint(hDlg, IDC_MAXIQUANT, config->max_iquant);
806                  config->min_pquant = config_get_int(hDlg, IDC_MINPQUANT, config->min_pquant);                  config->min_pquant = config_get_uint(hDlg, IDC_MINPQUANT, config->min_pquant);
807                  config->max_pquant = config_get_int(hDlg, IDC_MAXPQUANT, config->max_pquant);                  config->max_pquant = config_get_uint(hDlg, IDC_MAXPQUANT, config->max_pquant);
808    
809                  CONSTRAINVAL(config->min_iquant, 1, 31);                  CONSTRAINVAL(config->min_iquant, 1, 31);
810                  CONSTRAINVAL(config->max_iquant, config->min_iquant, 31);                  CONSTRAINVAL(config->max_iquant, config->min_iquant, 31);
# Line 624  Line 814 
814    
815          case DLG_2PASS :          case DLG_2PASS :
816                  config->keyframe_boost = GetDlgItemInt(hDlg, IDC_KFBOOST, NULL, FALSE);                  config->keyframe_boost = GetDlgItemInt(hDlg, IDC_KFBOOST, NULL, FALSE);
817                  config->min_key_interval = config_get_int(hDlg, IDC_MINKEY, config->min_key_interval);  // added by koepi for the new 2pass curve treatment
818                    config->kftreshold = GetDlgItemInt(hDlg, IDC_KFTRESHOLD, NULL, FALSE);
819                    config->kfreduction = GetDlgItemInt(hDlg, IDC_KFREDUCTION, NULL, FALSE);
820    //end of koepi's additions
821                  config->discard1pass = ISDLGSET(IDC_DISCARD1PASS);                  config->discard1pass = ISDLGSET(IDC_DISCARD1PASS);
822                  config->dummy2pass = ISDLGSET(IDC_DUMMY2PASS);                  config->dummy2pass = ISDLGSET(IDC_DUMMY2PASS);
823                  config->curve_compression_high = GetDlgItemInt(hDlg, IDC_CURVECOMPH, NULL, FALSE);                  config->curve_compression_high = GetDlgItemInt(hDlg, IDC_CURVECOMPH, NULL, FALSE);
824                  config->curve_compression_low = GetDlgItemInt(hDlg, IDC_CURVECOMPL, NULL, FALSE);                  config->curve_compression_low = GetDlgItemInt(hDlg, IDC_CURVECOMPL, NULL, FALSE);
825                  config->bitrate_payback_delay = config_get_int(hDlg, IDC_PAYBACK, config->bitrate_payback_delay);                  config->bitrate_payback_delay = config_get_uint(hDlg, IDC_PAYBACK, config->bitrate_payback_delay);
826                  config->bitrate_payback_method = ISDLGSET(IDC_PAYBACKPROP);                  config->bitrate_payback_method = ISDLGSET(IDC_PAYBACKPROP);
827                    config->hinted_me = ISDLGSET(IDC_HINTEDME);
828    
829                    if (GetDlgItemText(hDlg, IDC_HINTFILE, config->hintfile, MAX_PATH) == 0)
830                    {
831                            lstrcpy(config->hintfile, CONFIG_HINTFILE);
832                    }
833                  if (GetDlgItemText(hDlg, IDC_STATS1, config->stats1, MAX_PATH) == 0)                  if (GetDlgItemText(hDlg, IDC_STATS1, config->stats1, MAX_PATH) == 0)
834                  {                  {
835                          lstrcpy(config->stats1, CONFIG_2PASS_1_FILE);                          lstrcpy(config->stats1, CONFIG_2PASS_1_FILE);
# Line 647  Line 845 
845                  CONSTRAINVAL(config->curve_compression_low, 0, 100);                  CONSTRAINVAL(config->curve_compression_low, 0, 100);
846                  break;                  break;
847    
848            case DLG_2PASSALT :
849                    config->use_alt_curve = ISDLGSET(IDC_USEALT);
850    
851                    config->alt_curve_use_auto = ISDLGSET(IDC_USEAUTO);
852                    config->alt_curve_auto_str = config_get_uint(hDlg, IDC_AUTOSTR, config->alt_curve_auto_str);
853    
854                    config->alt_curve_use_auto_bonus_bias = ISDLGSET(IDC_USEAUTOBONUS);
855                    config->alt_curve_bonus_bias = config_get_uint(hDlg, IDC_BONUSBIAS, config->alt_curve_bonus_bias);
856    
857                    config->alt_curve_type = SendDlgItemMessage(hDlg, IDC_CURVETYPE, CB_GETCURSEL, 0, 0);
858                    config->alt_curve_high_dist = config_get_uint(hDlg, IDC_ALTCURVEHIGH, config->alt_curve_high_dist);
859                    config->alt_curve_low_dist = config_get_uint(hDlg, IDC_ALTCURVELOW, config->alt_curve_low_dist);
860                    config->alt_curve_min_rel_qual = config_get_uint(hDlg, IDC_MINQUAL, config->alt_curve_min_rel_qual);
861    
862                    config->twopass_max_bitrate /= CONFIG_KBPS;
863                    config->twopass_max_bitrate = config_get_uint(hDlg, IDC_MAXBITRATE, config->twopass_max_bitrate);
864                    config->twopass_max_bitrate *= CONFIG_KBPS;
865                    config->twopass_max_overflow_improvement = config_get_uint(hDlg, IDC_OVERIMP, config->twopass_max_overflow_improvement);
866                    config->twopass_max_overflow_degradation = config_get_uint(hDlg, IDC_OVERDEG, config->twopass_max_overflow_degradation);
867    
868                    CONSTRAINVAL(config->twopass_max_overflow_improvement, 1, 80);
869                    CONSTRAINVAL(config->twopass_max_overflow_degradation, 1, 80);
870                    break;
871    
872          case DLG_CREDITS :          case DLG_CREDITS :
873                  config->credits_start = ISDLGSET(IDC_CREDITS_START);                  config->credits_start = ISDLGSET(IDC_CREDITS_START);
874                  config->credits_start_begin = GetDlgItemInt(hDlg, IDC_CREDITS_START_BEGIN, NULL, FALSE);                  config->credits_start_begin = GetDlgItemInt(hDlg, IDC_CREDITS_START_BEGIN, NULL, FALSE);
875                  config->credits_start_end = config_get_int(hDlg, IDC_CREDITS_START_END, config->credits_start_end);                  config->credits_start_end = config_get_uint(hDlg, IDC_CREDITS_START_END, config->credits_start_end);
876                  config->credits_end = ISDLGSET(IDC_CREDITS_END);                  config->credits_end = ISDLGSET(IDC_CREDITS_END);
877                  config->credits_end_begin = config_get_int(hDlg, IDC_CREDITS_END_BEGIN, config->credits_end_begin);                  config->credits_end_begin = config_get_uint(hDlg, IDC_CREDITS_END_BEGIN, config->credits_end_begin);
878                  config->credits_end_end = config_get_int(hDlg, IDC_CREDITS_END_END, config->credits_end_end);                  config->credits_end_end = config_get_uint(hDlg, IDC_CREDITS_END_END, config->credits_end_end);
879    
880                  config->credits_rate = config_get_int(hDlg, IDC_CREDITS_RATE, config->credits_rate);  // added by koepi for gruel's greyscale_mode
881                  config->credits_quant_i = config_get_int(hDlg, IDC_CREDITS_QUANTI, config->credits_quant_i);                  config->credits_greyscale = ISDLGSET(IDC_CREDITS_GREYSCALE);
882                  config->credits_quant_p = config_get_int(hDlg, IDC_CREDITS_QUANTP, config->credits_quant_p);  // end of koepi's addition
883                  config->credits_start_size = config_get_int(hDlg, IDC_CREDITS_START_SIZE, config->credits_start_size);                  config->credits_rate = config_get_uint(hDlg, IDC_CREDITS_RATE, config->credits_rate);
884                  config->credits_end_size = config_get_int(hDlg, IDC_CREDITS_END_SIZE, config->credits_end_size);                  config->credits_quant_i = config_get_uint(hDlg, IDC_CREDITS_QUANTI, config->credits_quant_i);
885                    config->credits_quant_p = config_get_uint(hDlg, IDC_CREDITS_QUANTP, config->credits_quant_p);
886                    config->credits_start_size = config_get_uint(hDlg, IDC_CREDITS_START_SIZE, config->credits_start_size);
887                    config->credits_end_size = config_get_uint(hDlg, IDC_CREDITS_END_SIZE, config->credits_end_size);
888    
889                  config->credits_mode = 0;                  config->credits_mode = 0;
890                  config->credits_mode = ISDLGSET(IDC_CREDITS_RATE_RADIO) ? CREDITS_MODE_RATE : config->credits_mode;                  config->credits_mode = ISDLGSET(IDC_CREDITS_RATE_RADIO) ? CREDITS_MODE_RATE : config->credits_mode;
# Line 691  Line 916 
916                  config->cpu |= ISDLGSET(IDC_CPU_3DNOW) ? XVID_CPU_3DNOW: 0;                  config->cpu |= ISDLGSET(IDC_CPU_3DNOW) ? XVID_CPU_3DNOW: 0;
917                  config->cpu |= ISDLGSET(IDC_CPU_3DNOWEXT) ? XVID_CPU_3DNOWEXT: 0;                  config->cpu |= ISDLGSET(IDC_CPU_3DNOWEXT) ? XVID_CPU_3DNOWEXT: 0;
918                  config->cpu |= ISDLGSET(IDC_CPU_FORCE) ? XVID_CPU_FORCE : 0;                  config->cpu |= ISDLGSET(IDC_CPU_FORCE) ? XVID_CPU_FORCE : 0;
919    
920    #ifdef _SMP
921                    config->num_threads = config_get_uint(hDlg, IDC_NUMTHREADS, config->num_threads);
922    #endif
923                    config->frame_drop_ratio = config_get_uint(hDlg, IDC_FRAMEDROP, config->frame_drop_ratio);
924                    config->rc_reaction_delay_factor = config_get_uint(hDlg, IDC_CBR_REACTIONDELAY, config->rc_reaction_delay_factor);
925                    config->rc_averaging_period = config_get_uint(hDlg, IDC_CBR_AVERAGINGPERIOD, config->rc_averaging_period);
926                    config->rc_buffer = config_get_uint(hDlg, IDC_CBR_BUFFER, config->rc_buffer);
927                  break;                  break;
928          }          }
929  }  }
# Line 716  Line 949 
949          {          {
950                  int temp;                  int temp;
951    
952                  temp = config_get_int(hDlg, i + IDC_QINTRA00, config->qmatrix_intra[i]);                  temp = config_get_uint(hDlg, i + IDC_QINTRA00, config->qmatrix_intra[i]);
953                  CONSTRAINVAL(temp, 1, 255);                  CONSTRAINVAL(temp, 1, 255);
954                  temp = config->qmatrix_intra[i];                  config->qmatrix_intra[i] = temp;
955    
956                  temp = config_get_int(hDlg, i + IDC_QINTER00, config->qmatrix_inter[i]);                  temp = config_get_uint(hDlg, i + IDC_QINTER00, config->qmatrix_inter[i]);
957                  CONSTRAINVAL(temp, 1, 255);                  CONSTRAINVAL(temp, 1, 255);
958                  temp = config->qmatrix_inter[i];                  config->qmatrix_inter[i] = temp;
959          }          }
960  }  }
961    
 /* monitor mouse events to dialog controls for help text */  
962    
963  HHOOK hHook;  /* enumerates child windows, assigns tooltips */
964  HWND hParent;  
965    BOOL CALLBACK enum_tooltips(HWND hWnd, LPARAM lParam)
966    {
967            char help[500];
968    
969  LRESULT CALLBACK msg_proc(int nCode, WPARAM wParam, LPARAM lParam)          if (LoadString(hInst, GetDlgCtrlID(hWnd), help, 500))
970  {  {
971          MSG* pmsg = (MSG *)lParam;                  TOOLINFO ti;
972    
973                    ti.cbSize = sizeof(TOOLINFO);
974                    ti.uFlags = TTF_SUBCLASS | TTF_IDISHWND;
975                    ti.hwnd = GetParent(hWnd);
976                    ti.uId  = (LPARAM)hWnd;
977                    ti.lpszText = help;
978    
979                    SendMessage(hTooltip, TTM_ADDTOOL, 0, (LPARAM)&ti);
980            }
981    
982            return TRUE;
983    }
984    
985    
986          if (pmsg->message == WM_MOUSEMOVE)  
987    /* --- decoder options dialog  --- */
988    
989    #define DEC_DLG_COUNT   1
990    #define DEC_DLG_POSTPROC        0
991    
992    /* decoder dialog: upload config data */
993    
994    void dec_upload(HWND hDlg, int page, CONFIG * config)
995          {          {
996                  if (pmsg->hwnd == hParent)          switch (page)
997                  {                  {
998                          SetDlgItemText(hParent, IDC_STATIC_HELP, XVID_HELP);          case DEC_DLG_POSTPROC :
999                    CheckDlgButton(hDlg, IDC_DEBLOCK_Y,  config->deblock_y ? BST_CHECKED : BST_UNCHECKED);
1000                    CheckDlgButton(hDlg, IDC_DEBLOCK_UV, config->deblock_uv ? BST_CHECKED : BST_UNCHECKED);
1001                    break;
1002                  }                  }
1003                  else if (IsChild(hParent, pmsg->hwnd))  }
1004    
1005    
1006    /* dec dialog: download config data */
1007    
1008    void dec_download(HWND hDlg, int page, CONFIG * config)
1009                  {                  {
1010                          char *message;          switch (page)
1011                          char help[500];          {
1012            case DEC_DLG_POSTPROC :
1013                    config->deblock_y = ISDLGSET(IDC_DEBLOCK_Y);
1014                    config->deblock_uv = ISDLGSET(IDC_DEBLOCK_UV);
1015                    break;
1016            }
1017    }
1018    
1019                          int mode = SendDlgItemMessage(hParent, IDC_MODE, CB_GETCURSEL, 0, 0);  /* decoder dialog proc */
                         int item = GetDlgCtrlID(pmsg->hwnd);  
1020    
1021                          if (item == IDC_VALUE || item == IDC_SLIDER)  BOOL CALLBACK dec_proc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
1022                          {                          {
1023                                  switch (mode)          PROPSHEETINFO *psi;
1024    
1025            psi = (PROPSHEETINFO*)GetWindowLong(hDlg, GWL_USERDATA);
1026    
1027            switch (uMsg)
1028                                  {                                  {
1029                                  case DLG_MODE_2PASS_2_INT :          case WM_INITDIALOG :
1030                                          if (item == IDC_VALUE)                  psi = (PROPSHEETINFO*) ((LPPROPSHEETPAGE)lParam)->lParam;
1031    
1032                    SetWindowLong(hDlg, GWL_USERDATA, (LPARAM)psi);
1033    
1034                    if (hTooltip)
1035                                          {                                          {
1036                                                  message = "Set the desired video size in Kilobytes";                          EnumChildWindows(hDlg, enum_tooltips, 0);
                                                 break;  
1037                                          }                                          }
1038                                  default :  
1039                                  case DLG_MODE_CBR :                  dec_upload(hDlg, psi->page, psi->config);
                                         message = "Set the target video bitrate";  
1040                                          break;                                          break;
1041    
1042                                  case DLG_MODE_VBR_QUAL :          case WM_NOTIFY :
1043                                          message = "Set the target video quality";                  switch (((NMHDR *)lParam)->code)
1044                    {
1045                    case PSN_KILLACTIVE :
1046                            /* validate */
1047                            dec_download(hDlg, psi->page, psi->config);
1048                            SetWindowLong(hDlg, DWL_MSGRESULT, FALSE);
1049                                          break;                                          break;
1050    
1051                                  case DLG_MODE_VBR_QUANT :                  case PSN_APPLY :
1052                                          message = "Set the fixed quantizer for encoding";                          /* apply */
1053                            dec_download(hDlg, psi->page, psi->config);
1054                            SetWindowLong(hDlg, DWL_MSGRESULT, FALSE);
1055                            psi->config->save = TRUE;
1056                            break;
1057                    }
1058                                          break;                                          break;
1059    
1060            default :
1061                    return 0;
1062                                  }                                  }
1063                                  lstrcpy(help, message);  
1064            return 1;
1065                          }                          }
1066                          else if (!LoadString(hInst, GetDlgCtrlID(pmsg->hwnd), help, 500))  
1067    
1068    void dec_dialog(HWND hParent, CONFIG * config)
1069    {
1070            PROPSHEETINFO psi[DEC_DLG_COUNT];
1071            PROPSHEETPAGE psp[DEC_DLG_COUNT];
1072            PROPSHEETHEADER psh;
1073            CONFIG temp;
1074            int i;
1075    
1076            config->save = FALSE;
1077            memcpy(&temp, config, sizeof(CONFIG));
1078    
1079            for (i=0 ; i<DEC_DLG_COUNT ; ++i)
1080                          {                          {
1081                                  lstrcpy(help, XVID_HELP);                  psp[i].dwSize = sizeof(PROPSHEETPAGE);
1082                    psp[i].dwFlags = 0;
1083                    psp[i].hInstance = hInst;
1084                    psp[i].pfnDlgProc = dec_proc;
1085                    psp[i].lParam = (LPARAM)&psi[i];
1086                    psp[i].pfnCallback = NULL;
1087    
1088                    psi[i].page = i;
1089                    psi[i].config = &temp;
1090                          }                          }
1091    
1092                          SetDlgItemText(hParent, IDC_STATIC_HELP, help);          psp[DEC_DLG_POSTPROC].pszTemplate = MAKEINTRESOURCE(IDD_POSTPROC);
1093    
1094            psh.dwSize = sizeof(PROPSHEETHEADER);
1095            psh.dwFlags = PSH_PROPSHEETPAGE | PSH_NOAPPLYNOW;
1096            psh.hwndParent = hParent;
1097            psh.hInstance = hInst;
1098            psh.pszCaption = (LPSTR) "XviD Configuration";
1099            psh.nPages = DEC_DLG_COUNT;
1100            psh.nStartPage = DEC_DLG_POSTPROC;
1101            psh.ppsp = (LPCPROPSHEETPAGE)&psp;
1102            psh.pfnCallback = NULL;
1103    
1104            PropertySheet(&psh);
1105    
1106            if (temp.save)
1107            {
1108                    memcpy(config, &temp, sizeof(CONFIG));
1109                  }                  }
1110          }          }
1111    
         return (CallNextHookEx(hHook, nCode, wParam, lParam));  
 }  
1112    
1113    
1114  /* main dialog proc */  /* main dialog proc */
# Line 809  Line 1133 
1133                  SendDlgItemMessage(hDlg, IDC_MODE, CB_ADDSTRING, 0, (LPARAM)"Null - test speed");                  SendDlgItemMessage(hDlg, IDC_MODE, CB_ADDSTRING, 0, (LPARAM)"Null - test speed");
1134    
1135                  SendDlgItemMessage(hDlg, IDC_MODE, CB_SETCURSEL, config->mode, 0);                  SendDlgItemMessage(hDlg, IDC_MODE, CB_SETCURSEL, config->mode, 0);
                 SetDlgItemInt(hDlg, IDC_CBRBUFFER, config->rc_buffersize, FALSE);  
                 SetDlgItemText(hDlg, IDC_STATIC_HELP, XVID_HELP);  
   
                 hHook = SetWindowsHookEx(WH_GETMESSAGE, msg_proc, 0, GetCurrentThreadId());  
1136    
1137                  main_slider(hDlg, config);                  InitCommonControls();
                 main_value(hDlg, config);  
                 break;  
1138    
1139          case WM_ACTIVATE :                  if (hTooltip = CreateWindow(TOOLTIPS_CLASS, NULL, TTS_ALWAYSTIP,
1140                  if (LOWORD(wParam) != WA_INACTIVE)                                  CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
1141                                    NULL, NULL, hInst, NULL))
1142                  {                  {
1143                          hParent = hDlg;                          SetWindowPos(hTooltip, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE);
1144                            SendMessage(hTooltip, TTM_SETDELAYTIME, TTDT_AUTOMATIC, MAKELONG(1500, 0));
1145                            SendMessage(hTooltip, TTM_SETMAXTIPWIDTH, 0, 400);
1146    
1147                            EnumChildWindows(hDlg, enum_tooltips, 0);
1148                  }                  }
                 return 0;  
1149    
1150          case WM_DESTROY :                  main_slider(hDlg, config);
1151                  UnhookWindowsHookEx(hHook);                  main_value(hDlg, config);
1152                  break;                  break;
1153    
1154          case WM_HSCROLL :          case WM_HSCROLL :
# Line 856  Line 1178 
1178                                  config_reg_set(config);                                  config_reg_set(config);
1179                          }                          }
1180                  }                  }
1181                    else if (LOWORD(wParam) == IDC_DECODER && HIWORD(wParam) == BN_CLICKED)
1182                    {
1183                            dec_dialog(hDlg, config);
1184    
1185                            if (config->save)
1186                            {
1187                                    config_reg_set(config);
1188                            }
1189                    }
1190                    else if (LOWORD(wParam) == IDC_DEFAULTS && HIWORD(wParam) == BN_CLICKED)
1191                    {
1192                            config_reg_default(config);
1193    
1194                            SendDlgItemMessage(hDlg, IDC_MODE, CB_SETCURSEL, config->mode, 0);
1195    
1196                            main_slider(hDlg, config);
1197                            main_value(hDlg, config);
1198                    }
1199                  else if (HIWORD(wParam) == EN_UPDATE && LOWORD(wParam) == IDC_VALUE)                  else if (HIWORD(wParam) == EN_UPDATE && LOWORD(wParam) == IDC_VALUE)
1200                  {                  {
1201                          int value = config_get_int(hDlg, IDC_VALUE, 1);                          int value = config_get_uint(hDlg, IDC_VALUE, 1);
1202                          int max = 1;                          int max = 1;
1203    
1204                          max = (config->mode == DLG_MODE_CBR) ? 10000 :                          max = (config->mode == DLG_MODE_CBR) ? 10000 :
# Line 930  Line 1270 
1270                          SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_ADDSTRING, 0, (LPARAM)"MPEG");                          SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_ADDSTRING, 0, (LPARAM)"MPEG");
1271                          SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_ADDSTRING, 0, (LPARAM)"MPEG-Custom");                          SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_ADDSTRING, 0, (LPARAM)"MPEG-Custom");
1272                          SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_ADDSTRING, 0, (LPARAM)"Modulated");                          SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_ADDSTRING, 0, (LPARAM)"Modulated");
1273                            SendDlgItemMessage(hDlg, IDC_QUANTTYPE, CB_ADDSTRING, 0, (LPARAM)"New Modulated HQ");
1274    
1275                          SendDlgItemMessage(hDlg, IDC_FOURCC, CB_ADDSTRING, 0, (LPARAM)"XVID");                          SendDlgItemMessage(hDlg, IDC_FOURCC, CB_ADDSTRING, 0, (LPARAM)"XVID");
1276                          SendDlgItemMessage(hDlg, IDC_FOURCC, CB_ADDSTRING, 0, (LPARAM)"DIVX");                          SendDlgItemMessage(hDlg, IDC_FOURCC, CB_ADDSTRING, 0, (LPARAM)"DIVX");
1277                          SendDlgItemMessage(hDlg, IDC_FOURCC, CB_ADDSTRING, 0, (LPARAM)"DX50");                          SendDlgItemMessage(hDlg, IDC_FOURCC, CB_ADDSTRING, 0, (LPARAM)"DX50");
1278    
1279                            SendDlgItemMessage(hDlg, IDC_VHQ, CB_ADDSTRING, 0, (LPARAM)"0 - Off");
1280                            SendDlgItemMessage(hDlg, IDC_VHQ, CB_ADDSTRING, 0, (LPARAM)"1 - Mode Decision");
1281                            SendDlgItemMessage(hDlg, IDC_VHQ, CB_ADDSTRING, 0, (LPARAM)"2 - Limited Search");
1282                            SendDlgItemMessage(hDlg, IDC_VHQ, CB_ADDSTRING, 0, (LPARAM)"3 - Medium Search");
1283                            SendDlgItemMessage(hDlg, IDC_VHQ, CB_ADDSTRING, 0, (LPARAM)"4 - Wide Search");
1284                            /* XXX: reduced resolution is not ready for prime-time */
1285                            ShowWindow(GetDlgItem(hDlg, IDC_REDUCED), SW_HIDE);
1286                    }
1287                    else if (psi->page == DLG_2PASSALT)
1288                    {
1289                            SendDlgItemMessage(hDlg, IDC_CURVETYPE, CB_ADDSTRING, 0, (LPARAM)"Low");
1290                            SendDlgItemMessage(hDlg, IDC_CURVETYPE, CB_ADDSTRING, 0, (LPARAM)"Medium");
1291                            SendDlgItemMessage(hDlg, IDC_CURVETYPE, CB_ADDSTRING, 0, (LPARAM)"High");
1292                    }
1293                    else if (psi->page == DLG_CPU)
1294                    {
1295    #ifndef _SMP
1296                            EnableWindow(GetDlgItem(hDlg, IDC_NUMTHREADS_STATIC), FALSE);
1297                            EnableWindow(GetDlgItem(hDlg, IDC_NUMTHREADS), FALSE);
1298    #endif
1299                    }
1300    
1301                    if (hTooltip)
1302                    {
1303                            EnumChildWindows(hDlg, enum_tooltips, 0);
1304                  }                  }
1305    
                 SetDlgItemText(hDlg, IDC_STATIC_HELP, XVID_HELP);  
1306                  adv_upload(hDlg, psi->page, psi->config);                  adv_upload(hDlg, psi->page, psi->config);
1307                  adv_mode(hDlg, psi->config->mode);                  adv_mode(hDlg, psi->config->mode);
1308                  break;                  break;
# Line 946  Line 1312 
1312                  {                  {
1313                          switch (LOWORD(wParam))                          switch (LOWORD(wParam))
1314                          {                          {
1315                            case IDC_HINTEDME :
1316                            case IDC_USEALT :
1317                            case IDC_USEAUTO :
1318                            case IDC_USEAUTOBONUS :
1319                          case IDC_CREDITS_START :                          case IDC_CREDITS_START :
1320                          case IDC_CREDITS_END :                          case IDC_CREDITS_END :
1321                          case IDC_CREDITS_RATE_RADIO :                          case IDC_CREDITS_RATE_RADIO :
# Line 957  Line 1327 
1327                                  break;                                  break;
1328                          }                          }
1329                  }                  }
1330                  if ((LOWORD(wParam) == IDC_STATS1_BROWSE || LOWORD(wParam) == IDC_STATS2_BROWSE) && HIWORD(wParam) == BN_CLICKED)                  if ((LOWORD(wParam) == IDC_HINT_BROWSE || LOWORD(wParam) == IDC_STATS1_BROWSE || LOWORD(wParam) == IDC_STATS2_BROWSE) && HIWORD(wParam) == BN_CLICKED)
1331                  {                  {
1332                          OPENFILENAME ofn;                          OPENFILENAME ofn;
1333                          char tmp[MAX_PATH];                          char tmp[MAX_PATH];
# Line 974  Line 1344 
1344                          ofn.nMaxFile = MAX_PATH;                          ofn.nMaxFile = MAX_PATH;
1345                          ofn.Flags = OFN_PATHMUSTEXIST;                          ofn.Flags = OFN_PATHMUSTEXIST;
1346    
1347                          // display save box for stats1 using 1st-pass                          if (LOWORD(wParam) == IDC_HINT_BROWSE)
1348                          if (LOWORD(wParam) == IDC_STATS1_BROWSE &&                          {
1349                                    ofn.lpstrFilter = "motion hints (*.mvh)\0*.mvh\0All files (*.*)\0*.*\0\0";
1350                                    if (GetOpenFileName(&ofn))
1351                                    {
1352                                            SetDlgItemText(hDlg, IDC_HINTFILE, tmp);
1353                                    }
1354                            }
1355                            else if (LOWORD(wParam) == IDC_STATS1_BROWSE &&
1356                                  psi->config->mode == DLG_MODE_2PASS_1)                                  psi->config->mode == DLG_MODE_2PASS_1)
1357                          {                          {
1358                                  ofn.Flags |= OFN_OVERWRITEPROMPT;                                  ofn.Flags |= OFN_OVERWRITEPROMPT;
# Line 1001  Line 1378 
1378          case WM_NOTIFY :          case WM_NOTIFY :
1379                  switch (((NMHDR *)lParam)->code)                  switch (((NMHDR *)lParam)->code)
1380                  {                  {
                 case PSN_SETACTIVE :  
                         hParent = hDlg;  
                         break;  
   
1381                  case PSN_KILLACTIVE :                  case PSN_KILLACTIVE :
1382                          /* validate */                          /* validate */
1383                          adv_download(hDlg, psi->page, psi->config);                          adv_download(hDlg, psi->page, psi->config);
# Line 1040  Line 1413 
1413                  SetWindowLong(hDlg, GWL_USERDATA, lParam);                  SetWindowLong(hDlg, GWL_USERDATA, lParam);
1414                  config = (CONFIG*)lParam;                  config = (CONFIG*)lParam;
1415                  quant_upload(hDlg, config);                  quant_upload(hDlg, config);
                 break;  
1416    
1417          case WM_ACTIVATE :                  if (hTooltip)
                 if (LOWORD(wParam) != WA_INACTIVE)  
1418                  {                  {
1419                          hParent = hDlg;                          EnumChildWindows(hDlg, enum_tooltips, 0);
1420                  }                  }
1421                  return 0;                  break;
1422    
1423          case WM_COMMAND :          case WM_COMMAND :
1424                  if (LOWORD(wParam) == IDOK && HIWORD(wParam) == BN_CLICKED)                  if (LOWORD(wParam) == IDOK && HIWORD(wParam) == BN_CLICKED)
# Line 1091  Line 1462 
1462    
1463                                          if (hFile == INVALID_HANDLE_VALUE)                                          if (hFile == INVALID_HANDLE_VALUE)
1464                                          {                                          {
1465                                                  DEBUG("Couldn't save quant matrix");                                                  DEBUGERR("Couldn't save quant matrix");
1466                                          }                                          }
1467                                          else                                          else
1468                                          {                                          {
1469                                                  if (!WriteFile(hFile, quant_data, 128, &wrote, 0))                                                  if (!WriteFile(hFile, quant_data, 128, &wrote, 0))
1470                                                  {                                                  {
1471                                                          DEBUG("Couldnt write quant matrix");                                                          DEBUGERR("Couldnt write quant matrix");
1472                                                  }                                                  }
1473                                          }                                          }
1474    
# Line 1113  Line 1484 
1484    
1485                                          if (hFile == INVALID_HANDLE_VALUE)                                          if (hFile == INVALID_HANDLE_VALUE)
1486                                          {                                          {
1487                                                  DEBUG("Couldn't load quant matrix");                                                  DEBUGERR("Couldn't load quant matrix");
1488                                          }                                          }
1489                                          else                                          else
1490                                          {                                          {
1491                                                  if (!ReadFile(hFile, quant_data, 128, &read, 0))                                                  if (!ReadFile(hFile, quant_data, 128, &read, 0))
1492                                                  {                                                  {
1493                                                          DEBUG("Couldnt read quant matrix");                                                          DEBUGERR("Couldnt read quant matrix");
1494                                                  }                                                  }
1495                                                  else                                                  else
1496                                                  {                                                  {
# Line 1156  Line 1527 
1527                          HFONT hFont;                          HFONT hFont;
1528                          LOGFONT lfData;                          LOGFONT lfData;
1529    
1530                          SetDlgItemText(hDlg, IDC_BUILD, __TIME__ ", " __DATE__);                          SetDlgItemText(hDlg, IDC_BUILD, XVID_BUILD);
1531                            SetDlgItemText(hDlg, IDC_SPECIAL_BUILD, XVID_SPECIAL_BUILD);
1532    
1533                            init_param.cpu_flags = XVID_CPU_CHKONLY;
1534                          xvid_init(NULL, 0, &init_param, 0);                          xvid_init(NULL, 0, &init_param, 0);
1535                          wsprintf(core, "Core Version %d.%d", (init_param.api_version>>16),(init_param.api_version&0xFFFFU));                          wsprintf(core, "Core Version %d.%d", (init_param.api_version>>16),(init_param.api_version&0xFFFFU));
1536                          SetDlgItemText(hDlg, IDC_CORE, core);                          SetDlgItemText(hDlg, IDC_CORE, core);

Legend:
Removed from v.30  
changed lines
  Added in v.839

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