Hi,<br>
<br>
I have successfully created lib for gstreamer and supported plugin by<br>
using NDK, now i want to test the working of so file, for that I<br>
create a application and create a exe by using NDK .<br>
<br>
Next step is to run the exe on android-emulator, for that first I load<br>
the exe into directory /data/temp by using adb push command, then push<br>
all the shared library which is required to execute the exe i.e.<br>
<br>
<a href="http://libglib-2.0.so/" target="_blank">libglib-2.0.so</a><br>
<a href="http://libgmodule-2.0.so/" target="_blank">libgmodule-2.0.so</a><br>
<a href="http://libgobject-2.0.so/" target="_blank">libgobject-2.0.so</a><br>
<a href="http://libgthread-2.0.so/" target="_blank">libgthread-2.0.so</a><br>
libgstcoreelements-gstplugin.so<br>
<a href="http://libgstreamer-0.10-libs.so/" target="_blank">libgstreamer-0.10-libs.so</a><br>
libgstcoreindexers-gstplugin.so<br>
libgstreamer.so<br>
<a href="http://libgst-plugins-base-libs-0.10.so/" target="_blank">libgst-plugins-base-libs-0.10.so</a><br>
libgstapp.so<br>
<br>
So everything is now in the same folder.<br>
<br>
Next step is to link the library at run time so for that I set the<br>
path by using LD_LIBRARY_PATH<br>
<br>
So up to now everything seem to be OK.<br>
<br>
Final Step: To execute the exe.<br>
<br>
Error: The strange thing that i observe that exe is able to execute<br>
some of the basic api of gstreamer like as,<br>
<br>
gst_init (&argc, &argv);<br>
bin = gst_pipeline_new ("pipeline");<br>
<br>
But while executing following command, exe not able to create appsrc<br>
element.<br>
<br>
appsrc = gst_element_factory_make ("appsrc", NULL); --------> Not<br>
able to create this element<br>
<br>
I have crossed check and I found I have all the .so file that is<br>
required to execute the code.<br>
<br>
GLib: Cannot convert message: Could not open converter from 'UTF-8' to<br>
'ASCII' ----> I am getting this message also while executing the code.<br>
<br>
So, If any body face such type of error or want to share something on<br>
this issue then please share your valueable point.<br>
<br>
Thanks