mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
41 lines
1 KiB
Makefile
41 lines
1 KiB
Makefile
|
LOCAL_PATH:= $(call my-dir)
|
||
|
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
LOCAL_ARM_MODE := arm
|
||
|
|
||
|
videoscale_LOCAL_SRC_FILES:= \
|
||
|
gst/videoscale/gstvideoscale.c \
|
||
|
gst/videoscale/gstvideoscaleorc-dist.c \
|
||
|
gst/videoscale/vs_4tap.c \
|
||
|
gst/videoscale/vs_fill_borders.c \
|
||
|
gst/videoscale/vs_image.c \
|
||
|
gst/videoscale/vs_scanline.c
|
||
|
|
||
|
LOCAL_SRC_FILES:= $(addprefix ../,$(videoscale_LOCAL_SRC_FILES))
|
||
|
|
||
|
LOCAL_SHARED_LIBRARIES := \
|
||
|
libgstvideo-0.10 \
|
||
|
libgstreamer-0.10 \
|
||
|
libgstbase-0.10 \
|
||
|
libglib-2.0 \
|
||
|
libgthread-2.0 \
|
||
|
libgmodule-2.0 \
|
||
|
libgobject-2.0 \
|
||
|
libgstpbutils-0.10
|
||
|
|
||
|
LOCAL_MODULE:= libgstvideoscale
|
||
|
|
||
|
LOCAL_CFLAGS := -DHAVE_CONFIG_H -DGSTREAMER_BUILT_FOR_ANDROID \
|
||
|
$(GST_PLUGINS_BASE_CFLAGS)
|
||
|
#
|
||
|
# define LOCAL_PRELINK_MODULE to false to not use pre-link map
|
||
|
#
|
||
|
LOCAL_PRELINK_MODULE := false
|
||
|
|
||
|
#It's a gstreamer plugins, and it must be installed on ..../lib/gstreamer-0.10
|
||
|
LOCAL_MODULE_PATH := $(TARGET_OUT)/lib/gstreamer-0.10
|
||
|
LOCAL_MODULE_TAGS := optional
|
||
|
|
||
|
include $(BUILD_SHARED_LIBRARY)
|