summaryrefslogtreecommitdiff
path: root/contrib/intel/intel_init.c
diff options
context:
space:
mode:
authorGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2016-02-19 14:58:59 -0600
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2016-02-19 14:58:59 -0600
commitda9d1d7aa6f4b12ec065a37666aef9207c9ad1cb (patch)
treee5804ed18f78273806fd92e34079538f9e41240e /contrib/intel/intel_init.c
parent52846504da1f519cf1bb89636caf9110e8677443 (diff)
[libpng16] Added pngdebug() statements to the new intel code and the arm code.
Diffstat (limited to 'contrib/intel/intel_init.c')
-rw-r--r--contrib/intel/intel_init.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/intel/intel_init.c b/contrib/intel/intel_init.c
index fc0d9abfd..357e147b9 100644
--- a/contrib/intel/intel_init.c
+++ b/contrib/intel/intel_init.c
@@ -4,7 +4,7 @@
* Copyright (c) 2016 Google, Inc.
* Written by Mike Klein and Matt Sarett
* Derived from arm/arm_init.c, which was
- * Copyright (c) 2014 Glenn Randers-Pehrson
+ * Copyright (c) 2014,2016 Glenn Randers-Pehrson
*
* Last changed in libpng 1.6.22 [(PENDING RELEASE)]
*
@@ -29,6 +29,7 @@ png_init_filter_functions_sse2(png_structp pp, unsigned int bpp)
* Most of these can be implemented using only MMX and 64-bit registers,
* but they end up a bit slower than using the equally-ubiquitous SSE2.
*/
+ png_debug(1, "in png_init_filter_functions_sse2");
if (bpp == 3)
{
pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub3_sse2;