我正在尝试将XMP工具包移植到android设备。我能够成功构建xmpcore,并具有一个libXMPCore.so。当我尝试使用ndk-build制作libXMPFile.so时,我遇到了一些我不理解的问题。

1)好像libXMPFile.so依赖于libXMPCore.so。我设法将libXMPCore.so包含在libXMPFiles的Android.mk中。我的Android.mk看起来像这样:

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)

# Include all cpp file
LOCAL_SRC_FILES := \
../source/WXMPFiles.cpp \
../source/XMPFiles.cpp \
../source/XMPFiles_Impl.cpp \
../../source/XMP_LibUtils.cpp \
../../source/UnicodeConversions.cpp \
../../source/XML_Node.cpp \
../../third-party/zuid/interfaces/MD5.cpp \
../source/FileHandlers/ASF_Handler.cpp \
../source/FileHandlers/AVCHD_Handler.cpp \
../source/FileHandlers/RIFF_Handler.cpp \
../source/FileHandlers/Basic_Handler.cpp \
../source/FileHandlers/FLV_Handler.cpp \
../source/FileHandlers/InDesign_Handler.cpp \
../source/FileHandlers/JPEG_Handler.cpp \
../source/FileHandlers/MP3_Handler.cpp \
../source/FileHandlers/MPEG2_Handler.cpp \
../source/FileHandlers/MPEG4_Handler.cpp \
../source/FileHandlers/P2_Handler.cpp \
../source/FileHandlers/PNG_Handler.cpp \
../source/FileHandlers/PostScript_Handler.cpp \
../source/FileHandlers/PSD_Handler.cpp \
../source/FileHandlers/Scanner_Handler.cpp \
../source/FileHandlers/SonyHDV_Handler.cpp \
../source/FileHandlers/SWF_Handler.cpp \
../source/FileHandlers/TIFF_Handler.cpp \
../source/FileHandlers/Trivial_Handler.cpp \
../source/FileHandlers/UCF_Handler.cpp \
../source/FileHandlers/XDCAM_Handler.cpp \
../source/FileHandlers/XDCAMEX_Handler.cpp \
../source/FormatSupport/ASF_Support.cpp \
../source/FormatSupport/IPTC_Support.cpp \
../source/FormatSupport/MOOV_Support.cpp \
../source/FormatSupport/ISOBaseMedia_Support.cpp \
../source/FormatSupport/PNG_Support.cpp \
../source/FormatSupport/PSIR_FileWriter.cpp \
../source/FormatSupport/PSIR_MemoryReader.cpp \
../source/FormatSupport/QuickTime_Support.cpp \
../source/FormatSupport/Reconcile_Impl.cpp \
../source/FormatSupport/ReconcileIPTC.cpp \
../source/FormatSupport/ReconcileLegacy.cpp \
../source/FormatSupport/ReconcileTIFF.cpp \
../source/FormatSupport/RIFF.cpp \
../source/FormatSupport/RIFF_Support.cpp \
../source/FormatSupport/SWF_Support.cpp \
../source/FormatSupport/TIFF_FileWriter.cpp \
../source/FormatSupport/TIFF_MemoryReader.cpp \
../source/FormatSupport/TIFF_Support.cpp \
../source/FormatSupport/XDCAM_Support.cpp \
../source/FormatSupport/XMPScanner.cpp \
../source/HandlerRegistry.cpp \
../source/FileHandlers/AIFF_Handler.cpp \
../source/FileHandlers/WAVE_Handler.cpp \
../source/FormatSupport/ID3_Support.cpp \
../source/FormatSupport/AIFF/AIFFBehavior.cpp \
../source/FormatSupport/AIFF/AIFFMetadata.cpp \
../source/FormatSupport/AIFF/AIFFReconcile.cpp \
../source/FormatSupport/IFF/Chunk.cpp \
../source/FormatSupport/IFF/ChunkController.cpp\
../source/FormatSupport/IFF/ChunkPath.cpp \
../source/FormatSupport/IFF/IChunkBehavior.cpp \
../source/FormatSupport/WAVE/BEXTMetadata.cpp \
../source/FormatSupport/WAVE/CartMetadata.cpp \
../source/FormatSupport/WAVE/Cr8rMetadata.cpp \
../source/FormatSupport/WAVE/DISPMetadata.cpp \
../source/FormatSupport/WAVE/INFOMetadata.cpp \
../source/FormatSupport/WAVE/PrmLMetadata.cpp \
../source/FormatSupport/WAVE/WAVEBehavior.cpp \
../source/FormatSupport/WAVE/WAVEReconcile.cpp \
../source/NativeMetadataSupport/IMetadata.cpp \
../source/NativeMetadataSupport/IReconcile.cpp \
../source/NativeMetadataSupport/MetadataSet.cpp \
../source/PluginHandler/FileHandlerInstance.cpp \
../source/PluginHandler/HostAPIImpl.cpp \
../source/PluginHandler/Module.cpp \
../source/PluginHandler/OS_Utils_Linux.cpp \
../source/PluginHandler/PluginManager.cpp \
../source/PluginHandler/XMPAtoms.cpp \
../../source/Host_IO-UNIX.cpp \
../../source/XIO.cpp \
../../source/XMPFiles_IO.cpp \
../public/include/client-glue\TXMPMeta.incl_cpp

