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

Diff of /xvidcore/src/encoder.h

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

revision 1.27.2.10, Mon Jun 9 13:50:44 2003 UTC revision 1.32, Mon Jul 10 08:09:59 2006 UTC
# Line 35  Line 35 
35   * Constants   * Constants
36   ****************************************************************************/   ****************************************************************************/
37    
38    /* lambda base exponential. 1<<LAMBDA_EXP is the neutral lambda */
39    #define LAMBDA_EXP              6
40    
41  /*****************************************************************************  /*****************************************************************************
42   * Types   * Types
43   ****************************************************************************/   ****************************************************************************/
# Line 59  Line 62 
62      int plugin_flags;      int plugin_flags;
63    
64          /* frame rate increment & base */          /* frame rate increment & base */
65          uint32_t fincr;          int32_t fincr;
66          uint32_t fbase;          uint32_t fbase;
67    
68      int profile;      int profile;
69    
70          xvid_global_t global_flags;          int global_flags;
71          int bquant_ratio;          int bquant_ratio;
72          int bquant_offset;          int bquant_offset;
73          int frame_drop_ratio;          int frame_drop_ratio;
# Line 72  Line 75 
75      int min_quant[3];      int min_quant[3];
76      int max_quant[3];      int max_quant[3];
77    
78  #ifdef _SMP          int par;
79          int num_threads;          int par_width;
80  #endif          int par_height;
   
81    
82          int iMaxKeyInterval;          int iMaxKeyInterval;
83          int max_bframes;          int max_bframes;
# Line 89  Line 91 
91          /* vars that not "quite" frame independant */          /* vars that not "quite" frame independant */
92          uint32_t m_rounding_type;          uint32_t m_rounding_type;
93          uint32_t m_fcode;          uint32_t m_fcode;
94      xvid_vol_t vol_flags;      int vol_flags;
95    
96          int64_t m_stamp;          int64_t m_stamp;
97  }  
98  MBParam;          uint16_t *mpeg_quant_matrices;
99            uint32_t last_quant_initialized_intra; /* needed for mpeg matrices initialization */
100    } MBParam;
101    
102    
103  typedef struct  typedef struct
# Line 105  Line 109 
109          int mblks;          int mblks;
110          int ublks;          int ublks;
111          int gblks;          int gblks;
112  }          int iMVBits;
113  Statistics;  } Statistics;
114    
115    
116  /* encoding queue */  /* encoding queue */
# Line 123  Line 127 
127  {  {
128      int frame_num;      int frame_num;
129      int fincr;      int fincr;
130          xvid_vol_t vol_flags;          int vol_flags;
131      xvid_vop_t vop_flags;      int vop_flags;
132          xvid_motion_t motion_flags;          int motion_flags;
133    
134          int coding_type;          int coding_type;
135          uint32_t quant;          uint32_t quant;
# Line 143  Line 147 
147    
148          WARPPOINTS warp;                /* as in bitstream */          WARPPOINTS warp;                /* as in bitstream */
149          GMC_DATA gmc_data;              /* common data for all MBs */          GMC_DATA gmc_data;              /* common data for all MBs */
150            NEW_GMC_DATA new_gmc_data;              /* common data for all MBs */
151    
152      int length;         /* the encoded size of this frame */      int length;         /* the encoded size of this frame */
153    
154          Statistics sStat;          Statistics sStat;
155  }          int is_edged, is_interpolated;
156  FRAMEINFO;  } FRAMEINFO;
157    
158    
159    #include "motion/motion_smp.h"
160    
161  typedef struct  typedef struct
162  {  {
# Line 163  Line 170 
170      xvid_enc_zone_t * zones;      xvid_enc_zone_t * zones;
171    
172      /* plugins */      /* plugins */
173      unsigned int num_plugins;    /* note: we store plugin flags in MBPARAM */      int num_plugins;    /* note: we store plugin flags in MBPARAM */
174      xvid_enc_plugin_t * plugins;      xvid_enc_plugin_t * plugins;
175    
176      /* dquant */      /* dquant */
177    
178      int * temp_dquants;      int * temp_dquants;
179    
180        /* lambda */
181    
182        float * temp_lambda;
183    
184          /* images */          /* images */
185    
186          FRAMEINFO *current;          FRAMEINFO *current;
# Line 205  Line 216 
216          int closed_bframenum; /* == -1 if there is no fixup intended */          int closed_bframenum; /* == -1 if there is no fixup intended */
217      QUEUEINFO closed_qframe;    /* qFrame, only valid when >= 0 */      QUEUEINFO closed_qframe;    /* qFrame, only valid when >= 0 */
218    
219            /* multithreaded stuff */
220            int num_threads;                        /* number of additional threads */
221            SMPmotionData * motionData;     /* data structures used to pass all thread-specific data */
222    
223          int m_framenum; /* debug frame num counter; unlike iFrameNum, does not reset at ivop */          int m_framenum; /* debug frame num counter; unlike iFrameNum, does not reset at ivop */
224    
225          float fMvPrevSigma;          float fMvPrevSigma;
226  }  } Encoder;
 Encoder;  
227    
228  /*****************************************************************************  /*****************************************************************************
229   * Inline functions   * Inline functions

Legend:
Removed from v.1.27.2.10  
changed lines
  Added in v.1.32

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