[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.4, Fri Mar 29 00:38:29 2002 UTC revision 1.18, Sat Mar 22 14:04:48 2003 UTC
# Line 18  Line 18 
18  #include "../encoder.h"  #include "../encoder.h"
19  #include "../bitstream/bitstream.h"  #include "../bitstream/bitstream.h"
20    
   
   
21  /** MotionEstimation **/  /** MotionEstimation **/
22    
23  bool MotionEstimation(  bool MotionEstimation(MBParam * const pParam,
24          MACROBLOCK * const pMBs,                                          FRAMEINFO * const current,
25          MBParam * const pParam,                                          FRAMEINFO * const reference,
         const IMAGE * const pRef,  
26          const IMAGE * const pRefH,          const IMAGE * const pRefH,
27          const IMAGE * const pRefV,          const IMAGE * const pRefV,
28          const IMAGE * const pRefHV,          const IMAGE * const pRefHV,
         IMAGE * const pCurrent,  
29          const uint32_t iLimit);          const uint32_t iLimit);
30    
   
31  /** MBMotionCompensation **/  /** MBMotionCompensation **/
32  void MBMotionCompensation(  
33          MACROBLOCK * const pMB,  void
34          const uint32_t j,  MBMotionCompensation(MACROBLOCK * const mb,
35          const uint32_t i,          const uint32_t i,
36          const IMAGE * const pRef,                                          const uint32_t j,
37          const IMAGE * const pRefH,                                          const IMAGE * const ref,
38          const IMAGE * const pRefV,                                          const IMAGE * const refh,
39          const IMAGE * const pRefHV,                                          const IMAGE * const refv,
40          IMAGE * const pCurrent,                                          const IMAGE * const refhv,
41          int16_t dct_codes[6*64],                                          const IMAGE * const refGMC,
42                                            IMAGE * const cur,
43                                            int16_t * dct_codes,
44          const uint32_t width,          const uint32_t width,
45          const uint32_t height,          const uint32_t height,
46          const uint32_t edged_width,          const uint32_t edged_width,
47          const uint32_t rounding);                                          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 *pParam,  void MBTransQuantIntra(const MBParam * const pParam,
55                         MACROBLOCK * pMB,                                          FRAMEINFO * const frame,
56                                            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 */
59                         int16_t data[6*64],       /* <-> the data of the MB to be coded */                         int16_t data[6*64],       /* <-> the data of the MB to be coded */
60                         int16_t qcoeff[6*64],     /* <-> the quantized DCT coefficients */                                          int16_t qcoeff[6 * 64]);        /* <-> the quantized DCT coefficients */
                        IMAGE * const pCurrent    /* <-> the reconstructed image */  
                                                  /*     (function will update one MB in it with data from data[])  */  
 );  
61    
62    uint8_t MBTransQuantInter(const MBParam * const pParam,
63                                                    FRAMEINFO * const frame,
64                                                    MACROBLOCK * const pMB,
65                                                    const uint32_t x_pos,
66                                                    const uint32_t y_pos,
67                                                    int16_t data[6 * 64],
68                                                    int16_t qcoeff[6 * 64]);
69    
70  uint8_t MBTransQuantInter(const MBParam *pParam, /* <-- the parameter for DCT transformation  uint8_t MBTransQuantInterBVOP(const MBParam * pParam,
71                                                      and Quantization */                                                  FRAMEINFO * frame,
72                            MACROBLOCK * pMB,                            MACROBLOCK * pMB,
73                            const uint32_t x_pos,  /* <-- The x position of the MB to be searched */                                                  int16_t data[6 * 64],
74                            const uint32_t y_pos,  /* <-- The y position of the MB to be searched */                                                  int16_t qcoeff[6 * 64]);
                           int16_t data[6*64],    /* <-> the data of the MB to be coded */  
                           int16_t qcoeff[6*64],  /* <-> the quantized DCT coefficients */  
                           IMAGE * const pCurrent /* <-> the reconstructed image ( function will  
                                                     update one MB in it with data from data[] ) */  
 );  
   
75    
76  /** interlacing **/  /** interlacing **/
77    
78  uint32_t MBDecideFieldDCT(int16_t data[6*64]); /* <- decide whether to use field-based DCT  uint32_t MBDecideFieldDCT(int16_t data[6*64]); /* <- decide whether to use field-based DCT
79                                                    for interlacing */                                                    for interlacing */
80    
81    typedef uint32_t (MBFIELDTEST) (int16_t data[6 * 64]);  /* function pointer for field test */
82    typedef MBFIELDTEST *MBFIELDTEST_PTR;
83    
84    /* global field test pointer for xvid.c */
85    extern MBFIELDTEST_PTR MBFieldTest;
86    
87    /* field test implementations */
88    MBFIELDTEST MBFieldTest_c;
89    MBFIELDTEST MBFieldTest_mmx;
90    
91  void MBFrameToField(int16_t data[6*64]);       /* de-interlace vertical Y blocks */  void MBFrameToField(int16_t data[6*64]);       /* de-interlace vertical Y blocks */
92    
93    
94  /** MBCoding.c **/  /** MBCoding.c **/
95    
96  void MBCoding(const MBParam *pParam, /* <-- the parameter for coding of the bitstream */  void MBCoding(const FRAMEINFO * const frame,    /* <-- the parameter for coding of the bitstream */
97                MACROBLOCK *pMB,       /* <-- Info of the MB to be coded */                MACROBLOCK *pMB,       /* <-- Info of the MB to be coded */
98                int16_t qcoeff[6*64],  /* <-- the quantized DCT coefficients */                int16_t qcoeff[6*64],  /* <-- the quantized DCT coefficients */
99                Bitstream * bs,        /* <-> the bitstream */                Bitstream * bs,        /* <-> the bitstream */
100                Statistics * pStat     /* <-> statistical data collected for current frame */                          Statistics * pStat);    /* <-> statistical data collected for current frame */
     );  
101    
102  #endif  #endif

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

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