LOCAL_CPPFLAGS := -std=c++0x
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../../../../../../../android-ndk-r8e/sources/cxx-     stl/gnu-libstdc++/4.6/libs/x86/include
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../../../../../../../android-ndk-r8e/sources/cxx-  stl/gnu-libstdc++/4.6/include
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../../../../../../../
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../source
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../../source
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../..
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../../public/include
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../../XMPFilesPlugins/api/source

LOCAL_LDLIBS := $(LOCAL_PATH)/../obj/local/armeabi-v7a/libXMPCore.so

LOCAL_MODULE := xmpfile
LOCAL_MODULE_TAGS := optional
include $(BUILD_SHARED_LIBRARY)


但是,当我尝试运行ndk-build时,它抱怨链接错误,例如:
WXMPFiles.o:在函数WXMPFiles_GetXMP_1中:/home/w18656/workspace/xline2/main-jb-qcpro-4.2-xline/motorola/hal/ispbypass/xmp/XMP-Toolkit-SDK-CS6/XMPFiles/jni /../源/WXMPFiles.cpp:288:错误:未定义对“ TXMPMeta,std :: allocator>> :: TXMPMeta(XMPMeta *)”的引用

对于TXMPMeta类的实现,我感到很困惑。好像定义在TXMPMeta.hpp中,而类的实现在client-glue / TXMPMeta.incl_cpp中。

但是,我检查了XMPFiles.mak,而TXMPMeta.incl_cpp不是我们编译的文件之一。我们如何在其中编译类TXMPMeta的实现? (与其他TXMPxxx.incl_cpp相同的问题)

我正在使用8e android NDK,并尝试为XMPCore和XMPFiles构建本机共享库。

感谢你的帮助。

最佳答案

我认为我设法对源代码进行了一些修改,将其编译为android,请查看此项目:

https://github.com/janrueegg/xmp

这是为Android编译的方法,请确保将ANDROID_NDK设置为正确的路径。

git clone https://github.com/janrueegg/xmp.git
cd xmp/build
export ANDROID_NDK=~/my-android-ndk
make StaticReleaseAndroid
mkdir -p xmp/lib
cp -r ../public/include/ xmp/
cp ../public/libraries/i80386linux/release/*.ar xmp/lib


这将为您提供一个名为“ xmp”的带有静态库的文件夹,以及一个包含标题的include文件夹。

只需使用此包含路径进行编译并链接到给定的库...

关于android - 在Android设备上运行 native Adobe XMP,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17153318/

10-11 22:38
查看更多