00001 00002 /*! 00003 ************************************************************************ 00004 * \file intra4x4.h 00005 * 00006 * \brief 00007 * intra 4x4 functions 00008 * 00009 * \author 00010 * - Alexis Michael Tourapis <alexismt@ieee.org> 00011 * 00012 ************************************************************************ 00013 */ 00014 00015 #ifndef _INTRA4x4_H_ 00016 #define _INTRA4x4_H_ 00017 00018 extern void set_intrapred_4x4(Macroblock *currMB, ColorPlane pl, int img_x, int img_y, int *left_available, int *up_available, int *all_available); 00019 extern void get_intrapred_4x4(Macroblock *currMB, ColorPlane pl, int i4x4_mode, int img_x, int img_y, int left_available, int up_available); 00020 00021 #endif 00022