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

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

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

revision 1051, Thu May 29 14:18:18 2003 UTC revision 1052, Mon Jun 2 11:47:30 2003 UTC
# Line 66  Line 66 
66  IDD_MAIN DIALOGEX 0, 0, 225, 255  IDD_MAIN DIALOGEX 0, 0, 225, 255
67  STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU  STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
68  CAPTION "XviD Configuration"  CAPTION "XviD Configuration"
69  FONT 8, "MS Sans Serif"  FONT 8, "MS Sans Serif", 0, 0, 0x1
70  BEGIN  BEGIN
71      COMBOBOX        IDC_MODE,88,34,100,76,CBS_DROPDOWNLIST | WS_VSCROLL |      COMBOBOX        IDC_MODE,88,34,100,76,CBS_DROPDOWNLIST | WS_VSCROLL |
72                      WS_TABSTOP                      WS_TABSTOP
# Line 481  Line 481 
481      CTEXT           "( SPECIAL BUILD )",IDC_SPECIAL_BUILD,5,102,181,8      CTEXT           "( SPECIAL BUILD )",IDC_SPECIAL_BUILD,5,102,181,8
482  END  END
483    
 IDD_RC_2PASS2_ALT DIALOG DISCARDABLE  0, 0, 212, 212  
 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU  
 CAPTION "Alt. Curve"  
 FONT 8, "MS Sans Serif"  
 BEGIN  
     GROUPBOX        "",IDC_STATIC,8,4,196,152  
     CONTROL         "Use Alternative curve system",IDC_USEALT,"Button",  
                     BS_AUTOCHECKBOX | WS_TABSTOP,16,4,107,10  
     COMBOBOX        IDC_CURVETYPE,120,20,76,76,CBS_DROPDOWNLIST | WS_VSCROLL |  
                     WS_TABSTOP  
     EDITTEXT        IDC_ALTCURVEHIGH,120,36,76,12,ES_AUTOHSCROLL | ES_NUMBER  
     EDITTEXT        IDC_ALTCURVELOW,120,52,76,12,ES_AUTOHSCROLL | ES_NUMBER  
     CONTROL         "Enable automatic minimum relative quality",IDC_USEAUTO,  
                     "Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,72,146,10  
     EDITTEXT        IDC_AUTOSTR,120,84,76,12,ES_AUTOHSCROLL | ES_NUMBER  
     EDITTEXT        IDC_MINQUAL,120,100,76,12,ES_AUTOHSCROLL | ES_NUMBER  
     CONTROL         "Enable automatic bonus bias calculation",  
                     IDC_USEAUTOBONUS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,  
                     16,124,143,10  
     EDITTEXT        IDC_BONUSBIAS,120,136,76,12,ES_AUTOHSCROLL | ES_NUMBER  
     LTEXT           "Minimum relative quality %:",IDC_STATIC,20,100,96,12,  
                     SS_CENTERIMAGE  
     LTEXT           "High distance from average %:",IDC_STATIC,16,36,100,12,  
                     SS_CENTERIMAGE  
     LTEXT           "Low distance from average %:",IDC_STATIC,16,52,100,12,  
                     SS_CENTERIMAGE  
     LTEXT           "Strength %:",IDC_STATIC,20,84,96,12,SS_CENTERIMAGE  
     LTEXT           "Manually set bonus bias:",IDC_STATIC,20,136,96,12,  
                     SS_CENTERIMAGE  
     LTEXT           "Curve aggression:",IDC_STATIC,16,20,80,12,  
                     SS_CENTERIMAGE  
 END  
   
484  IDD_RC_CBR DIALOG DISCARDABLE  0, 0, 212, 212  IDD_RC_CBR DIALOG DISCARDABLE  0, 0, 212, 212
485  STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU  STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
486  CAPTION "CBR"  CAPTION "CBR"
# Line 701  Line 668 
668          BOTTOMMARGIN, 158          BOTTOMMARGIN, 158
669      END      END
670    
     IDD_RC_2PASS2_ALT, DIALOG  
     BEGIN  
         LEFTMARGIN, 7  
         RIGHTMARGIN, 193  
         TOPMARGIN, 7  
     END  
   
671      IDD_RC_CBR, DIALOG      IDD_RC_CBR, DIALOG
672      BEGIN      BEGIN
673          LEFTMARGIN, 7          LEFTMARGIN, 7
# Line 769  Line 729 
729    
730  STRINGTABLE DISCARDABLE  STRINGTABLE DISCARDABLE
731  BEGIN  BEGIN
     IDC_ALTCURVELOW         "Distance from the average framesize where the best quality will be applied"  
     IDC_MINQUAL             "The minimum produced quality in relation to the best produced quality"  
732      IDC_INTERLACING         "Enables interlaced frame support - only use if your source contains interlacing artifacts (i.e. fields instead of progressive frames)"      IDC_INTERLACING         "Enables interlaced frame support - only use if your source contains interlacing artifacts (i.e. fields instead of progressive frames)"
733      IDC_OVERDEG             "How much of the overflow the codec can eat into during oversized sections - larger values will bridge the gap faster"      IDC_OVERDEG             "How much of the overflow the codec can eat into during oversized sections - larger values will bridge the gap faster"
734      IDC_MAXBFRAMES          "Maximum number of sequential B-frames. When set to < 0 the original IP-frame encoder is used."      IDC_MAXBFRAMES          "Maximum number of sequential B-frames. When set to < 0 the original IP-frame encoder is used."
# Line 846  Line 804 
804    
805  STRINGTABLE DISCARDABLE  STRINGTABLE DISCARDABLE
806  BEGIN  BEGIN
     IDC_USEALT              "Use Foxer's alternative 2-pass curve system (still uses bias and boost information from other 2-pass tab)"  
     IDC_AUTOSTR             "How much influence a poor desired quality (file size) has on minimum relative quality"  
     IDC_BONUSBIAS           "The percentage of the bonus that will be applied with bias (the rest is proportionally distributed)"  
     IDC_CURVETYPE           "How aggressively the curve affects bitrate distribution"  
     IDC_ALTCURVEHIGH        "Distance from the average framesize where the minimum relative quality will be applied"  
 END  
   
 STRINGTABLE DISCARDABLE  
 BEGIN  
807      IDC_QPEL                "Use Quarter PixEL resolution for encoding for a more precise motion estimation"      IDC_QPEL                "Use Quarter PixEL resolution for encoding for a more precise motion estimation"
808      IDC_CHROMAME            "Use chroma information to detect motion (slow!)"      IDC_CHROMAME            "Use chroma information to detect motion (slow!)"
809      IDC_BQUANTOFFSET        "B-frame quantizer offset from last p-frame quantizer; refer to b-frame quant ratio (above)"      IDC_BQUANTOFFSET        "B-frame quantizer offset from last p-frame quantizer; refer to b-frame quant ratio (above)"

Legend:
Removed from v.1051  
changed lines
  Added in v.1052

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