summaryrefslogtreecommitdiff
path: root/libswscale/ppc/yuv2rgb_altivec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-08-10 10:53:32 +0000
committerDiego Biurrun <diego@biurrun.de>2009-08-10 10:53:32 +0000
commit9bb3f3edfe9cbc0faceb0a9cf10223bb7961f830 (patch)
tree6a2f7394209a0fcd903f699cbe179f1b1cfb6ed6 /libswscale/ppc/yuv2rgb_altivec.c
parent2704bd1a0982f1a94e54b375da25b69d84660963 (diff)
Remove disabled debug code.
Originally committed as revision 29485 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/ppc/yuv2rgb_altivec.c')
-rw-r--r--libswscale/ppc/yuv2rgb_altivec.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/libswscale/ppc/yuv2rgb_altivec.c b/libswscale/ppc/yuv2rgb_altivec.c
index 550afc4023..37fbcb5dd5 100644
--- a/libswscale/ppc/yuv2rgb_altivec.c
+++ b/libswscale/ppc/yuv2rgb_altivec.c
@@ -772,15 +772,6 @@ void ff_yuv2rgb_init_tables_altivec(SwsContext *c, const int inv_table[4], int b
c->CBU = vec_splat ((vector signed short)buf.vec, 3);
c->CGU = vec_splat ((vector signed short)buf.vec, 4);
c->CGV = vec_splat ((vector signed short)buf.vec, 5);
-#if 0
- {
- int i;
- char *v[6]={"cy","oy","crv","cbu","cgu","cgv"};
- for (i=0; i<6; i++)
- printf("%s %d ", v[i],buf.tmp[i] );
- printf("\n");
- }
-#endif
return;
}