[svn] / trunk / vfw / src / config.h Repository:
ViewVC logotype

Diff of /trunk/vfw/src/config.h

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

revision 3, Fri Mar 8 02:46:11 2002 UTC revision 102, Fri Apr 5 14:42:37 2002 UTC
# Line 5  Line 5 
5    
6    
7  HINSTANCE hInst;  HINSTANCE hInst;
8    HWND hTooltip;
9    
10    
11  /* small hack */  /* small hack */
# Line 17  Line 18 
18    
19  /* registry stuff */  /* registry stuff */
20  #define XVID_REG_KEY    HKEY_CURRENT_USER  #define XVID_REG_KEY    HKEY_CURRENT_USER
21  #define XVID_REG_SUBKEY "Software\\GNU\\XviD"  #define XVID_REG_PARENT "Software\\GNU"
22    #define XVID_REG_CHILD  "XviD"
23  #define XVID_REG_CLASS  "config"  #define XVID_REG_CLASS  "config"
24    
25    #define XVID_BUILD              __TIME__ ", " __DATE__
26  #define XVID_WEBSITE    "http://www.xvid.org"  #define XVID_WEBSITE    "http://www.xvid.org"
27    
28  /* constants */  /* constants */
29    #define CONFIG_HINTFILE         "\\hintfile.mvh"
30  #define CONFIG_2PASS_1_FILE "\\video.stats"  #define CONFIG_2PASS_1_FILE "\\video.stats"
31  #define CONFIG_2PASS_2_FILE "\\videogk.stats"  #define CONFIG_2PASS_2_FILE "\\videogk.stats"
32    
33  /* property sheets - sheets can be reordered here */  /* property sheets - sheets can be reordered here */
34  #define DLG_COUNT               5  #define DLG_COUNT               6
35    
36  #define DLG_MAIN                0  #define DLG_GLOBAL              0
37  #define DLG_ADV                 1  #define DLG_QUANT               1
38  #define DLG_DEBUG               2  #define DLG_2PASS               2
39  #define DLG_CPU                 3  #define DLG_2PASSALT    3
40  #define DLG_ABOUT               4  #define DLG_CREDITS             4
41    #define DLG_CPU                 5
42    
43  /* codec modes */  /* codec modes */
44  #define DLG_MODE_CBR                    0  #define DLG_MODE_CBR                    0
# Line 48  Line 53 
53  #define QUANT_MODE_H263                 0  #define QUANT_MODE_H263                 0
54  #define QUANT_MODE_MPEG                 1  #define QUANT_MODE_MPEG                 1
55  #define QUANT_MODE_CUSTOM               2  #define QUANT_MODE_CUSTOM               2
56    #define QUANT_MODE_MOD                  3
57    
58  /* credits modes */  /* credits modes */
59  #define CREDITS_MODE_RATE               0  #define CREDITS_MODE_RATE               0
# Line 57  Line 63 
63  #define CREDITS_START                   1  #define CREDITS_START                   1
64  #define CREDITS_END                             2  #define CREDITS_END                             2
65    
66    #define RAD2DEG 57.295779513082320876798154814105
67    #define DEG2RAD 0.017453292519943295769236907684886
68    
69  typedef struct  typedef struct
70  {  {
# Line 64  Line 72 
72          int bitrate;          int bitrate;
73          int quality;          int quality;
74          int     quant;          int     quant;
75            int rc_buffersize;
76    
77          char stats1[MAX_PATH];          int motion_search;
78          char stats2[MAX_PATH];          int quant_type;
79          int discard1pass;          int fourcc_used;
80          int dummy2pass;          int max_key_interval;
81          int desired_size;          int lum_masking;
82            int interlacing;
83    
84          int min_iquant;          int min_iquant;
85          int max_iquant;          int max_iquant;
86            int min_pquant;
87            int max_pquant;
88            BYTE qmatrix_intra[64];
89            BYTE qmatrix_inter[64];
90    
91            int desired_size;
92          int keyframe_boost;          int keyframe_boost;
93          int min_key_interval;          int min_key_interval;
94          int bitrate_payback_delay;          int discard1pass;
95          int bitrate_payback_method;          int dummy2pass;
96          int curve_compression_high;          int curve_compression_high;
97          int curve_compression_low;          int curve_compression_low;
98            int use_alt_curve;
99          float fquant;          int alt_curve_use_auto;
100            int alt_curve_auto_str;
101            int alt_curve_use_auto_bonus_bias;
102            int alt_curve_bonus_bias;
103            int alt_curve_type;
104            int alt_curve_high_dist;
105            int alt_curve_low_dist;
106            int alt_curve_min_rel_qual;
107            int bitrate_payback_delay;
108            int bitrate_payback_method;
109            int hinted_me;
110            char hintfile[MAX_PATH];
111            char stats1[MAX_PATH];
112            char stats2[MAX_PATH];
113    
114          int credits_start;          int credits_start;
115          int credits_start_begin;          int credits_start_begin;
# Line 97  Line 125 
125          int credits_start_size;          int credits_start_size;
126          int credits_end_size;          int credits_end_size;
127    
128          int motion_search;  //      char build[50];
         int quant_type;  
         int max_key_interval;  
   
         int rc_buffersize;  
   
         int min_quant;  
         int max_quant;  
         int lum_masking;  
   
         int fourcc_used;  
   
         BYTE qmatrix_intra[64];  
         BYTE qmatrix_inter[64];  
   
129          DWORD cpu;          DWORD cpu;
130            float fquant;
131          BOOL save;          BOOL save;
   
132  } CONFIG;  } CONFIG;
133    
   
