[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 1060, Tue Jun 10 09:14:48 2003 UTC revision 1061, Tue Jun 10 10:07:03 2003 UTC
# Line 64  Line 64 
64  #include <xvid.h>       /* XviD API */  #include <xvid.h>       /* XviD API */
65    
66  #include "debug.h"  #include "debug.h"
 #include "codec.h"  
67  #include "config.h"  #include "config.h"
68  #include "resource.h"  #include "resource.h"
69    
# Line 148  Line 147 
147  static const REG_INT reg_ints[] = {  static const REG_INT reg_ints[] = {
148          {"mode",                                        &reg.mode,                                              RC_MODE_1PASS},          {"mode",                                        &reg.mode,                                              RC_MODE_1PASS},
149          {"bitrate",                                     &reg.bitrate,                                   700},          {"bitrate",                                     &reg.bitrate,                                   700},
150   /* {"desired_size",                    &reg.desired_size,                              570000},   not used */      {"desired_size",                    &reg.desired_size,                              570000},
151        {"use_2pass_bitrate",       &reg.use_2pass_bitrate,         0},
152    
153          {"rc_reaction_delay_factor",&reg.rc_reaction_delay_factor,      16},      /* profile */
         {"rc_averaging_period",         &reg.rc_averaging_period,               100},  
         {"rc_buffer",                           &reg.rc_buffer,                         100},  
   
         {"motion_search",                       &reg.motion_search,                             6},  
154          {"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},  
155          {"lum_masking",                         &reg.lum_masking,                               0},          {"lum_masking",                         &reg.lum_masking,                               0},
156          {"interlacing",                         &reg.interlacing,                               0},          {"interlacing",                         &reg.interlacing,                               0},
157          {"qpel",                                        &reg.qpel,                                              0},          {"qpel",                                        &reg.qpel,                                              0},
158          {"gmc",                                         &reg.gmc,                                               0},          {"gmc",                                         &reg.gmc,                                               0},
159          {"chromame",                            &reg.chromame,                                  0},          {"reduced_resolution",          &reg.reduced_resolution,                0},
160      {"use_bvop",                                &reg.use_bvop,                          0},      {"use_bvop",                                &reg.use_bvop,                          0},
161          {"max_bframes",                         &reg.max_bframes,                               2},          {"max_bframes",                         &reg.max_bframes,                               2},
162          {"bquant_ratio",                        &reg.bquant_ratio,                              150},   /* 100-base float */          {"bquant_ratio",                        &reg.bquant_ratio,                              150},   /* 100-base float */
163          {"bquant_offset",                       &reg.bquant_offset,                             100},   /* 100-base float */          {"bquant_offset",                       &reg.bquant_offset,                             100},   /* 100-base float */
164          {"packed",                                      &reg.packed,                                    0},          {"packed",                                      &reg.packed,                                    0},
165          {"closed_gov",                          &reg.closed_gov,                                1},          {"closed_gov",                          &reg.closed_gov,                                1},
         {"vop_debug",                           &reg.vop_debug,                                 0},  
     {"debug",                                   &reg.debug,                                             0x0},  
         {"reduced_resolution",          &reg.reduced_resolution,                0},  
         {"frame_drop_ratio",            &reg.frame_drop_ratio,                  0},  
166    
167          {"min_iquant",                          &reg.min_iquant,                                2},      /* zones */
168          {"max_iquant",                          &reg.max_iquant,                                31},      {"num_zones",               &reg.num_zones,                 1},
         {"min_pquant",                          &reg.min_pquant,                                2},  
         {"max_pquant",                          &reg.max_pquant,                                31},  
         {"min_bquant",                          &reg.min_bquant,                                2},  
         {"max_bquant",                          &reg.max_bquant,                                31},  
     {"trellis_quant",           &reg.trellis_quant,             0},  
169    
170          {"keyframe_boost",                      &reg.keyframe_boost,                    0},      /* single pass */
171            {"rc_reaction_delay_factor",&reg.rc_reaction_delay_factor,      16},
172            {"rc_averaging_period",         &reg.rc_averaging_period,               100},
173            {"rc_buffer",                           &reg.rc_buffer,                         100},
174    
175        /* 2pass1 */
176          {"discard1pass",                        &reg.discard1pass,                              1},          {"discard1pass",                        &reg.discard1pass,                              1},
177    
178        /* 2pass2 */
179            {"keyframe_boost",                      &reg.keyframe_boost,                    0},
180          {"kftreshold",                          &reg.kftreshold,                                10},          {"kftreshold",                          &reg.kftreshold,                                10},
181          {"kfreduction",                         &reg.kfreduction,                               20},          {"kfreduction",                         &reg.kfreduction,                               20},
182          {"curve_compression_high",      &reg.curve_compression_high,    0},          {"curve_compression_high",      &reg.curve_compression_high,    0},
# Line 195  Line 186 
186          {"twopass_max_overflow_improvement", &reg.twopass_max_overflow_improvement, 60},          {"twopass_max_overflow_improvement", &reg.twopass_max_overflow_improvement, 60},
187          {"twopass_max_overflow_degradation", &reg.twopass_max_overflow_degradation, 60},          {"twopass_max_overflow_degradation", &reg.twopass_max_overflow_degradation, 60},
188    
189      {"num_zones",               &reg.num_zones,                 1},      /* motion */
190        {"motion_search",                   &reg.motion_search,                             6},
191            {"vhq_mode",                            &reg.vhq_mode,                                  0},
192        {"chromame",                                &reg.chromame,                                  0},
193            {"max_key_interval",            &reg.max_key_interval,                  300},
194            {"min_key_interval",            &reg.min_key_interval,                  1},
195            {"frame_drop_ratio",            &reg.frame_drop_ratio,                  0},
196    
197        /* quant */
198            {"min_iquant",                          &reg.min_iquant,                                2},
199            {"max_iquant",                          &reg.max_iquant,                                31},
200            {"min_pquant",                          &reg.min_pquant,                                2},
201            {"max_pquant",                          &reg.max_pquant,                                31},
202            {"min_bquant",                          &reg.min_bquant,                                2},
203            {"max_bquant",                          &reg.max_bquant,                                31},
204        {"trellis_quant",           &reg.trellis_quant,             0},
205    
206        /* debug */
207        {"fourcc_used",                             &reg.fourcc_used,                               0},
208        {"debug",                                   &reg.debug,                                             0x0},
209        {"vop_debug",                               &reg.vop_debug,                                 0},
210        {"display_status",          &reg.display_status,            1},
211  };  };
212    
213  static const REG_STR reg_strs[] = {  static const REG_STR reg_strs[] = {
# Line 838  Line 850 
850    
851                  SetDlgItemInt(hDlg, IDC_NUMTHREADS, config->num_threads, FALSE);                  SetDlgItemInt(hDlg, IDC_NUMTHREADS, config->num_threads, FALSE);
852    
                 CheckDlg(hDlg, IDC_VOPDEBUG, config->vop_debug);  
         set_dlgitem_hex(hDlg, IDC_DEBUG, config->debug);  
853                  SendDlgItemMessage(hDlg, IDC_FOURCC, CB_SETCURSEL, config->fourcc_used, 0);                  SendDlgItemMessage(hDlg, IDC_FOURCC, CB_SETCURSEL, config->fourcc_used, 0);
854            set_dlgitem_hex(hDlg, IDC_DEBUG, config->debug);
855                    CheckDlg(hDlg, IDC_VOPDEBUG, config->vop_debug);
856            CheckDlg(hDlg, IDC_DISPLAY_STATUS, config->display_status);
857                  break;                  break;
858          }          }
859  }  }
# Line 970  Line 983 
983                  config->num_threads = config_get_uint(hDlg, IDC_NUMTHREADS, config->num_threads);                  config->num_threads = config_get_uint(hDlg, IDC_NUMTHREADS, config->num_threads);
984    
985          config->fourcc_used = SendDlgItemMessage(hDlg, IDC_FOURCC, CB_GETCURSEL, 0, 0);          config->fourcc_used = SendDlgItemMessage(hDlg, IDC_FOURCC, CB_GETCURSEL, 0, 0);
                 config->vop_debug = IsDlgChecked(hDlg, IDC_VOPDEBUG);  
