[xiph-commits] r11349 - branches/theora-mmx/lib/x86_64
j at svn.xiph.org
j at svn.xiph.org
Sat May 6 02:46:50 PDT 2006
Author: j
Date: 2006-05-06 02:46:47 -0700 (Sat, 06 May 2006)
New Revision: 11349
Modified:
branches/theora-mmx/lib/x86_64/dsp_mmx.c
branches/theora-mmx/lib/x86_64/dsp_mmxext.c
branches/theora-mmx/lib/x86_64/fdct_mmx.c
branches/theora-mmx/lib/x86_64/recon_mmx.c
Log:
bring 64bit init calls inline with 32bit ones and drop _i386 infix
Modified: branches/theora-mmx/lib/x86_64/dsp_mmx.c
===================================================================
--- branches/theora-mmx/lib/x86_64/dsp_mmx.c 2006-05-06 06:56:57 UTC (rev 11348)
+++ branches/theora-mmx/lib/x86_64/dsp_mmx.c 2006-05-06 09:46:47 UTC (rev 11349)
@@ -283,7 +283,7 @@
);
}
-void dsp_i386_mmx_init(DspFunctions *funcs)
+void dsp_mmx_init(DspFunctions *funcs)
{
fprintf(stderr, "setting accelerated x86_64 mmx dsp functions.\n");
funcs->restore_fpu = restore_fpu;
Modified: branches/theora-mmx/lib/x86_64/dsp_mmxext.c
===================================================================
--- branches/theora-mmx/lib/x86_64/dsp_mmxext.c 2006-05-06 06:56:57 UTC (rev 11348)
+++ branches/theora-mmx/lib/x86_64/dsp_mmxext.c 2006-05-06 09:46:47 UTC (rev 11349)
@@ -305,7 +305,7 @@
return (( (XXSum<<6) - XSum*XSum ));
}
-void dsp_i386_mmxext_init(DspFunctions *funcs)
+void dsp_mmxext_init(DspFunctions *funcs)
{
fprintf(stderr, "enabling accerated x86_64 mmxext dsp functions.\n");
funcs->row_sad8 = row_sad8__mmxext;
Modified: branches/theora-mmx/lib/x86_64/fdct_mmx.c
===================================================================
--- branches/theora-mmx/lib/x86_64/fdct_mmx.c 2006-05-06 06:56:57 UTC (rev 11348)
+++ branches/theora-mmx/lib/x86_64/fdct_mmx.c 2006-05-06 09:46:47 UTC (rev 11349)
@@ -342,7 +342,7 @@
);
}
-void dsp_i386_mmx_fdct_init(DspFunctions *funcs)
+void dsp_mmx_fdct_init(DspFunctions *funcs)
{
fprintf(stderr, "enabling accelerated x86_64 mmx fdct function.\n");
funcs->fdct_short = fdct_short__mmx;
Modified: branches/theora-mmx/lib/x86_64/recon_mmx.c
===================================================================
--- branches/theora-mmx/lib/x86_64/recon_mmx.c 2006-05-06 06:56:57 UTC (rev 11348)
+++ branches/theora-mmx/lib/x86_64/recon_mmx.c 2006-05-06 09:46:47 UTC (rev 11349)
@@ -170,7 +170,7 @@
);
}
-void dsp_i386_mmx_recon_init(DspFunctions *funcs)
+void dsp_mmx_recon_init(DspFunctions *funcs)
{
fprintf(stderr, "enabling accelerated x86_64 mmx recon functions.\n");
funcs->copy8x8 = copy8x8__mmx;
More information about the commits
mailing list