[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, Sat Feb 15 15:22:17 2003 UTC revision 1.27.2.4, Sat Mar 15 17:03:17 2003 UTC
# Line 65  Line 65 
65    
66  typedef int bool;  typedef int bool;
67    
 typedef enum  
 {  
         I_VOP = 0,  
         P_VOP = 1,  
         B_VOP = 2,  
         S_VOP = 3  
 }  
 VOP_TYPE;  
   
68  /*****************************************************************************  /*****************************************************************************
69   * Structures   * Structures
70   ****************************************************************************/   ****************************************************************************/
71    
72  typedef struct  typedef struct
73  {  {
74        /* --- constants --- */
75          uint32_t width;          uint32_t width;
76          uint32_t height;          uint32_t height;
77    
# Line 88  Line 80 
80          uint32_t mb_width;          uint32_t mb_width;
81          uint32_t mb_height;          uint32_t mb_height;
82    
83        int plugin_flags;
84    
85          /* frame rate increment & base */          /* frame rate increment & base */
86          uint32_t fincr;          uint32_t fincr;
87          uint32_t fbase;          uint32_t fbase;
88    
89          /* constants */          xvid_global_t global_flags;
         int global;  
90          int bquant_ratio;          int bquant_ratio;
91          int bquant_offset;          int bquant_offset;
92          int frame_drop_ratio;          int frame_drop_ratio;
93    
94    #ifdef _SMP
95            int num_threads;
96    #endif
97    
98    
99          int iMaxKeyInterval;          int iMaxKeyInterval;
100          int max_bframes;          int max_bframes;
101    
102    /* --- inbetween vop stuff --- */
103          /* rounding type; alternate 0-1 after each interframe */          /* rounding type; alternate 0-1 after each interframe */
104          /* 1 <= fixed_code <= 4          /* 1 <= fixed_code <= 4
105             automatically adjusted using motion vector statistics inside             automatically adjusted using motion vector statistics inside
106           */           */
107    
108          /* vars that not "quite" frame independant */          /* vars that not "quite" frame independant */
         uint32_t m_quant_type;  
109          uint32_t m_rounding_type;          uint32_t m_rounding_type;
110          uint32_t m_fcode;          uint32_t m_fcode;
111          uint32_t m_quarterpel;      xvid_vol_t vol_flags;
         int m_reduced_resolution;       /* reduced_resolution_enable */  
   
         HINTINFO *hint;  
112    
113          int64_t m_stamp;          int64_t m_stamp;
114  }  }
# Line 133  Line 128 
128  Statistics;  Statistics;
129    
130    
131    /* encoding queue */
132  typedef struct  typedef struct
133  {  {
134          uint32_t quant;          xvid_enc_frame_t frame;
135          uint32_t motion_flags;          unsigned char quant_intra_matrix[64];
136          uint32_t global_flags;          unsigned char quant_inter_matrix[64];
137            IMAGE image;
138    } QUEUEINFO;
139    
140          VOP_TYPE coding_type;  
141    typedef struct
142    {
143        int frame_num;
144        int fincr;
145            xvid_vol_t vol_flags;
146        xvid_vop_t vop_flags;
147            xvid_motion_t motion_flags;
148    
149            int coding_type;
150            uint32_t quant;
151          uint32_t rounding_type;          uint32_t rounding_type;
         uint32_t quarterpel;  
152          uint32_t fcode;          uint32_t fcode;
153          uint32_t bcode;          uint32_t bcode;
154    
# Line 156  Line 163 
163          WARPPOINTS warp;                // as in bitstream          WARPPOINTS warp;                // as in bitstream
164          GMC_DATA gmc_data;              // common data for all MBs          GMC_DATA gmc_data;              // common data for all MBs
165    
166        int length;         /* the encoded size of this frame */
167    
168          Statistics sStat;          Statistics sStat;
169  }  }
170  FRAMEINFO;  FRAMEINFO;
# Line 168  Line 177 
177          int iFrameNum;          int iFrameNum;
178          int bitrate;          int bitrate;
179    
180        // plugins
181        int num_plugins;    /* note: we store plugin flags in MBPARAM */
182        xvid_enc_plugin_t * plugins;
183    
184        // dquant
185    
186        int * temp_dquants;
187    
188          // images          // images
189    
190          FRAMEINFO *current;          FRAMEINFO *current;
191          FRAMEINFO *reference;          FRAMEINFO *reference;
192    
193          IMAGE sOriginal;          IMAGE sOriginal;    /* original image copy for i/p frames */
194        IMAGE sOriginal2;   /* original image copy for b-frames */
195          IMAGE vInterH;          IMAGE vInterH;
196          IMAGE vInterV;          IMAGE vInterV;
197          IMAGE vInterVf;          IMAGE vInterVf;
# Line 186  Line 204 
204          int queue_head;          int queue_head;
205          int queue_tail;          int queue_tail;
206          int queue_size;          int queue_size;
207          IMAGE *queue;          QUEUEINFO *queue;
208    
209          /* bframe buffer */          /* bframe buffer */
210          int bframenum_head;          int bframenum_head;
# Line 197  Line 215 
215          IMAGE f_refh;          IMAGE f_refh;
216          IMAGE f_refv;          IMAGE f_refv;
217          IMAGE f_refhv;          IMAGE f_refhv;
218          int bframenum_dx50bvop;  
219        /* closed_gop fixup temporary storage */
220            int closed_bframenum; /* == -1 if there is no fixup intended */
221        QUEUEINFO closed_qframe;    /* qFrame, only valid when >= 0 */
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    
# Line 246  Line 267 
267    
268  void init_encoder(uint32_t cpu_flags);  void init_encoder(uint32_t cpu_flags);
269    
270  int encoder_create(XVID_ENC_PARAM * pParam);  int enc_create(xvid_enc_create_t * create, xvid_enc_rc_t * rc);
271  int encoder_destroy(Encoder * pEnc);  int enc_destroy(Encoder * pEnc);
272  int encoder_encode(Encoder * pEnc,  int enc_encode(Encoder * pEnc,
273                                     XVID_ENC_FRAME * pFrame,                                     xvid_enc_frame_t * pFrame,
274                                     XVID_ENC_STATS * pResult);                                     xvid_enc_stats_t * stats);
   
 int encoder_encode_bframes(Encoder * pEnc,  
                                    XVID_ENC_FRAME * pFrame,  
                                    XVID_ENC_STATS * pResult);  
275    
276  #endif  #endif

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.27.2.4

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