mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-20 12:28:26 +01:00
834f937f3c
add proper cpu-detection for Android targets Fixes issue #118 (and is a better solution for #117). based on patch by pepijn vaneeckhoudt Change-Id: I6b00ea6d51ca658ccf6a3d55b87b99c01c6805be
70 lines
1.6 KiB
Makefile
70 lines
1.6 KiB
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := \
|
|
src/dec/alpha.c \
|
|
src/dec/buffer.c \
|
|
src/dec/frame.c \
|
|
src/dec/idec.c \
|
|
src/dec/io.c \
|
|
src/dec/layer.c \
|
|
src/dec/quant.c \
|
|
src/dec/tree.c \
|
|
src/dec/vp8.c \
|
|
src/dec/vp8l.c \
|
|
src/dec/webp.c \
|
|
src/dsp/cpu.c \
|
|
src/dsp/dec.c \
|
|
src/dsp/dec_neon.c \
|
|
src/dsp/dec_sse2.c \
|
|
src/dsp/enc.c \
|
|
src/dsp/enc_sse2.c \
|
|
src/dsp/lossless.c \
|
|
src/dsp/upsampling.c \
|
|
src/dsp/upsampling_sse2.c \
|
|
src/dsp/yuv.c \
|
|
src/enc/alpha.c \
|
|
src/enc/analysis.c \
|
|
src/enc/config.c \
|
|
src/enc/cost.c \
|
|
src/enc/filter.c \
|
|
src/enc/frame.c \
|
|
src/enc/iterator.c \
|
|
src/enc/layer.c \
|
|
src/enc/picture.c \
|
|
src/enc/quant.c \
|
|
src/enc/syntax.c \
|
|
src/enc/tree.c \
|
|
src/enc/webpenc.c \
|
|
src/mux/muxedit.c \
|
|
src/mux/muxinternal.c \
|
|
src/mux/muxread.c \
|
|
src/utils/alpha.c \
|
|
src/utils/bit_reader.c \
|
|
src/utils/bit_writer.c \
|
|
src/utils/color_cache.c \
|
|
src/utils/filters.c \
|
|
src/utils/huffman.c \
|
|
src/utils/quant_levels.c \
|
|
src/utils/rescaler.c \
|
|
src/utils/tcoder.c \
|
|
src/utils/thread.c \
|
|
|
|
LOCAL_CFLAGS := -Wall -DANDROID -DHAVE_MALLOC_H -DHAVE_PTHREAD \
|
|
-DNOT_HAVE_LOG2 -DWEBP_USE_THREAD \
|
|
-finline-functions -frename-registers -ffast-math \
|
|
-s -fomit-frame-pointer -Isrc/webp
|
|
|
|
LOCAL_C_INCLUDES += $(LOCAL_PATH)/src
|
|
|
|
ifeq ($(TARGET_ARCH_ABI),armeabi-v7a)
|
|
LOCAL_ARM_NEON := true
|
|
endif
|
|
LOCAL_STATIC_LIBRARIES := cpufeatures
|
|
|
|
LOCAL_MODULE:= webp
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
$(call import-module,android/cpufeatures)
|