summaryrefslogtreecommitdiff
path: root/libavcodec/sh4
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2013-02-05 22:56:24 +0100
committerLuca Barbato <lu_zero@gentoo.org>2013-02-05 23:24:05 +0100
commitb2a722a87e3b3a6a7cda067a3481458c236ab18a (patch)
treef2e33d79b802608df9ecf26299029aa763762248 /libavcodec/sh4
parent620289a20e022b9c16c10d546ef86cc0bb77cc84 (diff)
downloadffmpeg-b2a722a87e3b3a6a7cda067a3481458c236ab18a.tar.gz
sh4: drop unused functions
{avg,put}_pixels4_c are not used.
Diffstat (limited to 'libavcodec/sh4')
-rw-r--r--libavcodec/sh4/dsputil_align.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/libavcodec/sh4/dsputil_align.c b/libavcodec/sh4/dsputil_align.c
index 2ca4559dde..91b34a3838 100644
--- a/libavcodec/sh4/dsputil_align.c
+++ b/libavcodec/sh4/dsputil_align.c
@@ -65,34 +65,6 @@
dest+=stride; \
} while(--height)
-
-#define OP put
-
-static void put_pixels4_c(uint8_t *dest,const uint8_t *ref, const int stride,int height)
-{
- switch((int)ref&3){
- case 0: OP_C40(); return;
- case 1: OP_C4(1); return;
- case 2: OP_C4(2); return;
- case 3: OP_C4(3); return;
- }
-}
-
-#undef OP
-#define OP avg
-
-static void avg_pixels4_c(uint8_t *dest,const uint8_t *ref, const int stride,int height)
-{
- switch((int)ref&3){
- case 0: OP_C40(); return;
- case 1: OP_C4(1); return;
- case 2: OP_C4(2); return;
- case 3: OP_C4(3); return;
- }
-}
-
-#undef OP
-
#define OP_C(ofs,sz,avg2) \
{ \
ref-=ofs; \