[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.1, Fri Mar 8 02:44:58 2002 UTC revision 1.8, Sun Jul 28 13:06:46 2002 UTC
# Line 2  Line 2 
2   *   *
3   *  Modifications:   *  Modifications:
4   *   *
5     *  29.03.2002 removed MBFieldToFrame - no longer used (transfers instead)
6     *  26.03.2002 interlacing support
7   *  02.12.2001 motion estimation/compensation split   *  02.12.2001 motion estimation/compensation split
8   *  16.11.2001 const/uint32_t changes to MBMotionEstComp()   *  16.11.2001 const/uint32_t changes to MBMotionEstComp()
9   *  26.08.2001 added inter4v_mode parameter to MBMotionEstComp()   *  26.08.2001 added inter4v_mode parameter to MBMotionEstComp()
# Line 20  Line 22 
22    
23  /** MotionEstimation **/  /** MotionEstimation **/
24    
25  bool MotionEstimation(  bool MotionEstimation(MBParam * const pParam,
26                          MACROBLOCK * const pMBs,                                            FRAMEINFO * const current,
27                          MBParam * const pParam,                                            FRAMEINFO * const reference,
                     const IMAGE * const pRef,  
28                          const IMAGE * const pRefH,                          const IMAGE * const pRefH,
29                      const IMAGE * const pRefV,                      const IMAGE * const pRefV,
30                          const IMAGE * const pRefHV,                          const IMAGE * const pRefHV,
                     IMAGE * const pCurrent,  
31                          const uint32_t iLimit);                          const uint32_t iLimit);
32    
33    
34    bool SMP_MotionEstimation(MBParam * const pParam,
35                                              FRAMEINFO * const current,
36                                              FRAMEINFO * const reference,
37                                              const IMAGE * const pRefH,
38                                              const IMAGE * const pRefV,
39                                              const IMAGE * const pRefHV,
40                                              const uint32_t iLimit);
41    
42    
43    
44  /** MBMotionCompensation **/  /** MBMotionCompensation **/
45  void MBMotionCompensation(  void MBMotionCompensation(MACROBLOCK * const pMB,
                         MACROBLOCK * const pMB,  
46                      const uint32_t j,                      const uint32_t j,
47                          const uint32_t i,                          const uint32_t i,
48                      const IMAGE * const pRef,                      const IMAGE * const pRef,
# Line 41  Line 50 
50                      const IMAGE * const pRefV,                      const IMAGE * const pRefV,
51                          const IMAGE * const pRefHV,                          const IMAGE * const pRefHV,
52                      IMAGE * const pCurrent,                      IMAGE * const pCurrent,
53                      int16_t dct_codes[][64],                                                    int16_t dct_codes[6 * 64],
54                          const uint32_t width,                          const uint32_t width,
55                          const uint32_t height,                          const uint32_t height,
56                          const uint32_t edged_width,                          const uint32_t edged_width,
# Line 52  Line 61 
61    
62    
63  void MBTransQuantIntra(const MBParam *pParam,  void MBTransQuantIntra(const MBParam *pParam,
64                                               FRAMEINFO * frame,
65                                               MACROBLOCK * pMB,
66                         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 */
67    
68                         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 */
69                         int16_t data[][64],       /* <-> the data of the MB to be coded */  
70                         int16_t qcoeff[][64],     /* <-> the quantized DCT coefficients */                                             int16_t data[6 * 64],        /* <-> the data of the MB to be coded */
71                         IMAGE * const pCurrent         /* <-> the reconstructed image ( function will update one  
72                                                                              MB in it with data from data[] ) */                                             int16_t qcoeff[6 * 64]       /* <-> the quantized DCT coefficients */
73  );  );
74    
75    
76  uint8_t MBTransQuantInter(const MBParam *pParam, /* <-- the parameter for DCT transformation  uint8_t MBTransQuantInter(const MBParam * pParam,       /* <-- the parameter for DCT transformation and Quantization */
77                                                                                                     and Quantization */  
78                                                      FRAMEINFO * frame,
79                                                      MACROBLOCK * pMB,
80                             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 */
81    
82                             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 */
83                             int16_t data[][64],   /* <-> the data of the MB to be coded */  
84                             int16_t qcoeff[][64], /* <-> the quantized DCT coefficients */                                                    int16_t data[6 * 64], /* <-> the data of the MB to be coded */
85                             IMAGE * const pCurrent                /* <-> the reconstructed image ( function will  
86                                                                      update one MB in it with data from data[] ) */                                                    int16_t qcoeff[6 * 64]        /* <-> the quantized DCT coefficients */
87  );  );
88    
89    
90    /** interlacing **/
91    
92    uint32_t MBDecideFieldDCT(int16_t data[6 * 64]);        /* <- decide whether to use field-based DCT
93                                                                                                               for interlacing */
94    
95    void MBFrameToField(int16_t data[6 * 64]);      /* de-interlace vertical Y blocks */
96    
97    
98  /** MBCoding.c **/  /** MBCoding.c **/
99    
100  void MBCoding(const MBParam *pParam,             /* <-- the parameter for coding of the bitstream */  void MBSkip(Bitstream * bs);  /* just the bitstream. Since MB is skipped, no info is needed */
101    
102    
103    void MBCoding(const FRAMEINFO * frame,  /* <-- the parameter for coding of the bitstream */
104    
105                MACROBLOCK *pMB,           /* <-- Info of the MB to be coded */                MACROBLOCK *pMB,           /* <-- Info of the MB to be coded */
106                int16_t qcoeff[][64],              /* <-- the quantized DCT coefficients */  
107                              int16_t qcoeff[6 * 64],       /* <-- the quantized DCT coefficients */
108    
109                Bitstream * bs,                    /* <-> the bitstream */                Bitstream * bs,                    /* <-> the bitstream */
110    
111                Statistics * pStat                 /* <-> statistical data collected for current frame */                Statistics * pStat                 /* <-> statistical data collected for current frame */
112      );      );
113    

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

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