From: DRC Date: Mon, 22 Dec 2014 01:10:11 +0000 (+0000) Subject: Cosmetic tweaks to the PowerPC SIMD stubs X-Git-Tag: 1.4.90~137 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bf8a5feb79c4ca7c392096246056f7fe4d8ad5bb;p=libjpeg-turbo Cosmetic tweaks to the PowerPC SIMD stubs git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@1464 632fc199-4ca6-4c93-a231-07263d6284db --- diff --git a/simd/jsimd_powerpc.c b/simd/jsimd_powerpc.c index f92851c..e3807bb 100644 --- a/simd/jsimd_powerpc.c +++ b/simd/jsimd_powerpc.c @@ -1,5 +1,5 @@ /* - * jsimd_powerpc64.c + * jsimd_powerpc.c * * Copyright 2009 Pierre Ossman for Cendio AB * Copyright 2009-2011, 2014 D. R. Commander @@ -338,7 +338,7 @@ jsimd_can_idct_islow (void) /* The code is optimised for these values only */ if (DCTSIZE != 8) return 0; - if (sizeof(DCTELEM) != 2) + if (sizeof(JCOEF) != 2) return 0; if (simd_support & JSIMD_ALTIVEC) @@ -355,7 +355,7 @@ jsimd_can_idct_ifast (void) /* The code is optimised for these values only */ if (DCTSIZE != 8) return 0; - if (sizeof(DCTELEM) != 2) + if (sizeof(JCOEF) != 2) return 0; if (simd_support & JSIMD_ALTIVEC)