]> granicus.if.org Git - libjpeg-turbo/commitdiff
Cosmetic tweaks to the PowerPC SIMD stubs
authorDRC <dcommander@users.sourceforge.net>
Mon, 22 Dec 2014 01:10:11 +0000 (01:10 +0000)
committerDRC <dcommander@users.sourceforge.net>
Mon, 22 Dec 2014 01:10:11 +0000 (01:10 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@1464 632fc199-4ca6-4c93-a231-07263d6284db

simd/jsimd_powerpc.c

index f92851c57aa938095e5de37d38a5de1a4057a8df..e3807bb94f98a4ef8ded94bb3b13eda075107ba8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * jsimd_powerpc64.c
+ * jsimd_powerpc.c
  *
  * Copyright 2009 Pierre Ossman <ossman@cendio.se> 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)