[svn] / branches / dev-api-4 / xvidcore / src / utils / mbfunctions.h Repository:
ViewVC logotype

Annotation of /branches/dev-api-4/xvidcore/src/utils/mbfunctions.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 984 - (view) (download)

1 : edgomez 851 /**************************************************************************
2 : Isibaar 3 *
3 : edgomez 851 * Modifications:
4 : Isibaar 3 *
5 : edgomez 851 * 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 : Isibaar 3 *
11 : edgomez 851 * Michael Militzer <isibaar@videocoding.de>
12 : Isibaar 3 *
13 : edgomez 851 **************************************************************************/
14 : Isibaar 3
15 : edgomez 851 #ifndef _ENCORE_BLOCK_H
16 :     #define _ENCORE_BLOCK_H
17 : Isibaar 3
18 :     #include "../encoder.h"
19 :     #include "../bitstream/bitstream.h"
20 :    
21 : edgomez 851 /** MotionEstimation **/
22 : Isibaar 3
23 : edgomez 195 bool MotionEstimation(MBParam * const pParam,
24 : edgomez 965 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 : Isibaar 3
31 : edgomez 851 /** MBMotionCompensation **/
32 : edgomez 420
33 : edgomez 851 void
34 :     MBMotionCompensation(MACROBLOCK * const mb,
35 : edgomez 965 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 : Isibaar 3
51 : edgomez 851 /** MBTransQuant.c **/
52 : Isibaar 3
53 :    
54 : edgomez 965 void MBTransQuantIntra(const MBParam * const pParam,
55 : syskin 984 const FRAMEINFO * const frame,
56 : edgomez 965 MACROBLOCK * const pMB,
57 :     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 */
59 :     int16_t data[6 * 64], /* <-> the data of the MB to be coded */
60 :     int16_t qcoeff[6 * 64]); /* <-> the quantized DCT coefficients */
61 : Isibaar 3
62 : edgomez 965 uint8_t MBTransQuantInter(const MBParam * const pParam,
63 : syskin 984 const FRAMEINFO * const frame,
64 : edgomez 965 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 : Isibaar 3
70 : chl 368 uint8_t MBTransQuantInterBVOP(const MBParam * pParam,
71 : edgomez 851 FRAMEINFO * frame,
72 :     MACROBLOCK * pMB,
73 : edgomez 914 const uint32_t x_pos,
74 :     const uint32_t y_pos,
75 : edgomez 851 int16_t data[6 * 64],
76 :     int16_t qcoeff[6 * 64]);
77 : edgomez 195
78 :    
79 : edgomez 851 typedef uint32_t (MBFIELDTEST) (int16_t data[6 * 64]); /* function pointer for field test */
80 :     typedef MBFIELDTEST *MBFIELDTEST_PTR;
81 : h 69
82 : edgomez 851 /* global field test pointer for xvid.c */
83 :     extern MBFIELDTEST_PTR MBFieldTest;
84 : h 69
85 : edgomez 851 /* field test implementations */
86 :     MBFIELDTEST MBFieldTest_c;
87 :     MBFIELDTEST MBFieldTest_mmx;
88 : Isibaar 3
89 : edgomez 851 void MBFrameToField(int16_t data[6 * 64]); /* de-interlace vertical Y blocks */
90 : chl 347
91 :    
92 : edgomez 851 /** MBCoding.c **/
93 : Isibaar 3
94 : edgomez 851 void MBCoding(const FRAMEINFO * const frame, /* <-- the parameter for coding of the bitstream */
95 : edgomez 965 MACROBLOCK * pMB, /* <-- Info of the MB to be coded */
96 :     int16_t qcoeff[6 * 64], /* <-- the quantized DCT coefficients */
97 :     Bitstream * bs, /* <-> the bitstream */
98 :     Statistics * pStat); /* <-> statistical data collected for current frame */
99 : edgomez 851
100 : Isibaar 3 #endif

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