aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXun Sun <xun.sun@intel.com>2013-11-13 18:00:45 +0800
committerbxu10x <binx.xu@intel.com>2014-04-30 10:24:03 +0000
commite08a211ab982d1877e0b4685f7c2b6560e1f4185 (patch)
treef719b3f380b46146f2e4527ca5b2393942937a2d
parent746f1f0853ddbd14ab5da6af35cc1fa560453d1e (diff)
downloadjpeg-e08a211ab982d1877e0b4685f7c2b6560e1f4185.tar.gz
Enable SSE optimized IDCT in jpeg decoding for x86 platform.
Change-Id: I9a646a0ca208e9ad1a11929f3fd71b7d19592dd9 Signed-off-by: Xun Sun <xun.sun@intel.com>
-rw-r--r--Android.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index 6e78c74..b5905d1 100644
--- a/Android.mk
+++ b/Android.mk
@@ -35,7 +35,7 @@ LOCAL_CFLAGS += -O3 -fstrict-aliasing -fprefetch-loop-arrays
# enable tile based decode
LOCAL_CFLAGS += -DANDROID_TILE_BASED_DECODE
-ifeq ($(TARGET_ARCH_VARIANT),x86-atom)
+ifeq ($(TARGET_ARCH),x86)
LOCAL_CFLAGS += -DANDROID_INTELSSE2_IDCT
LOCAL_SRC_FILES += jidctintelsse.c
endif