00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef _INTRA8X8_H_
00019 #define _INTRA8X8_H_
00020
00021 extern void set_intrapred_8x8 (Macroblock *currMB, ColorPlane pl, int img_x,int img_y, int *left_available, int *up_available, int *up_left_available);
00022 extern void get_intrapred_8x8 (Macroblock *currMB, ColorPlane pl, int i8x8_mode, int left_available, int up_available);
00023 extern void LowPassForIntra8x8Pred(imgpel *PredPel, int block_up_left, int block_up, int block_left);
00024
00025 #endif //_TRANSFORM8X8_H_