<p><br>
El 11/03/2013 12:10, <<a href="mailto:stic@free.fr">stic@free.fr</a>> escribió:<br>
><br>
> Hello,<br>
><br>
> in the case I am trying to create a custom gstreamer plugin, how can I provide it to gstreamer in Android app ?<br>
> I didn't find how to provide a custom plugin to Android gstreamer. Gstreamer finds only plugins already available in the GST SDK.<br>
> I even tried to add the static library of custom plugin in the same path as the standard plugins (GSTREAMER_SDK_ROOT/lib/gstreamer-0.10/static) but I always have the following message when trying to provide the plugin : error: undefined reference to 'gst_plugin_testplugin_register'<br>

> (where testplugin is the name of my plugin)<br>
><br>
You will also need to create a libtool library for it in this directory (eg: <a href="http://libgsttestplugin.la">libgsttestplugin.la</a>) to help the linker find and link your plugin. And you must compile your plugin with -DGST_PLUGIN_STATIC_BUILD in your CFLAGS. <br>

Andoni<br>
> Thanks a lot for any help :)<br>
> _______________________________________________<br>
> gstreamer-android mailing list<br>
> <a href="mailto:gstreamer-android@lists.freedesktop.org">gstreamer-android@lists.freedesktop.org</a><br>
> <a href="http://lists.freedesktop.org/mailman/listinfo/gstreamer-android">http://lists.freedesktop.org/mailman/listinfo/gstreamer-android</a><br>
</p>