mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-20 11:33:06 +00:00
18 lines
524 B
Makefile
18 lines
524 B
Makefile
# Android.mk for Limelight's H264 decoder
|
|
MY_LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(call all-subdir-makefiles)
|
|
|
|
LOCAL_PATH := $(MY_LOCAL_PATH)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := nv_avc_dec
|
|
LOCAL_SRC_FILES := nv_avc_dec.c nv_avc_dec_jni.c
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/ffmpeg/$(TARGET_ARCH_ABI)/include
|
|
LOCAL_LDLIBS := -L$(SYSROOT)/usr/lib -llog -landroid
|
|
|
|
# Link to ffmpeg libraries
|
|
LOCAL_SHARED_LIBRARIES := libavcodec libavformat libswscale libavutil libavfilter libwsresample
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|