00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef _MD_DISTORTION_H_
00018 #define _MD_DISTORTION_H_
00019
00020 #include "global.h"
00021
00022
00023 extern void setupDistortion (Slice *currSlice);
00024 extern int64 compute_SSE (imgpel **imgRef, imgpel **imgSrc, int xRef, int xSrc, int ySize, int xSize);
00025 extern int64 compute_SSE_cr (imgpel **imgRef, imgpel **imgSrc, int xRef, int xSrc, int ySize, int xSize);
00026 extern int64 compute_SSE16x16(imgpel **imgRef, imgpel **imgSrc, int xRef, int xSrc);
00027 extern int64 compute_SSE8x8 (imgpel **imgRef, imgpel **imgSrc, int xRef, int xSrc);
00028 extern int64 compute_SSE4x4 (imgpel **imgRef, imgpel **imgSrc, int xRef, int xSrc);
00029 #endif