mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
26 lines
484 B
Makefile
Executable file
26 lines
484 B
Makefile
Executable file
##lib swcale###################
|
|
LOCAL_PATH:= $(call my-dir)/../../ffmpeg/libswscale/
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := liblinswscale
|
|
|
|
LOCAL_SRC_FILES = \
|
|
options.c \
|
|
rgb2rgb.c \
|
|
swscale.c \
|
|
utils.c \
|
|
yuv2rgb.c
|
|
|
|
LOCAL_CFLAGS += -DHAVE_AV_CONFIG_H
|
|
|
|
LOCAL_ARM_MODE := arm
|
|
|
|
#for including config.h:
|
|
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../../build/ffmpeg-arm \
|
|
$(LOCAL_PATH)/ \
|
|
$(LOCAL_PATH)/../
|
|
|
|
LOCAL_SHARED_LIBRARIES := liblinavutil
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|