[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 983, Sat Apr 12 06:58:50 2003 UTC revision 1061, Tue Jun 10 10:07:03 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.8 2003-06-10 10:07:03 suxen_drol 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;  extern HINSTANCE g_hInst;
32    
# Line 14  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 28  Line 57 
57  #define CONFIG_2PASS_FILE "\\video.pass"  #define CONFIG_2PASS_FILE "\\video.pass"
58    
59  /* codec modes */  /* codec modes */
60  #define RC_MODE_CBR                             0  #define RC_MODE_1PASS          0
61  #define RC_MODE_VBR_QUAL                1       /* deprecated */  #define RC_MODE_2PASS1         1
62  #define RC_MODE_FIXED                   2  #define RC_MODE_2PASS2         2
63  #define RC_MODE_2PASS1                  3  #define RC_MODE_NULL           3
64  #define RC_MODE_2PASS2_EXT              4  
65  #define RC_MODE_2PASS2_INT              5  #define RC_ZONE_WEIGHT         0
66  #define RC_MODE_NULL                    6  #define RC_ZONE_QUANT          1
67    
68  /* vhq modes */  /* vhq modes */
69  #define VHQ_OFF                                 0  #define VHQ_OFF                                 0
# Line 49  Line 78 
78  #define QUANT_MODE_CUSTOM               2  #define QUANT_MODE_CUSTOM               2
79    
80    
81    #define MAX_ZONES    64
82    typedef struct
83    {
84        int frame;
85    
86        int mode;
87        int weight;
88        int quant;
89    
90        unsigned int greyscale;
91        unsigned int chroma_opt;
92        unsigned int bvop_threshold;
93    } zone_t;
94    
95    
96  typedef struct  typedef struct
97  {  {
98  /********** ATTENTION **********/  /********** ATTENTION **********/
99          int mode;                                       // Vidomi directly accesses these vars          int mode;                                       /* Vidomi directly accesses these vars */
100          int rc_bitrate;                         //          int bitrate;
101          int desired_size;                       // please try to avoid modifications here          int desired_size;                       /* please try to avoid modifications here */
102          char stats[MAX_PATH];           //          char stats[MAX_PATH];
103  /*******************************/  /*******************************/
104        int use_2pass_bitrate;        /* use bitrate for 2pass2 (instead of desired size) */
105    
106        /* profile  */
107      char profile_name[MAX_PATH];      char profile_name[MAX_PATH];
108          int profile;          int profile;            /* used internally; *not* written to registry */
   
         int quality;  
         int     quant;  
         int rc_reaction_delay_factor;  
         int rc_averaging_period;  
         int rc_buffer;  
109    
         int motion_search;  
110          int quant_type;          int quant_type;
111          int fourcc_used;          BYTE qmatrix_intra[64];
112          int vhq_mode;          BYTE qmatrix_inter[64];
         int max_key_interval;  
         int min_key_interval;  
113          int lum_masking;          int lum_masking;
114          int interlacing;          int interlacing;
115          int qpel;          int qpel;
116          int gmc;          int gmc;
117          int chromame;          int reduced_resolution;
         int greyscale;  
118      int use_bvop;      int use_bvop;
119          int max_bframes;          int max_bframes;
120          int bquant_ratio;          int bquant_ratio;
121          int bquant_offset;          int bquant_offset;
     int bvop_threshold;  
122          int packed;          int packed;
123          int closed_gov;          int closed_gov;
         int debug;  
         int reduced_resolution;  
124    
125          int min_iquant;      /* zones */
126          int max_iquant;      int num_zones;
127          int min_pquant;      zone_t zones[MAX_ZONES];
128          int max_pquant;      int cur_zone;        /* used internally; *not* written to registry */
         BYTE qmatrix_intra[64];  
         BYTE qmatrix_inter[64];  
129    
130        /* single pass */
131            int rc_reaction_delay_factor;
132            int rc_averaging_period;
133            int rc_buffer;
134    
135        /* 2pass1 */
136            int discard1pass;
137    
138        /* 2pass2 */
139          int keyframe_boost;          int keyframe_boost;
140          int kftreshold;          int kftreshold;
141          int kfreduction;          int kfreduction;
         int discard1pass;  
142          int curve_compression_high;          int curve_compression_high;
143          int curve_compression_low;          int curve_compression_low;
         int use_alt_curve;  
         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;  
144          int twopass_max_overflow_improvement;          int twopass_max_overflow_improvement;
145          int twopass_max_overflow_degradation;          int twopass_max_overflow_degradation;
146          int bitrate_payback_delay;          int bitrate_payback_delay;
147          int bitrate_payback_method;          int bitrate_payback_method;
         int hinted_me;  
   
         int num_threads;  
         int chroma_opt;  
148    
149        /* motion */
150            int motion_search;
151            int vhq_mode;
152            int chromame;
153        int max_key_interval;
154            int min_key_interval;
155          int frame_drop_ratio;          int frame_drop_ratio;
156    
157          /* decoder */      /* quant */
158            int min_iquant;
159            int max_iquant;
160            int min_pquant;
161            int max_pquant;
162            int min_bquant;
163            int max_bquant;
164        int trellis_quant;
165    
166  //      int deblock_y;      /* debug */
167  //      int deblock_uv;          int num_threads;
168        int fourcc_used;
169        int vop_debug;
170        int debug;
171        int display_status;
172    
173          DWORD cpu;          DWORD cpu;
174          float fquant;  
175        /* internal */
176        int ci_valid;
177        VFWEXT_CONFIGURE_INFO_T ci;
178    
179          BOOL save;          BOOL save;
180  } CONFIG;  } CONFIG;
181    
# Line 154  Line 200 
200  } REG_STR;  } REG_STR;
201    
202    
203    #define PROFILE_ADAPTQUANT  0x00000001
204    #define PROFILE_BVOP            0x00000002
205    #define PROFILE_MPEGQUANT       0x00000004
206    #define PROFILE_INTERLACE       0x00000008
207    #define PROFILE_QPEL            0x00000010
208    #define PROFILE_GMC                     0x00000020
209    #define PROFILE_REDUCED         0x00000040      /* dynamic resolution conversion */
210    
211    #define PROFILE_AS                      (PROFILE_ADAPTQUANT|PROFILE_BVOP|PROFILE_MPEGQUANT|PROFILE_INTERLACE|PROFILE_QPEL|PROFILE_GMC)
212    #define PROFILE_ARTS            (PROFILE_ADAPTQUANT|PROFILE_REDUCED)
213    
214    
215    typedef struct
216    {
217            char * name;
218        int id;         /* mpeg-4 profile id; iso/iec 14496-2:2001 table G-1 */
219            int width;
220            int height;
221            int fps;
222            int max_objects;
223            int total_vmv_buffer_sz;    /* macroblock memory; when BVOPS=false, vmv = 2*vcv; when BVOPS=true,  vmv = 3*vcv*/
224            int max_vmv_buffer_sz;      /* max macroblocks per vop */
225            int vcv_decoder_rate;   /* macroblocks decoded per second */
226            int max_acpred_mbs;     /* percentage */
227            int max_vbv_size;                       /*    max vbv size (bits) 16368 bits */
228            int max_video_packet_length; /* bits */
229            int max_bitrate;                        /* kbits/s */
230            unsigned int flags;
231    } profile_t;
232    
233    
234    extern const profile_t profiles[];
235    
236    
237  void config_reg_get(CONFIG * config);  void config_reg_get(CONFIG * config);
238  void config_reg_set(CONFIG * config);  void config_reg_set(CONFIG * config);
239    

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

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