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

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

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