You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to android-ndk
MY_LOCAL_PATH := $(call my-dir)
include $(all-subdir-makefiles)
LOCAL_PATH := $(MY_LOCAL_PATH)
include $(CLEAR_VARS)
# Here we give our module name and source file(s)
LOCAL_MODULE := ffmpg
LOCAL_SRC_FILES := ffmpeg.c
LOCAL_PREBUILT_LIBS := libffmpeg.so
include $(BUILD_SHARED_LIBRARY)
I tried using sharedlibrary variable or for that matter static library
variable. I change the name of libffmpeg.so to ffmpeg as LOCAL_MODULE
is defined as ffmpeg in the library source code's mk file. Kindly
check with the same.
The issue is of linking library. I tried using h files only but then
the compiler asks for thhe defination of functions declared in .h
file.
Kindly help me here.
Main issue is of linking.