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


/*! 
 *************************************************************************** 
 * \file 
 *    loopfiter.h 
 * 
 * \brief 
 *    header of loopfilter function 
 * 
 * \date 
 *    01. Apr 2005 
 *************************************************************************** 
 */ 
#ifndef _LOOPFILTER_H_ 
#define _LOOPFILTER_H_ 
 
void DeblockFrame(byte **imgY , byte ***imgUV); 
void DeblockMb(byte **imgY ,  
               byte ***imgUV,  
               int mb_y ,  
               int mb_x); 
 
void EdgeLoop(byte* SrcPtr, 
              byte Strength[4],  
              int QP,  
              int AlphaC0Offset,  
              int BetaOffset,  
              int dir, 
              int width, 
              int yuv); 
 
void EdgeLoopweak(byte* SrcPtr, 
                  byte Strength[4],  
                  int QP,  
                  int AlphaC0Offset,  
                  int BetaOffset,  
                  int dir, 
                  int width, 
                  int yuv); 
 
#endif