mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-04 15:36:35 +00:00
12 lines
272 B
C
12 lines
272 B
C
#include <gst/gst.h>
|
|
|
|
void
|
|
gstsharp_gst_index_factory_set_plugin (GstIndexFactory * factory,
|
|
GstPlugin * plugin)
|
|
{
|
|
if (!plugin)
|
|
return;
|
|
|
|
GST_PLUGIN_FEATURE (factory)->plugin_name = g_strdup (plugin->desc.name);
|
|
GST_PLUGIN_FEATURE (factory)->loaded = TRUE;
|
|
}
|