134  typedef struct PROPSHEETINFO  typedef struct PROPSHEETINFO
135  {  {
136          int page;          int page;
137          CONFIG * config;          CONFIG * config;
138  } PROPSHEETINFO;  } PROPSHEETINFO;
139    
140    typedef struct REG_INT
141    {
142            char* reg_value;
143            int* config_int;
144            int def;
145    } REG_INT;
146    
147    typedef struct REG_STR
148    {
149            char* reg_value;
150            char* config_str;
151            char* def;
152    } REG_STR;
153    
154  void config_reg_get(CONFIG *);  void config_reg_get(CONFIG *);
155  void config_reg_set(CONFIG *);  void config_reg_set(CONFIG *);
156  void config_mode(HWND);  void config_reg_default(CONFIG *);
 void config_upload(HWND, int, CONFIG *);  
 void config_download(HWND, int, CONFIG *);  
 void config_slider(HWND, CONFIG *);  
 void config_value(HWND, CONFIG *);  
157  int config_get_int(HWND, UINT, int);  int config_get_int(HWND, UINT, int);
158  void credits_controls(HWND);  void main_download(HWND, CONFIG *);
159    void main_slider(HWND, CONFIG *);
160    void main_value(HWND, CONFIG *);
161    void adv_dialog(HWND, CONFIG *);
162    void adv_mode(HWND, int);
163    void adv_upload(HWND, int, CONFIG *);
164    void adv_download(HWND, int, CONFIG *);
165  void quant_upload(HWND, CONFIG *);  void quant_upload(HWND, CONFIG *);
166  void quant_download(HWND, CONFIG *);  void quant_download(HWND, CONFIG *);
167  BOOL CALLBACK config_proc(HWND, UINT, WPARAM, LPARAM);  BOOL CALLBACK enum_tooltips(HWND, LPARAM);
168  BOOL CALLBACK credits_proc(HWND, UINT, WPARAM, LPARAM);  BOOL CALLBACK main_proc(HWND, UINT, WPARAM, LPARAM);
169  BOOL CALLBACK twopass_proc(HWND, UINT, WPARAM, LPARAM);  BOOL CALLBACK adv_proc(HWND, UINT, WPARAM, LPARAM);
170  BOOL CALLBACK quantmatrix_proc(HWND, UINT, WPARAM, LPARAM);  BOOL CALLBACK quantmatrix_proc(HWND, UINT, WPARAM, LPARAM);
171    BOOL CALLBACK about_proc(HWND, UINT, WPARAM, LPARAM);
172    
173  #endif /* _CONFIG_H_ */  #endif /* _CONFIG_H_ */

Legend:
Removed from v.3  
changed lines
  Added in v.102

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