diff options
author | Dan Pasanen <invisiblek@cyanogenmod.org> | 2016-10-31 11:10:25 -0500 |
---|---|---|
committer | Dan Pasanen <invisiblek@cyanogenmod.org> | 2016-11-03 07:25:33 -0500 |
commit | 2d6cf0cd4d52a074a4f09b564531145e48776ace (patch) | |
tree | 235d7b5a2554d81d88adf3f7a266b1d79dfc48e7 | |
parent | 3217d8c7c059ab426b6ebc67a40283a7a7d0c179 (diff) | |
download | frameworks_base-2d6cf0cd4d52a074a4f09b564531145e48776ace.zip frameworks_base-2d6cf0cd4d52a074a4f09b564531145e48776ace.tar.gz frameworks_base-2d6cf0cd4d52a074a4f09b564531145e48776ace.tar.bz2 |
bootanimation: enable multithread decode by default
Change-Id: Icb17f58a1165b697465a8e3b780c54ff7784c9c6
-rw-r--r-- | cmds/bootanimation/Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/bootanimation/Android.mk b/cmds/bootanimation/Android.mk index d15c274..1715728 100644 --- a/cmds/bootanimation/Android.mk +++ b/cmds/bootanimation/Android.mk @@ -46,7 +46,7 @@ ifeq ($(TARGET_BOOTANIMATION_USE_RGB565),true) LOCAL_CFLAGS += -DUSE_565 endif -ifeq ($(TARGET_BOOTANIMATION_MULTITHREAD_DECODE),true) +ifneq ($(TARGET_BOOTANIMATION_MULTITHREAD_DECODE),false) LOCAL_CFLAGS += -DMULTITHREAD_DECODE endif |