diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2008-12-02 17:34:26 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2008-12-02 17:34:26 +0000 |
commit | 207625ee610e6438264e2bc9bbeaf8dd1d4548ba (patch) | |
tree | 34dc9ef1ddf2a83b27d145a19a3ef4a1a63eb741 /libavcodec/h264pred.c | |
parent | 73b458e354d1daa73989b9ff0296235556cb55c3 (diff) | |
download | ffmpeg-207625ee610e6438264e2bc9bbeaf8dd1d4548ba.tar.gz |
Remove unused RV40 spatial intra prediction function
Originally committed as revision 15979 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264pred.c')
-rw-r--r-- | libavcodec/h264pred.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/libavcodec/h264pred.c b/libavcodec/h264pred.c index 0b7394a03a..95b83f4964 100644 --- a/libavcodec/h264pred.c +++ b/libavcodec/h264pred.c @@ -198,28 +198,6 @@ static void pred4x4_down_left_rv40_c(uint8_t *src, uint8_t *topright, int stride src[3+3*stride]=(t6 + t7 + 1 + l6 + l7 + 1)>>2; } -static void pred4x4_down_left_rv40_notop_c(uint8_t *src, uint8_t *topright, int stride){ - LOAD_LEFT_EDGE - LOAD_DOWN_LEFT_EDGE - - src[0+0*stride]=(l0 + l2 + 2*l1 + 2)>>2; - src[1+0*stride]= - src[0+1*stride]=(l1 + l3 + 2*l2 + 2)>>2; - src[2+0*stride]= - src[1+1*stride]= - src[0+2*stride]=(l2 + l4 + 2*l3 + 2)>>2; - src[3+0*stride]= - src[2+1*stride]= - src[1+2*stride]= - src[0+3*stride]=(l3 + l5 + 2*l4 + 2)>>2; - src[3+1*stride]= - src[2+2*stride]= - src[1+3*stride]=(l4 + l6 + 2*l5 + 2)>>2; - src[3+2*stride]= - src[2+3*stride]=(l5 + l7 + 2*l6 + 2)>>2; - src[3+3*stride]=(l6 + l7 + 1)>>1; -} - static void pred4x4_down_left_rv40_nodown_c(uint8_t *src, uint8_t *topright, int stride){ LOAD_TOP_EDGE LOAD_TOP_RIGHT_EDGE |