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

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

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

revision 1061, Tue Jun 10 10:07:03 2003 UTC revision 1329, Sat Jan 24 13:36:00 2004 UTC
# Line 19  Line 19 
19   *  along with this program ; if not, write to the Free Software   *  along with this program ; if not, write to the Free Software
20   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21   *   *
22   * $Id: config.h,v 1.1.2.8 2003-06-10 10:07:03 suxen_drol Exp $   * $Id: config.h,v 1.1.2.19 2004-01-24 13:36:00 syskin Exp $
23   *   *
24   ****************************************************************************/   ****************************************************************************/
25  #ifndef _CONFIG_H_  #ifndef _CONFIG_H_
# Line 27  Line 27 
27    
28  #include <windows.h>  #include <windows.h>
29  #include "vfwext.h"  #include "vfwext.h"
30    #include <xvid.h>
31    
32  extern HINSTANCE g_hInst;  extern HINSTANCE g_hInst;
33    
# Line 42  Line 43 
43  /* min/max bitrate when not specified by profile */  /* min/max bitrate when not specified by profile */
44  #define DEFAULT_MIN_KBPS    16  #define DEFAULT_MIN_KBPS    16
45  #define DEFAULT_MAX_KBPS    10000  #define DEFAULT_MAX_KBPS    10000
46    #define DEFAULT_QUANT           400
47    
48  /* registry stuff */  /* registry stuff */
49  #define XVID_REG_KEY    HKEY_CURRENT_USER  #define XVID_REG_KEY    HKEY_CURRENT_USER
# Line 83  Line 85 
85  {  {
86      int frame;      int frame;
87    
88        int type;
89      int mode;      int mode;
90      int weight;      int weight;
91      int quant;      int quant;
# Line 102  Line 105 
105          char stats[MAX_PATH];          char stats[MAX_PATH];
106  /*******************************/  /*******************************/
107      int use_2pass_bitrate;        /* use bitrate for 2pass2 (instead of desired size) */      int use_2pass_bitrate;        /* use bitrate for 2pass2 (instead of desired size) */
108            int desired_quant;                      /* for one-pass constant quant */
109    
110      /* profile  */      /* profile  */
111      char profile_name[MAX_PATH];      char profile_name[MAX_PATH];
# Line 121  Line 125 
125          int bquant_offset;          int bquant_offset;
126          int packed;          int packed;
127          int closed_gov;          int closed_gov;
128            int display_aspect_ratio;                               /* aspect ratio */
129            int ar_x, ar_y;                                                 /* picture aspect ratio */
130            int par_x, par_y;                                               /* custom pixel aspect ratio */
131            int ar_mode;                                                    /* picture/pixel AR */
132    
133      /* zones */      /* zones */
134      int num_zones;      int num_zones;
# Line 137  Line 145 
145    
146      /* 2pass2 */      /* 2pass2 */
147          int keyframe_boost;          int keyframe_boost;
148          int kftreshold;          int kfthreshold;
149          int kfreduction;          int kfreduction;
150          int curve_compression_high;          int curve_compression_high;
151          int curve_compression_low;          int curve_compression_low;
152            int overflow_control_strength;
153          int twopass_max_overflow_improvement;          int twopass_max_overflow_improvement;
154          int twopass_max_overflow_degradation;          int twopass_max_overflow_degradation;
         int bitrate_payback_delay;  
         int bitrate_payback_method;  
155    
156      /* motion */      /* motion */
157          int motion_search;          int motion_search;
158          int vhq_mode;          int vhq_mode;
159          int chromame;          int chromame;
160            int cartoon_mode;
161            int turbo;
162      int max_key_interval;      int max_key_interval;
         int min_key_interval;  
163          int frame_drop_ratio;          int frame_drop_ratio;
164    
165      /* quant */      /* quant */
# Line 211  Line 219 
219  #define PROFILE_AS                      (PROFILE_ADAPTQUANT|PROFILE_BVOP|PROFILE_MPEGQUANT|PROFILE_INTERLACE|PROFILE_QPEL|PROFILE_GMC)  #define PROFILE_AS                      (PROFILE_ADAPTQUANT|PROFILE_BVOP|PROFILE_MPEGQUANT|PROFILE_INTERLACE|PROFILE_QPEL|PROFILE_GMC)
220  #define PROFILE_ARTS            (PROFILE_ADAPTQUANT|PROFILE_REDUCED)  #define PROFILE_ARTS            (PROFILE_ADAPTQUANT|PROFILE_REDUCED)
221    
222    static const int PARS[][2] = {
223            {1, 1},
224            {12, 11},
225            {10, 11},
226            {16, 11},
227            {40, 33},
228            {0, 0},
229    };
230    
231    
232    
233    
234  typedef struct  typedef struct
235  {  {
# Line 240  Line 259 
259  BOOL CALLBACK main_proc(HWND, UINT, WPARAM, LPARAM);  BOOL CALLBACK main_proc(HWND, UINT, WPARAM, LPARAM);
260  BOOL CALLBACK about_proc(HWND, UINT, WPARAM, LPARAM);  BOOL CALLBACK about_proc(HWND, UINT, WPARAM, LPARAM);
261    
   
262  #endif /* _CONFIG_H_ */  #endif /* _CONFIG_H_ */

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

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