986          config->debug = get_dlgitem_hex(hDlg, IDC_DEBUG, config->debug);          config->debug = get_dlgitem_hex(hDlg, IDC_DEBUG, config->debug);
987            config->vop_debug = IsDlgChecked(hDlg, IDC_VOPDEBUG);
988            config->display_status = IsDlgChecked(hDlg, IDC_DISPLAY_STATUS);
989                  break;                  break;
990          }          }
991  }  }
# Line 1202  Line 1216 
1216      ListView_SetItemText(hDlg, i, 2, tmp);      ListView_SetItemText(hDlg, i, 2, tmp);
1217  }  }
1218    
1219    static int g_use_bitrate = 1;
1220    
1221  void main_mode(HWND hDlg, CONFIG * config)  void main_mode(HWND hDlg, CONFIG * config)
1222  {  {
1223        const int profile = SendDlgItemMessage(hDlg, IDC_PROFILE, CB_GETCURSEL, 0, 0);
1224        const int rc_mode = SendDlgItemMessage(hDlg, IDC_MODE, CB_GETCURSEL, 0, 0);
1225        /* enable target rate/size control only for 1pass and 2pass  modes*/
1226        const int target_en = rc_mode==RC_MODE_1PASS || rc_mode==RC_MODE_2PASS2;
1227    
1228      char buf[16];      char buf[16];
     int profile = SendDlgItemMessage(hDlg, IDC_PROFILE, CB_GETCURSEL, 0, 0);  
     int bitrate_en;  
1229      int max;      int max;
1230    
1231        g_use_bitrate = rc_mode==RC_MODE_1PASS || config->use_2pass_bitrate;
1232    
1233        if (g_use_bitrate) {
1234            SetDlgItemText(hDlg, IDC_BITRATE_S, "Target bitrate (kbps):");
1235    
1236      wsprintf(buf, "%i kbps", DEFAULT_MIN_KBPS);      wsprintf(buf, "%i kbps", DEFAULT_MIN_KBPS);
1237      SetDlgItemText(hDlg, IDC_BITRATE_MIN, buf);      SetDlgItemText(hDlg, IDC_BITRATE_MIN, buf);
1238    
# Line 1222  Line 1245 
1245      SendDlgItemMessage(hDlg, IDC_SLIDER, TBM_SETPOS, TRUE,      SendDlgItemMessage(hDlg, IDC_SLIDER, TBM_SETPOS, TRUE,
1246                      config_get_uint(hDlg, IDC_BITRATE, DEFAULT_MIN_KBPS) );                      config_get_uint(hDlg, IDC_BITRATE, DEFAULT_MIN_KBPS) );
1247    
1248      bitrate_en = SendDlgItemMessage(hDlg, IDC_MODE, CB_GETCURSEL, 0, 0);      }else{
1249      bitrate_en = bitrate_en==RC_MODE_1PASS || bitrate_en==RC_MODE_2PASS2;          SetDlgItemText(hDlg, IDC_BITRATE_S, "Target size (kbytes):");
1250        }
1251    
1252      EnableDlgWindow(hDlg, IDC_BITRATE_S, bitrate_en);      EnableDlgWindow(hDlg, IDC_BITRATE_S, target_en);
1253      EnableDlgWindow(hDlg, IDC_BITRATE, bitrate_en);      EnableDlgWindow(hDlg, IDC_BITRATE, target_en);
1254      EnableDlgWindow(hDlg, IDC_BITRATE_MIN, bitrate_en);  
1255      EnableDlgWindow(hDlg, IDC_BITRATE_MAX, bitrate_en);      EnableDlgWindow(hDlg, IDC_BITRATE_MIN, target_en && g_use_bitrate);
1256      EnableDlgWindow(hDlg, IDC_SLIDER, bitrate_en);      EnableDlgWindow(hDlg, IDC_BITRATE_MAX, target_en && g_use_bitrate);
1257        EnableDlgWindow(hDlg, IDC_SLIDER, target_en && g_use_bitrate);
1258  }  }
1259    
1260    
1261    
1262  void main_upload(HWND hDlg, CONFIG * config)  void main_upload(HWND hDlg, CONFIG * config)
1263  {  {
1264      int i;      int i;
1265    
1266      SendDlgItemMessage(hDlg, IDC_PROFILE, CB_SETCURSEL, config->profile, 0);      SendDlgItemMessage(hDlg, IDC_PROFILE, CB_SETCURSEL, config->profile, 0);
1267          SendDlgItemMessage(hDlg, IDC_MODE, CB_SETCURSEL, config->mode, 0);          SendDlgItemMessage(hDlg, IDC_MODE, CB_SETCURSEL, config->mode, 0);
1268    
1269        if (g_use_bitrate) {
1270      SetDlgItemInt(hDlg, IDC_BITRATE, config->bitrate, FALSE);      SetDlgItemInt(hDlg, IDC_BITRATE, config->bitrate, FALSE);
1271        }else{
1272            SetDlgItemInt(hDlg, IDC_BITRATE, config->desired_size, FALSE);
1273        }
1274    
1275      ListView_DeleteAllItems(GetDlgItem(hDlg,IDC_ZONES));      ListView_DeleteAllItems(GetDlgItem(hDlg,IDC_ZONES));
1276      for (i=0; i < config->num_zones; i++) {      for (i=0; i < config->num_zones; i++) {
# Line 1252  Line 1284 
1284  {  {
1285      config->profile = SendDlgItemMessage(hDlg, IDC_PROFILE, CB_GETCURSEL, 0, 0);      config->profile = SendDlgItemMessage(hDlg, IDC_PROFILE, CB_GETCURSEL, 0, 0);
1286          config->mode = SendDlgItemMessage(hDlg, IDC_MODE, CB_GETCURSEL, 0, 0);          config->mode = SendDlgItemMessage(hDlg, IDC_MODE, CB_GETCURSEL, 0, 0);
1287    
1288        if (g_use_bitrate) {
1289      config->bitrate = config_get_uint(hDlg, IDC_BITRATE, config->bitrate);      config->bitrate = config_get_uint(hDlg, IDC_BITRATE, config->bitrate);
1290        }else{
1291            config->desired_size = config_get_uint(hDlg, IDC_BITRATE, config->desired_size);
1292        }
1293  }  }
   
   
1294    
1295    
1296  /* main dialog proc */  /* main dialog proc */
# Line 1292  Line 1327 
1327    
1328                  InitCommonControls();                  InitCommonControls();
1329    
   
1330                  if ((g_hTooltip = CreateWindow(TOOLTIPS_CLASS, NULL, TTS_ALWAYSTIP,                  if ((g_hTooltip = CreateWindow(TOOLTIPS_CLASS, NULL, TTS_ALWAYSTIP,
1331                                  CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,                                  CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
1332                                  NULL, NULL, g_hInst, NULL)))                                  NULL, NULL, g_hInst, NULL)))
# Line 1304  Line 1338 
1338                          EnumChildWindows(hDlg, enum_tooltips, 0);                          EnumChildWindows(hDlg, enum_tooltips, 0);
1339                  }                  }
1340    
1341            SetClassLong(GetDlgItem(hDlg, IDC_BITRATE_S), GCL_HCURSOR, (LONG)LoadCursor(NULL, IDC_HAND));
1342    
1343          {          {
1344              DWORD ext_style = ListView_GetExtendedListViewStyle(GetDlgItem(hDlg,IDC_ZONES));              DWORD ext_style = ListView_GetExtendedListViewStyle(GetDlgItem(hDlg,IDC_ZONES));
1345              ext_style |= LVS_EX_FULLROWSELECT | LVS_EX_FLATSB ;              ext_style |= LVS_EX_FULLROWSELECT | LVS_EX_FLATSB ;
# Line 1338  Line 1374 
1374              }              }
1375          }          }
1376    
1377            /* XXX: main_mode needs RC_MODE_xxx, main_upload needs g_use_bitrate set correctly... */
1378          main_upload(hDlg, config);          main_upload(hDlg, config);
1379          main_mode(hDlg, config);          main_mode(hDlg, config);
1380            main_upload(hDlg, config);
1381                  break;                  break;
1382    
1383      case WM_NOTIFY :      case WM_NOTIFY :
# Line 1387  Line 1425 
1425                              }                              }
1426                  break;                  break;
1427    
1428    
1429                case IDC_BITRATE_S :
1430                    /* alternate between bitrate/desired_length metrics */
1431                    main_download(hDlg, config);
1432                    config->use_2pass_bitrate = !config->use_2pass_bitrate;
1433                    main_mode(hDlg, config);
1434                    main_upload(hDlg, config);
1435                    break;
1436    
1437              case IDC_BITRATE_CALC :              case IDC_BITRATE_CALC :
1438                  main_download(hDlg, config);                  main_download(hDlg, config);
1439                  adv_dialog(hDlg, config, bitrate_dlgs, sizeof(bitrate_dlgs)/sizeof(int));                  adv_dialog(hDlg, config, bitrate_dlgs, sizeof(bitrate_dlgs)/sizeof(int));
# Line 1502  Line 1549 
1549              }              }
1550          }else if (HIWORD(wParam) == LBN_SELCHANGE &&          }else if (HIWORD(wParam) == LBN_SELCHANGE &&
1551              (LOWORD(wParam)==IDC_PROFILE || LOWORD(wParam)==IDC_MODE)) {              (LOWORD(wParam)==IDC_PROFILE || LOWORD(wParam)==IDC_MODE)) {
1552    
1553                main_download(hDlg, config);
1554              main_mode(hDlg, config);              main_mode(hDlg, config);
1555                main_upload(hDlg, config);
1556    
1557          }else if (HIWORD(wParam)==EN_UPDATE && LOWORD(wParam)==IDC_BITRATE) {          }else if (HIWORD(wParam)==EN_UPDATE && LOWORD(wParam)==IDC_BITRATE) {
1558    
1559                if (g_use_bitrate) {
1560              SendDlgItemMessage(hDlg, IDC_SLIDER, TBM_SETPOS, TRUE,              SendDlgItemMessage(hDlg, IDC_SLIDER, TBM_SETPOS, TRUE,
1561                      config_get_uint(hDlg, IDC_BITRATE, DEFAULT_MIN_KBPS) );                      config_get_uint(hDlg, IDC_BITRATE, DEFAULT_MIN_KBPS) );
1562                }
1563    
1564          }else {          }else {
1565              return 0;              return 0;
1566          }          }

Legend:
Removed from v.1060  
changed lines
  Added in v.1061

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