www.pudn.com > wm2.5.zip > intraprediction.h


/*! 
 *************************************************************************** 
 * \file 
 *     intraprediction.h 
 * 
 * \brief 
 *    
 *     
 * 
 * \date 
 *    01. Apr 2005 
 *************************************************************************** 
 */ 
#ifndef _INTRA_PREDICTION_H_ 
#define _INTRA_PREDICTION_H_ 
 
 
int intrapred(int b8, 
			        int b4, 
			        int ioff,               //!< pixel offset X within MB 
			        int joff,               //!< pixel offset Y within MB 
			        int img_block_x,        //!< location of block X, multiples of 4 
			        int img_block_y);       //!< location of block Y, multiples of 4 
 
void intrapred_chroma_4x4(int mb_x, 
                          int mb_y, 
                          int b4, 
                          int mode); 
 
 
 
#endif