aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-04-30 18:17:26 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-04-30 18:17:26 +0000
commit213197252c8c4825f6572c651126c22067025fe9 (patch)
treef719b3f380b46146f2e4527ca5b2393942937a2d
parent746f1f0853ddbd14ab5da6af35cc1fa560453d1e (diff)
parente08a211ab982d1877e0b4685f7c2b6560e1f4185 (diff)
downloadjpeg-213197252c8c4825f6572c651126c22067025fe9.tar.gz
Merge "Enable SSE optimized IDCT in jpeg decoding for x86 platform."idea133-weekly-release
-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