Mercurial > libavcodec.hg
changeset 6052:c90798ac28ee libavcodec
~15% faster h264_chroma_mc2/4_c() these also prevent some possible out
of array reads.
author | michael |
---|---|
date | Fri, 21 Dec 2007 10:16:22 +0000 |
parents | 1e3b5597505a |
children | f4607985f888 |
files | dsputil.c |
diffstat | 1 files changed, 26 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/dsputil.c Fri Dec 21 10:01:04 2007 +0000 +++ b/dsputil.c Fri Dec 21 10:16:22 2007 +0000 @@ -1440,6 +1440,7 @@ \ assert(x<8 && y<8 && x>=0 && y>=0);\ \ + if(D){\ for(i=0; i<h; i++)\ {\ OP(dst[0], (A*src[0] + B*src[1] + C*src[stride+0] + D*src[stride+1]));\ @@ -1447,6 +1448,17 @@ dst+= stride;\ src+= stride;\ }\ + }else{\ + const int E= B+C;\ + const int step= C ? stride : 1;\ + for(i=0; i<h; i++)\ + {\ + OP(dst[0], (A*src[0] + E*src[step+0]));\ + OP(dst[1], (A*src[1] + E*src[step+1]));\ + dst+= stride;\ + src+= stride;\ + }\ + }\ }\ \ static void OPNAME ## h264_chroma_mc4_c(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int stride, int h, int x, int y){\ @@ -1458,6 +1470,7 @@ \ assert(x<8 && y<8 && x>=0 && y>=0);\ \ + if(D){\ for(i=0; i<h; i++)\ {\ OP(dst[0], (A*src[0] + B*src[1] + C*src[stride+0] + D*src[stride+1]));\ @@ -1467,6 +1480,19 @@ dst+= stride;\ src+= stride;\ }\ + }else{\ + const int E= B+C;\ + const int step= C ? stride : 1;\ + for(i=0; i<h; i++)\ + {\ + OP(dst[0], (A*src[0] + E*src[step+0]));\ + OP(dst[1], (A*src[1] + E*src[step+1]));\ + OP(dst[2], (A*src[2] + E*src[step+2]));\ + OP(dst[3], (A*src[3] + E*src[step+3]));\ + dst+= stride;\ + src+= stride;\ + }\ + }\ }\ \ static void OPNAME ## h264_chroma_mc8_c(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int stride, int h, int x, int y){\