[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 889, Sat Feb 22 08:24:01 2003 UTC revision 1294, Sun Dec 21 16:19:41 2003 UTC
# Line 1  Line 1 
1    /*****************************************************************************
2     *
3     *  XVID MPEG-4 VIDEO CODEC
4     *  - VFW configuration header  -
5     *
6     *  Copyright(C) 2002-2003 Anonymous <xvid-devel@xvid.org>
7     *
8     *  This program is free software ; you can redistribute it and/or modify
9     *  it under the terms of the GNU General Public License as published by
10     *  the Free Software Foundation ; either version 2 of the License, or
11     *  (at your option) any later version.
12     *
13     *  This program is distributed in the hope that it will be useful,
14     *  but WITHOUT ANY WARRANTY ; without even the implied warranty of
15     *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     *  GNU General Public License for more details.
17     *
18     *  You should have received a copy of the GNU General Public License
19     *  along with this program ; if not, write to the Free Software
20     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21     *
22     * $Id: config.h,v 1.1.2.15 2003-12-21 16:15:04 Isibaar Exp $
23     *
24     ****************************************************************************/
25  #ifndef _CONFIG_H_  #ifndef _CONFIG_H_
26  #define _CONFIG_H_  #define _CONFIG_H_
27    
28  #include <windows.h>  #include <windows.h>
29    #include "vfwext.h"
30    
31    extern HINSTANCE g_hInst;
 HINSTANCE hInst;  
 HWND hTooltip;  
32    
33    
34  /* small hack */  /* small hack */
# Line 16  Line 39 
39  /* one kilobit */  /* one kilobit */
40  #define CONFIG_KBPS 1000  #define CONFIG_KBPS 1000
41    
42    /* min/max bitrate when not specified by profile */
43    #define DEFAULT_MIN_KBPS    16
44    #define DEFAULT_MAX_KBPS    10000
45    
46  /* registry stuff */  /* registry stuff */
47  #define XVID_REG_KEY    HKEY_CURRENT_USER  #define XVID_REG_KEY    HKEY_CURRENT_USER
48  #define XVID_REG_PARENT "Software\\GNU"  #define XVID_REG_PARENT "Software\\GNU"
# Line 27  Line 54 
54  #define XVID_SPECIAL_BUILD      "(Vanilla CVS Build)"  #define XVID_SPECIAL_BUILD      "(Vanilla CVS Build)"
55    
56  /* constants */  /* constants */
57  #define CONFIG_HINTFILE         "\\hintfile.mvh"  #define CONFIG_2PASS_FILE "\\video.pass"
 #define CONFIG_2PASS_1_FILE "\\video.stats"  
 #define CONFIG_2PASS_2_FILE "\\videogk.stats"  
   
 /* property sheets - sheets can be reordered here */  
 #define DLG_COUNT               6  
   
 #define DLG_GLOBAL              0  
 #define DLG_QUANT               1  
 #define DLG_2PASS               2  
 #define DLG_2PASSALT    3  
 #define DLG_CREDITS             4  
 #define DLG_CPU                 5  
58    
59  /* codec modes */  /* codec modes */
60  #define DLG_MODE_CBR                    0  #define RC_MODE_1PASS          0
61  #define DLG_MODE_VBR_QUAL               1  #define RC_MODE_2PASS1         1
62  #define DLG_MODE_VBR_QUANT              2  #define RC_MODE_2PASS2         2
63  #define DLG_MODE_2PASS_1                3  #define RC_MODE_NULL           3
 #define DLG_MODE_2PASS_2_EXT    4  
 #define DLG_MODE_2PASS_2_INT    5  
 #define DLG_MODE_NULL                   6  
64    
65  /* quantizer modes */  #define RC_ZONE_WEIGHT         0
66  #define QUANT_MODE_H263                 0  #define RC_ZONE_QUANT          1
 #define QUANT_MODE_MPEG                 1  
 #define QUANT_MODE_CUSTOM               2  
 #define QUANT_MODE_MOD                  3  
 #define QUANT_MODE_MOD_NEW              4  
   
 /* credits modes */  
 #define CREDITS_MODE_RATE               0  
 #define CREDITS_MODE_QUANT              1  
 #define CREDITS_MODE_SIZE               2  
67    
68  /* vhq modes */  /* vhq modes */
69  #define VHQ_OFF                                 0  #define VHQ_OFF                                 0
# Line 69  Line 72 
72  #define VHQ_MEDIUM_SEARCH               3  #define VHQ_MEDIUM_SEARCH               3
73  #define VHQ_WIDE_SEARCH                 4  #define VHQ_WIDE_SEARCH                 4
74    
75  #define CREDITS_START                   1  /* quantizer modes */
76  #define CREDITS_END                             2  #define QUANT_MODE_H263                 0
77    #define QUANT_MODE_MPEG                 1
78    #define QUANT_MODE_CUSTOM               2
79    
80    
81    #define MAX_ZONES    64
82    typedef struct
83    {
84        int frame;
85    
86        int type;
87        int mode;
88        int weight;
89        int quant;
90    
91        unsigned int greyscale;
92        unsigned int chroma_opt;
93        unsigned int bvop_threshold;
94    } zone_t;
95    
 #define RAD2DEG 57.295779513082320876798154814105  
 #define DEG2RAD 0.017453292519943295769236907684886  
96    
97  typedef struct  typedef struct
98  {  {
99  /********** ATTENTION **********/  /********** ATTENTION **********/
100          int mode;                                       // Vidomi directly accesses these vars          int mode;                                       /* Vidomi directly accesses these vars */
101          int rc_bitrate;                         //          int bitrate;
102          int desired_size;                       // please try to avoid modifications here          int desired_size;                       /* please try to avoid modifications here */
103          char stats1[MAX_PATH];          //          char stats[MAX_PATH];
104  /*******************************/  /*******************************/
105        int use_2pass_bitrate;        /* use bitrate for 2pass2 (instead of desired size) */
106    
107          int quality;      /* profile  */
108          int     quant;      char profile_name[MAX_PATH];
109          int rc_reaction_delay_factor;          int profile;            /* used internally; *not* written to registry */
         int rc_averaging_period;  
         int rc_buffer;  
110    
         int motion_search;  
111          int quant_type;          int quant_type;
112          int fourcc_used;          BYTE qmatrix_intra[64];
113          int vhq_mode;          BYTE qmatrix_inter[64];
         int max_key_interval;  
         int min_key_interval;  
114          int lum_masking;          int lum_masking;
115          int interlacing;          int interlacing;
116          int qpel;          int qpel;
117          int gmc;          int gmc;
118          int chromame;          int reduced_resolution;
119  //added by koepi for gruel's greyscale_mode      int use_bvop;
         int greyscale;  
 // end of koepi's additions  
120          int max_bframes;          int max_bframes;
121          int bquant_ratio;          int bquant_ratio;
122          int bquant_offset;          int bquant_offset;
123          int packed;          int packed;
124          int dx50bvop;          int closed_gov;
125          int debug;          int display_aspect_ratio;                               /* aspect ratio */
126          int reduced_resolution;          int ar_x, ar_y;                                                 /* picture aspect ratio */
127            int par_x, par_y;                                               /* custom pixel aspect ratio */
128            int ar_mode;                                                    /* picture/pixel AR */
129    
130        /* zones */
131        int num_zones;
132        zone_t zones[MAX_ZONES];
133        int cur_zone;        /* used internally; *not* written to registry */
134    
135          int min_iquant;      /* single pass */
136          int max_iquant;          int rc_reaction_delay_factor;
137          int min_pquant;          int rc_averaging_period;
138          int max_pquant;          int rc_buffer;
         BYTE qmatrix_intra[64];  
         BYTE qmatrix_inter[64];  
139    
140        /* 2pass1 */
141            int discard1pass;
142    
143        /* 2pass2 */
144          int keyframe_boost;          int keyframe_boost;
145  //added by koepi for new 2pass curve treatment          int kfthreshold;
         int kftreshold;  
146          int kfreduction;          int kfreduction;
 // end of koepi's additions  
         int discard1pass;  
         int dummy2pass;  
147          int curve_compression_high;          int curve_compression_high;
148          int curve_compression_low;          int curve_compression_low;
149          int use_alt_curve;          int overflow_control_strength;
         int alt_curve_use_auto;  
         int alt_curve_auto_str;  
         int alt_curve_use_auto_bonus_bias;  
         int alt_curve_bonus_bias;  
         int alt_curve_type;  
         int alt_curve_high_dist;  
         int alt_curve_low_dist;  
         int alt_curve_min_rel_qual;  
         int twopass_max_bitrate;  
150          int twopass_max_overflow_improvement;          int twopass_max_overflow_improvement;
151          int twopass_max_overflow_degradation;          int twopass_max_overflow_degradation;
         int bitrate_payback_delay;  
         int bitrate_payback_method;  
         int hinted_me;  
         char hintfile[MAX_PATH];  
         char stats2[MAX_PATH];  
   
         int credits_start;  
         int credits_start_begin;  
         int credits_start_end;  
         int credits_end;  
         int credits_end_begin;  
         int credits_end_end;  
   
 //added by koepi for gruel's greyscale_mode  
         int credits_greyscale;  
 // end of koepi's additions  
         int credits_mode;  
         int credits_rate;  
         int credits_quant_i;  
         int credits_quant_p;  
         int credits_start_size;  
         int credits_end_size;  
   
         int num_threads;  
         int chroma_opt;  
152    
153        /* motion */
154            int motion_search;
155            int vhq_mode;
156            int chromame;
157            int cartoon_mode;
158            int turbo;
159        int max_key_interval;
160          int frame_drop_ratio;          int frame_drop_ratio;
161    
162          /* decoder */      /* quant */
163            int min_iquant;
164            int max_iquant;
165            int min_pquant;
166            int max_pquant;
167            int min_bquant;
168            int max_bquant;
169        int trellis_quant;
170    
171          int deblock_y;      /* debug */
172          int deblock_uv;          int num_threads;
173        int fourcc_used;
174        int vop_debug;
175        int debug;
176        int display_status;
177    
 //      char build[50];  
178          DWORD cpu;          DWORD cpu;
179          float fquant;  
180        /* internal */
181        int ci_valid;
182        VFWEXT_CONFIGURE_INFO_T ci;
183    
184          BOOL save;          BOOL save;
185  } CONFIG;  } CONFIG;
186    
187  typedef struct PROPSHEETINFO  typedef struct PROPSHEETINFO
188  {  {
189          int page;          int idd;
190          CONFIG * config;          CONFIG * config;
191  } PROPSHEETINFO;  } PROPSHEETINFO;
192    
# Line 199  Line 204 
204          char* def;          char* def;
205  } REG_STR;  } REG_STR;
206    
207  void config_reg_get(CONFIG *);  
208  void config_reg_set(CONFIG *);  #define PROFILE_ADAPTQUANT  0x00000001
209  void config_reg_default(CONFIG *);  #define PROFILE_BVOP            0x00000002
210  int config_get_int(HWND, INT, int);  #define PROFILE_MPEGQUANT       0x00000004
211  int config_get_uint(HWND, UINT, int);  #define PROFILE_INTERLACE       0x00000008
212  void main_download(HWND, CONFIG *);  #define PROFILE_QPEL            0x00000010
213  void main_slider(HWND, CONFIG *);  #define PROFILE_GMC                     0x00000020
214  void main_value(HWND, CONFIG *);  #define PROFILE_REDUCED         0x00000040      /* dynamic resolution conversion */
215  void adv_dialog(HWND, CONFIG *);  
216  void adv_mode(HWND, int);  #define PROFILE_AS                      (PROFILE_ADAPTQUANT|PROFILE_BVOP|PROFILE_MPEGQUANT|PROFILE_INTERLACE|PROFILE_QPEL|PROFILE_GMC)
217  void adv_upload(HWND, int, CONFIG *);  #define PROFILE_ARTS            (PROFILE_ADAPTQUANT|PROFILE_REDUCED)
218  void adv_download(HWND, int, CONFIG *);  
219  void quant_upload(HWND, CONFIG *);  static const int PARS[][2] = {
220  void quant_download(HWND, CONFIG *);          {1, 1},
221  BOOL CALLBACK enum_tooltips(HWND, LPARAM);          {12, 11},
222            {10, 11},
223            {16, 11},
224            {40, 33},
225            {0, 0},
226    };
227    
228    
229    
230    
231    typedef struct
232    {
233            char * name;
234        int id;         /* mpeg-4 profile id; iso/iec 14496-2:2001 table G-1 */
235            int width;
236            int height;
237            int fps;
238            int max_objects;
239            int total_vmv_buffer_sz;    /* macroblock memory; when BVOPS=false, vmv = 2*vcv; when BVOPS=true,  vmv = 3*vcv*/
240            int max_vmv_buffer_sz;      /* max macroblocks per vop */
241            int vcv_decoder_rate;   /* macroblocks decoded per second */
242            int max_acpred_mbs;     /* percentage */
243            int max_vbv_size;                       /*    max vbv size (bits) 16368 bits */
244            int max_video_packet_length; /* bits */
245            int max_bitrate;                        /* kbits/s */
246            unsigned int flags;
247    } profile_t;
248    
249    
250    extern const profile_t profiles[];
251    
252    
253    void config_reg_get(CONFIG * config);
254    void config_reg_set(CONFIG * config);
255    
256  BOOL CALLBACK main_proc(HWND, UINT, WPARAM, LPARAM);  BOOL CALLBACK main_proc(HWND, UINT, WPARAM, LPARAM);
 BOOL CALLBACK adv_proc(HWND, UINT, WPARAM, LPARAM);  
 BOOL CALLBACK quantmatrix_proc(HWND, UINT, WPARAM, LPARAM);  
257  BOOL CALLBACK about_proc(HWND, UINT, WPARAM, LPARAM);  BOOL CALLBACK about_proc(HWND, UINT, WPARAM, LPARAM);
258    
259    
260  #endif /* _CONFIG_H_ */  #endif /* _CONFIG_H_ */

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

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