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

Diff of /xvidcore/src/utils/mbfunctions.h

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

revision 1.17.2.6, Wed Sep 10 22:19:00 2003 UTC revision 1.18, Sat Mar 22 14:04:48 2003 UTC
# Line 1  Line 1 
1  /*****************************************************************************  /**************************************************************************
2   *   *
3   *  XVID MPEG-4 VIDEO CODEC   *  Modifications:
  *  - MB related header  -  
4   *   *
5   *  Copyright(C) 2001 Michael Militzer <isibaar@xvid.org>   *  29.03.2002 removed MBFieldToFrame - no longer used (transfers instead)
6     *  26.03.2002 interlacing support
7     *  02.12.2001 motion estimation/compensation split
8     *  16.11.2001 const/uint32_t changes to MBMotionEstComp()
9     *  26.08.2001 added inter4v_mode parameter to MBMotionEstComp()
10   *   *
11   *  This program is free software ; you can redistribute it and/or modify   *  Michael Militzer <isibaar@videocoding.de>
  *  it under the terms of the GNU General Public License as published by  
  *  the Free Software Foundation ; either version 2 of the License, or  
  *  (at your option) any later version.  
12   *   *
13   *  This program is distributed in the hope that it will be useful,   **************************************************************************/
  *  but WITHOUT ANY WARRANTY ; without even the implied warranty of  
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the  
  *  GNU General Public License for more details.  
  *  
  *  You should have received a copy of the GNU General Public License  
  *  along with this program ; if not, write to the Free Software  
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA  
  *  
  * $Id$  
  *  
  ****************************************************************************/  
14    
15  #ifndef _ENCORE_BLOCK_H  #ifndef _ENCORE_BLOCK_H
16  #define _ENCORE_BLOCK_H  #define _ENCORE_BLOCK_H
# Line 29  Line 18 
18  #include "../encoder.h"  #include "../encoder.h"
19  #include "../bitstream/bitstream.h"  #include "../bitstream/bitstream.h"
20    
21    /** MotionEstimation **/
22    
23    bool MotionEstimation(MBParam * const pParam,
24                                            FRAMEINFO * const current,
25                                            FRAMEINFO * const reference,
26                                            const IMAGE * const pRefH,
27                                            const IMAGE * const pRefV,
28                                            const IMAGE * const pRefHV,
29                                            const uint32_t iLimit);
30    
31    /** MBMotionCompensation **/
32    
33    void
34    MBMotionCompensation(MACROBLOCK * const mb,
35                                            const uint32_t i,
36                                            const uint32_t j,
37                                            const IMAGE * const ref,
38                                            const IMAGE * const refh,
39                                            const IMAGE * const refv,
40                                            const IMAGE * const refhv,
41                                            const IMAGE * const refGMC,
42                                            IMAGE * const cur,
43                                            int16_t * dct_codes,
44                                            const uint32_t width,
45                                            const uint32_t height,
46                                            const uint32_t edged_width,
47                                            const int32_t quarterpel,
48                                            const int reduced_resolution,
49                                            const int32_t rounding);
50    
51  /** MBTransQuant.c **/  /** MBTransQuant.c **/
52    
53    
54  void MBTransQuantIntra(const MBParam * const pParam,  void MBTransQuantIntra(const MBParam * const pParam,
55                                          const FRAMEINFO * const frame,                                          FRAMEINFO * const frame,
56                                          MACROBLOCK * const pMB,                                          MACROBLOCK * const pMB,
57                                          const uint32_t x_pos,   /* <-- The x position of the MB to be searched */                                          const uint32_t x_pos,   /* <-- The x position of the MB to be searched */
58                                          const uint32_t y_pos,   /* <-- The y position of the MB to be searched */                                          const uint32_t y_pos,   /* <-- The y position of the MB to be searched */
# Line 42  Line 60 
60                                          int16_t qcoeff[6 * 64]);        /* <-> the quantized DCT coefficients */                                          int16_t qcoeff[6 * 64]);        /* <-> the quantized DCT coefficients */
61    
62  uint8_t MBTransQuantInter(const MBParam * const pParam,  uint8_t MBTransQuantInter(const MBParam * const pParam,
63                                                  const FRAMEINFO * const frame,                                                  FRAMEINFO * const frame,
64                                                  MACROBLOCK * const pMB,                                                  MACROBLOCK * const pMB,
65                                                  const uint32_t x_pos,                                                  const uint32_t x_pos,
66                                                  const uint32_t y_pos,                                                  const uint32_t y_pos,
# Line 52  Line 70 
70  uint8_t MBTransQuantInterBVOP(const MBParam * pParam,  uint8_t MBTransQuantInterBVOP(const MBParam * pParam,
71                                                    FRAMEINFO * frame,                                                    FRAMEINFO * frame,
72                                                    MACROBLOCK * pMB,                                                    MACROBLOCK * pMB,
                                                   const uint32_t x_pos,  
                                                   const uint32_t y_pos,  
73                                                    int16_t data[6 * 64],                                                    int16_t data[6 * 64],
74                                                    int16_t qcoeff[6 * 64]);                                                    int16_t qcoeff[6 * 64]);
75    
76    /** interlacing **/
77    
78    uint32_t MBDecideFieldDCT(int16_t data[6 * 64]);        /* <- decide whether to use field-based DCT
79                                                                                                                    for interlacing */
80    
81  typedef uint32_t (MBFIELDTEST) (int16_t data[6 * 64]);  /* function pointer for field test */  typedef uint32_t (MBFIELDTEST) (int16_t data[6 * 64]);  /* function pointer for field test */
82  typedef MBFIELDTEST *MBFIELDTEST_PTR;  typedef MBFIELDTEST *MBFIELDTEST_PTR;

Legend:
Removed from v.1.17.2.6  
changed lines
  Added in v.1.18

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