summaryrefslogtreecommitdiff
path: root/libavcodec/sh4/dsputil_sh4.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2008-11-20 09:21:46 +0000
committerMåns Rullgård <mans@mansr.com>2008-11-20 09:21:46 +0000
commit6f14b19e48295729340c2fa6defb8dedb414ee0d (patch)
treeed4d4d3aadaf9a265cb92ed31e453baed397f2c9 /libavcodec/sh4/dsputil_sh4.c
parenta21fd75f56e3d5068de1f180b050d2f94736186b (diff)
SH4: remove some commented out blocks of code
Originally committed as revision 15886 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/sh4/dsputil_sh4.c')
-rw-r--r--libavcodec/sh4/dsputil_sh4.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/libavcodec/sh4/dsputil_sh4.c b/libavcodec/sh4/dsputil_sh4.c
index 57faa1d3fb..a51f400ed4 100644
--- a/libavcodec/sh4/dsputil_sh4.c
+++ b/libavcodec/sh4/dsputil_sh4.c
@@ -25,7 +25,6 @@
static void memzero_align8(void *dst,size_t size)
{
-#if defined(__SH4__) || defined(__SH4_SINGLE__) || defined(__SH4_SINGLE_ONLY__)
__asm__(
#if defined(__SH4__)
" fschg\n" //single float mode
@@ -44,22 +43,10 @@ static void memzero_align8(void *dst,size_t size)
" fschg" //back to single
#endif
: : "r"((char*)dst+size),"r"(size/32): "memory" );
-#else
- double *d = dst;
- size/=8*4;
- do {
- d[0] = 0.0;
- d[1] = 0.0;
- d[2] = 0.0;
- d[3] = 0.0;
- d+=4;
- } while(--size);
-#endif
}
static void clear_blocks_sh4(DCTELEM *blocks)
{
-// if (((int)blocks&7)==0)
memzero_align8(blocks,sizeof(DCTELEM)*6*64);
}
@@ -113,6 +100,6 @@ void dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx)
c->idct_put = idct_put;
c->idct_add = idct_add;
c->idct = idct_sh4;
- c->idct_permutation_type= FF_NO_IDCT_PERM; //FF_SIMPLE_IDCT_PERM; //FF_LIBMPEG2_IDCT_PERM;
+ c->idct_permutation_type= FF_NO_IDCT_PERM;
}
}