[cvs] / xvidcore / vfw / src / config.h Repository:
ViewVC logotype

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

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

revision 1.1, Sat Feb 22 08:24:01 2003 UTC revision 1.1.2.16, Fri Jan 2 13:18:28 2004 UTC
# Line 0  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$
23     *
24     ****************************************************************************/
25    #ifndef _CONFIG_H_
26    #define _CONFIG_H_
27    
28    #include <windows.h>
29    #include "vfwext.h"
30    #include <xvid.h>
31    
32    extern HINSTANCE g_hInst;
33    
34    
35    /* small hack */
36    #ifndef IDC_HAND
37    #define IDC_HAND        MAKEINTRESOURCE(32649)
38    #endif
39    
40    /* one kilobit */
41    #define CONFIG_KBPS 1000
42    
43    /* min/max bitrate when not specified by profile */
44    #define DEFAULT_MIN_KBPS    16
45    #define DEFAULT_MAX_KBPS    10000
46    
47    /* registry stuff */
48    #define XVID_REG_KEY    HKEY_CURRENT_USER
49    #define XVID_REG_PARENT "Software\\GNU"
50    #define XVID_REG_CHILD  "XviD"
51    #define XVID_REG_CLASS  "config"
52    
53    #define XVID_BUILD              __TIME__ ", " __DATE__
54    #define XVID_WEBSITE    "http://www.xvid.org/"
55    #define XVID_SPECIAL_BUILD      "(Vanilla CVS Build)"
56    
57    /* constants */
58    #define CONFIG_2PASS_FILE "\\video.pass"
59    
60    /* codec modes */
61    #define RC_MODE_1PASS          0
62    #define RC_MODE_2PASS1         1
63    #define RC_MODE_2PASS2         2
64    #define RC_MODE_NULL           3
65    
66    #define RC_ZONE_WEIGHT         0
67    #define RC_ZONE_QUANT          1
68    
69    /* vhq modes */
70    #define VHQ_OFF                                 0
71    #define VHQ_MODE_DECISION               1
72    #define VHQ_LIMITED_SEARCH              2
73    #define VHQ_MEDIUM_SEARCH               3
74    #define VHQ_WIDE_SEARCH                 4
75    
76    /* quantizer modes */
77    #define QUANT_MODE_H263                 0
78    #define QUANT_MODE_MPEG                 1
79    #define QUANT_MODE_CUSTOM               2
80    
81    
82    #define MAX_ZONES    64
83    typedef struct
84    {
85        int frame;
86    
87        int type;
88        int mode;
89        int weight;
90        int quant;
91    
92        unsigned int greyscale;
93        unsigned int chroma_opt;
94        unsigned int bvop_threshold;
95    } zone_t;
96    
97    
98    typedef struct
99    {
100    /********** ATTENTION **********/
101            int mode;                                       /* Vidomi directly accesses these vars */
102            int bitrate;
103            int desired_size;                       /* please try to avoid modifications here */
104            char stats[MAX_PATH];
105    /*******************************/
106        int use_2pass_bitrate;        /* use bitrate for 2pass2 (instead of desired size) */
107    
108        /* profile  */
109        char profile_name[MAX_PATH];
110            int profile;            /* used internally; *not* written to registry */
111    
112        int quant_type;
113            BYTE qmatrix_intra[64];
114            BYTE qmatrix_inter[64];
115            int lum_masking;
116            int interlacing;
117            int qpel;
118            int gmc;
119            int reduced_resolution;
120        int use_bvop;
121            int max_bframes;
122            int bquant_ratio;
123            int bquant_offset;
124            int packed;
125            int closed_gov;
126            int display_aspect_ratio;                               /* aspect ratio */
127            int ar_x, ar_y;                                                 /* picture aspect ratio */
128            int par_x, par_y;                                               /* custom pixel aspect ratio */
129            int ar_mode;                                                    /* picture/pixel AR */
130    
131        /* zones */
132        int num_zones;
133        zone_t zones[MAX_ZONES];
134        int cur_zone;        /* used internally; *not* written to registry */
135    
136        /* single pass */
137            int rc_reaction_delay_factor;
138            int rc_averaging_period;
139            int rc_buffer;
140    
141        /* 2pass1 */
142            int discard1pass;
143    
144        /* 2pass2 */
145            int keyframe_boost;
146            int kfthreshold;
147            int kfreduction;
148            int curve_compression_high;
149            int curve_compression_low;
150            int overflow_control_strength;
151            int twopass_max_overflow_improvement;
152            int twopass_max_overflow_degradation;
153    
154        /* motion */
155            int motion_search;
156            int vhq_mode;
157            int chromame;
158            int cartoon_mode;
159            int turbo;
160        int max_key_interval;
161            int frame_drop_ratio;
162    
163        /* quant */
164            int min_iquant;
165            int max_iquant;
166            int min_pquant;
167            int max_pquant;
168            int min_bquant;
169            int max_bquant;
170        int trellis_quant;
171    
172        /* debug */
173            int num_threads;
174        int fourcc_used;
175        int vop_debug;
176        int debug;
177        int display_status;
178    
179            DWORD cpu;
180    
181        /* internal */
182        int ci_valid;
183        VFWEXT_CONFIGURE_INFO_T ci;
184    
185            BOOL save;
186    } CONFIG;
187    
188    typedef struct PROPSHEETINFO
189    {
190            int idd;
191            CONFIG * config;
192    } PROPSHEETINFO;
193    
194    typedef struct REG_INT
195    {
196            char* reg_value;
197            int* config_int;
198            int def;
199    } REG_INT;
200    
201    typedef struct REG_STR
202    {
203            char* reg_value;
204            char* config_str;
205            char* def;
206    } REG_STR;
207    
208    
209    #define PROFILE_ADAPTQUANT  0x00000001
210    #define PROFILE_BVOP            0x00000002
211    #define PROFILE_MPEGQUANT       0x00000004
212    #define PROFILE_INTERLACE       0x00000008
213    #define PROFILE_QPEL            0x00000010
214    #define PROFILE_GMC                     0x00000020
215    #define PROFILE_REDUCED         0x00000040      /* dynamic resolution conversion */
216    
217    #define PROFILE_AS                      (PROFILE_ADAPTQUANT|PROFILE_BVOP|PROFILE_MPEGQUANT|PROFILE_INTERLACE|PROFILE_QPEL|PROFILE_GMC)
218    #define PROFILE_ARTS            (PROFILE_ADAPTQUANT|PROFILE_REDUCED)
219    
220    static const int PARS[][2] = {
221            {1, 1},
222            {12, 11},
223            {10, 11},
224            {16, 11},
225            {40, 33},
226            {0, 0},
227    };
228    
229    
230    
231    
232    typedef struct
233    {
234            char * name;
235        int id;         /* mpeg-4 profile id; iso/iec 14496-2:2001 table G-1 */
236            int width;
237            int height;
238            int fps;
239            int max_objects;
240            int total_vmv_buffer_sz;    /* macroblock memory; when BVOPS=false, vmv = 2*vcv; when BVOPS=true,  vmv = 3*vcv*/
241            int max_vmv_buffer_sz;      /* max macroblocks per vop */
242            int vcv_decoder_rate;   /* macroblocks decoded per second */
243            int max_acpred_mbs;     /* percentage */
244            int max_vbv_size;                       /*    max vbv size (bits) 16368 bits */
245            int max_video_packet_length; /* bits */
246            int max_bitrate;                        /* kbits/s */
247            unsigned int flags;
248    } profile_t;
249    
250    
251    extern const profile_t profiles[];
252    
253    
254    void config_reg_get(CONFIG * config);
255    void config_reg_set(CONFIG * config);
256    
257    BOOL CALLBACK main_proc(HWND, UINT, WPARAM, LPARAM);
258    BOOL CALLBACK about_proc(HWND, UINT, WPARAM, LPARAM);
259    
260    #endif /* _CONFIG_H_ */

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.1.2.16

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