[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.8, Fri Jun 7 10:21:48 2002 UTC revision 1.13, Mon Jun 24 09:53:17 2002 UTC
# Line 1  Line 1 
1  /**************************************************************************  /*****************************************************************************
2   *   *
3   *  Modifications:   *  XVID MPEG-4 VIDEO CODEC
4     *  - Encoder header -
5   *   *
6   *  22.08.2001 added support for EXT_MODE encoding mode   *  This program is an implementation of a part of one or more MPEG-4
7     *  Video tools as specified in ISO/IEC 14496-2 standard.  Those intending
8     *  to use this software module in hardware or software products are
9     *  advised that its use may infringe existing patents or copyrights, and
10     *  any such use would be at such party's own risk.  The original
11     *  developer of this software module and his/her company, and subsequent
12     *  editors and their companies, will have no liability for use of this
13     *  software or modifications or derivatives thereof.
14     *
15     *  This program is free software ; you can redistribute it and/or modify
16     *  it under the terms of the GNU General Public License as published by
17     *  the Free Software Foundation ; either version 2 of the License, or
18     *  (at your option) any later version.
19     *
20     *  This program is distributed in the hope that it will be useful,
21     *  but WITHOUT ANY WARRANTY ; without even the implied warranty of
22     *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23     *  GNU General Public License for more details.
24     *
25     *  You should have received a copy of the GNU General Public License
26     *  along with this program ; if not, write to the Free Software
27     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
28     *
29     ****************************************************************************/
30    /*****************************************************************************
31     *
32     *  History
33     *
34     *  - 13.06.2002 Added legal header
35     *  - 22.08.2001 Added support for EXT_MODE encoding mode
36   *             support for EXTENDED API   *             support for EXTENDED API
37   *  22.08.2001 fixed bug in iDQtab   *  - 22.08.2001 fixed bug in iDQtab
38   *   *
39   *  Michael Militzer <isibaar@videocoding.de>   *  $Id$
40   *   *
41   **************************************************************************/   ****************************************************************************/
42    
43  #ifndef _ENCODER_H_  #ifndef _ENCODER_H_
44  #define _ENCODER_H_  #define _ENCODER_H_
45    
   
46  #include "xvid.h"  #include "xvid.h"
   
47  #include "portab.h"  #include "portab.h"
48  #include "global.h"  #include "global.h"
49  #include "image/image.h"  #include "image/image.h"
50  #include "utils/ratecontrol.h"  #include "utils/ratecontrol.h"
51    
52    /*****************************************************************************
53     * Constants
54     ****************************************************************************/
55    
56    /* Quatization type */
57  #define H263_QUANT      0  #define H263_QUANT      0
58  #define MPEG4_QUANT     1  #define MPEG4_QUANT     1
59    
60    /* Indicates no quantizer changes in INTRA_Q/INTER_Q modes */
61    #define NO_CHANGE 64
62    
63  typedef uint32_t bool;  /*****************************************************************************
64     * Types
65     ****************************************************************************/
66    
67    typedef int bool;
68    
69  typedef enum  typedef enum
70  {  {
# Line 36  Line 74 
74  }  }
75  VOP_TYPE;  VOP_TYPE;
76    
77  /***********************************  /*****************************************************************************
78     * Structures
79         Encoding Parameters   ****************************************************************************/
   
 ************************************/  
80    
81  typedef struct  typedef struct
82  {  {
# Line 77  Line 113 
113          uint32_t m_ticks;          uint32_t m_ticks;
114  #endif  #endif
115    
116  } MBParam;  }
117    MBParam;
118    
119    
120  typedef struct  typedef struct
# Line 100  Line 137 
137    
138          MACROBLOCK * mbs;          MACROBLOCK * mbs;
139    
140  } FRAMEINFO;  }
141    FRAMEINFO;
142    
143  typedef struct  typedef struct
144  {  {
# Line 129  Line 167 
167          FRAMEINFO * current;          FRAMEINFO * current;
168          FRAMEINFO * reference;          FRAMEINFO * reference;
169    
170  #ifdef _DEBUG  #ifdef _DEBUG_PSNR
171          IMAGE sOriginal;          IMAGE sOriginal;
172  #endif  #endif
173          IMAGE vInterH;          IMAGE vInterH;
# Line 140  Line 178 
178    
179  #ifdef BFRAMES  #ifdef BFRAMES
180          /* constants */          /* constants */
181            int global;
182          int bquant_ratio;          int bquant_ratio;
183          /* vars */  
184            /* image queue */
185            int queue_head;
186            int queue_tail;
187            int queue_size;
188            IMAGE *queue;
189    
190            /* bframe buffer */
191          int bframenum_head;          int bframenum_head;
192          int bframenum_tail;          int bframenum_tail;
193          int flush_bframes;          int flush_bframes;
# Line 150  Line 196 
196          IMAGE f_refh;          IMAGE f_refh;
197          IMAGE f_refv;          IMAGE f_refv;
198          IMAGE f_refhv;          IMAGE f_refhv;
199            int bframenum_dx50bvop;
200    
201            int m_framenum; /* debug frame num counter; unlike iFrameNum, does not reset at ivop */
202  #endif  #endif
203    
204          Statistics sStat;          Statistics sStat;
205          RateControl rate_control;          RateControl rate_control;
206  }  }
207  Encoder;  Encoder;
208    
209    /*****************************************************************************
210     * Inline functions
211     ****************************************************************************/
212    
213  // indicates no quantizer changes in INTRA_Q/INTER_Q modes  static __inline uint8_t
214  #define NO_CHANGE 64  get_fcode(uint16_t sr)
   
 void init_encoder(uint32_t cpu_flags);  
   
 int encoder_create(XVID_ENC_PARAM * pParam);  
 int encoder_destroy(Encoder * pEnc);  
 int encoder_encode(Encoder * pEnc, XVID_ENC_FRAME * pFrame, XVID_ENC_STATS * pResult);  
   
 static __inline uint8_t get_fcode(uint16_t sr)  
215  {  {
216          if (sr <= 16)          if (sr <= 16)
217                  return 1;                  return 1;
# Line 193  Line 238 
238                  return 0;                  return 0;
239  }  }
240    
241  #endif /* _ENCODER_H_ */  
242    /*****************************************************************************
243     * Prototypes
244     ****************************************************************************/
245    
246    void init_encoder(uint32_t cpu_flags);
247    
248    int encoder_create(XVID_ENC_PARAM * pParam);
249    int encoder_destroy(Encoder * pEnc);
250    int encoder_encode(Encoder * pEnc,
251                                       XVID_ENC_FRAME * pFrame,
252                                       XVID_ENC_STATS * pResult);
253    
254    int encoder_encode_bframes(Encoder * pEnc,
255                                       XVID_ENC_FRAME * pFrame,
256                                       XVID_ENC_STATS * pResult);
257    
258    #endif

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.13

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