<div dir="ltr">I have written a shared library which wraps the common functionality of GStreamer in a compact and convenient C++ class. I never had a problem using GST via my proxy shared library until I wanted to use it on Android.<div><br></div><div>The problem is that when I compile my shared library for Android, it hardcodes the path to libgstreamer_android.so in it (C:\gstreamer\libgstreamer_android.so) and when I transfer it to my device, it tries to load it off of that absolute path which linker left in my binary.</div><div><br></div><div>Is there a workaround for this problem? I do not have any Java codes at all and my shared library is loaded dynamically by another application which has plugin-authoring support via shared libraries and I am trying to expose GStreamer to it.</div><div><br></div><div>I am using GST 1.6 64 Bit on Windows and latest NDK to date. My Android.mk file is as follows:</div><div><br></div><div>------------------------------------------------------------------</div><div><br></div><div><div>LOCAL_PATH := $(call my-dir)</div><div><br></div><div>include $(CLEAR_VARS)</div><div><br></div><div>LOCAL_MODULE <span class="" style="white-space:pre">                               </span>:= ngw</div><div>LOCAL_SRC_FILES <span class="" style="white-space:pre">                     </span>:= <span class="" style="white-space:pre">       </span>../../source/NanoGstWrapper.cpp \</div><div><span class="" style="white-space:pre">                                                          </span>../../scripts/NanoGstWrapperGlue.cpp</div><div>LOCAL_C_INCLUDES<span class="" style="white-space:pre">                       </span>:=<span class="" style="white-space:pre">        </span>../../include \</div><div><span class="" style="white-space:pre">                                                            </span>../../scripts</div><div>LOCAL_LDLIBS <span class="" style="white-space:pre">                         </span>:= -lGLESv2</div><div>LOCAL_SHARED_LIBRARIES <span class="" style="white-space:pre">         </span>:= gstreamer_android</div><div>LOCAL_ARM_MODE <span class="" style="white-space:pre">                                </span>:= arm</div><div><br></div><div>include $(BUILD_SHARED_LIBRARY)</div><div>include $(CLEAR_VARS)</div><div><br></div><div>GSTREAMER_SDK_ROOT        <span class="" style="white-space:pre">   </span>:= $(GSTREAMER_ROOT)</div><div>GSTREAMER_NDK_BUILD_PATH  <span class="" style="white-space:pre">    </span>:= $(GSTREAMER_SDK_ROOT)/share/gst-android/ndk-build/</div><div><br></div><div>include $(GSTREAMER_NDK_BUILD_PATH)/<a href="http://plugins.mk">plugins.mk</a></div><div><br></div><div>GSTREAMER_PLUGINS         <span class="" style="white-space:pre">   </span>:= <span class="" style="white-space:pre">       </span>$(GSTREAMER_PLUGINS_CORE) \</div><div><span class="" style="white-space:pre">                                                                </span>$(GSTREAMER_PLUGINS_CODECS) \</div><div><span class="" style="white-space:pre">                                                              </span>$(GSTREAMER_PLUGINS_PLAYBACK)</div><div>GSTREAMER_EXTRA_DEPS      <span class="" style="white-space:pre"> </span>:= gstreamer-app-1.0</div><div> </div><div>include $(GSTREAMER_NDK_BUILD_PATH)/<a href="http://gstreamer-1.0.mk">gstreamer-1.0.mk</a></div><div><br></div><div>------------------------------------------------------------------<br></div><div><br></div><div>Thanks in advance</div><div class="gmail_signature"><div dir="ltr"><div style="color:rgb(0,0,0);font-family:Calibri,sans-serif;font-size:14px"><span style="font-family:Tahoma"></span></div></div></div>
</div></div>