mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-09 08:55:33 +00:00
Register the two indexers
Original commit message from CVS: Register the two indexers
This commit is contained in:
parent
411642197f
commit
d093fb3fa4
8 changed files with 98 additions and 50 deletions
|
@ -2,7 +2,7 @@ plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstindexers.la
|
plugin_LTLIBRARIES = libgstindexers.la
|
||||||
|
|
||||||
libgstindexers_la_SOURCES = gstmemindex.c gstfileindex.c
|
libgstindexers_la_SOURCES = gstindexers.c gstmemindex.c gstfileindex.c
|
||||||
libgstindexers_la_CFLAGS = $(GST_CFLAGS)
|
libgstindexers_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstindexers_la_LIBADD =
|
libgstindexers_la_LIBADD =
|
||||||
libgstindexers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstindexers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
|
@ -864,12 +864,8 @@ gst_file_index_get_assoc_entry (GstIndex *index,
|
||||||
return entry;
|
return entry;
|
||||||
}
|
}
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
gboolean
|
||||||
// [UNTESTED] i don't understand the following plugin stuff [UNTESTED]
|
gst_file_index_plugin_init (GModule *module, GstPlugin *plugin)
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
static gboolean
|
|
||||||
plugin_init (GModule *module, GstPlugin *plugin)
|
|
||||||
{
|
{
|
||||||
GstIndexFactory *factory;
|
GstIndexFactory *factory;
|
||||||
|
|
||||||
|
@ -887,11 +883,3 @@ plugin_init (GModule *module, GstPlugin *plugin)
|
||||||
}
|
}
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
GstPluginDesc plugin_desc2 = {
|
|
||||||
GST_VERSION_MAJOR,
|
|
||||||
GST_VERSION_MINOR,
|
|
||||||
"gstindexs",
|
|
||||||
plugin_init
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
44
gst/indexers/gstindexers.c
Normal file
44
gst/indexers/gstindexers.c
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
/* GStreamer
|
||||||
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* Library General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Library General Public
|
||||||
|
* License along with this library; if not, write to the
|
||||||
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
|
* Boston, MA 02111-1307, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <gst/gst_private.h>
|
||||||
|
#include <gst/gstversion.h>
|
||||||
|
#include <gst/gstplugin.h>
|
||||||
|
|
||||||
|
extern gboolean gst_mem_index_plugin_init (GModule *module, GstPlugin *plugin);
|
||||||
|
extern gboolean gst_file_index_plugin_init (GModule *module, GstPlugin *plugin);
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
plugin_init (GModule *module, GstPlugin *plugin)
|
||||||
|
{
|
||||||
|
gboolean res = TRUE;
|
||||||
|
|
||||||
|
res &= gst_mem_index_plugin_init (module, plugin);
|
||||||
|
res &= gst_file_index_plugin_init (module, plugin);
|
||||||
|
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
GstPluginDesc plugin_desc = {
|
||||||
|
GST_VERSION_MAJOR,
|
||||||
|
GST_VERSION_MINOR,
|
||||||
|
"gstindexers",
|
||||||
|
plugin_init
|
||||||
|
};
|
||||||
|
|
|
@ -401,8 +401,8 @@ gst_mem_index_get_assoc_entry (GstIndex *index, gint id,
|
||||||
return entry;
|
return entry;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
gboolean
|
||||||
plugin_init (GModule *module, GstPlugin *plugin)
|
gst_mem_index_plugin_init (GModule *module, GstPlugin *plugin)
|
||||||
{
|
{
|
||||||
GstIndexFactory *factory;
|
GstIndexFactory *factory;
|
||||||
|
|
||||||
|
@ -420,11 +420,3 @@ plugin_init (GModule *module, GstPlugin *plugin)
|
||||||
}
|
}
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
GstPluginDesc plugin_desc = {
|
|
||||||
GST_VERSION_MAJOR,
|
|
||||||
GST_VERSION_MINOR,
|
|
||||||
"gstindexs",
|
|
||||||
plugin_init
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstindexers.la
|
plugin_LTLIBRARIES = libgstindexers.la
|
||||||
|
|
||||||
libgstindexers_la_SOURCES = gstmemindex.c gstfileindex.c
|
libgstindexers_la_SOURCES = gstindexers.c gstmemindex.c gstfileindex.c
|
||||||
libgstindexers_la_CFLAGS = $(GST_CFLAGS)
|
libgstindexers_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstindexers_la_LIBADD =
|
libgstindexers_la_LIBADD =
|
||||||
libgstindexers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstindexers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
|
@ -864,12 +864,8 @@ gst_file_index_get_assoc_entry (GstIndex *index,
|
||||||
return entry;
|
return entry;
|
||||||
}
|
}
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
gboolean
|
||||||
// [UNTESTED] i don't understand the following plugin stuff [UNTESTED]
|
gst_file_index_plugin_init (GModule *module, GstPlugin *plugin)
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
static gboolean
|
|
||||||
plugin_init (GModule *module, GstPlugin *plugin)
|
|
||||||
{
|
{
|
||||||
GstIndexFactory *factory;
|
GstIndexFactory *factory;
|
||||||
|
|
||||||
|
@ -887,11 +883,3 @@ plugin_init (GModule *module, GstPlugin *plugin)
|
||||||
}
|
}
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
GstPluginDesc plugin_desc2 = {
|
|
||||||
GST_VERSION_MAJOR,
|
|
||||||
GST_VERSION_MINOR,
|
|
||||||
"gstindexs",
|
|
||||||
plugin_init
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
44
plugins/indexers/gstindexers.c
Normal file
44
plugins/indexers/gstindexers.c
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
/* GStreamer
|
||||||
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* Library General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Library General Public
|
||||||
|
* License along with this library; if not, write to the
|
||||||
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
|
* Boston, MA 02111-1307, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <gst/gst_private.h>
|
||||||
|
#include <gst/gstversion.h>
|
||||||
|
#include <gst/gstplugin.h>
|
||||||
|
|
||||||
|
extern gboolean gst_mem_index_plugin_init (GModule *module, GstPlugin *plugin);
|
||||||
|
extern gboolean gst_file_index_plugin_init (GModule *module, GstPlugin *plugin);
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
plugin_init (GModule *module, GstPlugin *plugin)
|
||||||
|
{
|
||||||
|
gboolean res = TRUE;
|
||||||
|
|
||||||
|
res &= gst_mem_index_plugin_init (module, plugin);
|
||||||
|
res &= gst_file_index_plugin_init (module, plugin);
|
||||||
|
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
GstPluginDesc plugin_desc = {
|
||||||
|
GST_VERSION_MAJOR,
|
||||||
|
GST_VERSION_MINOR,
|
||||||
|
"gstindexers",
|
||||||
|
plugin_init
|
||||||
|
};
|
||||||
|
|
|
@ -401,8 +401,8 @@ gst_mem_index_get_assoc_entry (GstIndex *index, gint id,
|
||||||
return entry;
|
return entry;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
gboolean
|
||||||
plugin_init (GModule *module, GstPlugin *plugin)
|
gst_mem_index_plugin_init (GModule *module, GstPlugin *plugin)
|
||||||
{
|
{
|
||||||
GstIndexFactory *factory;
|
GstIndexFactory *factory;
|
||||||
|
|
||||||
|
@ -420,11 +420,3 @@ plugin_init (GModule *module, GstPlugin *plugin)
|
||||||
}
|
}
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
GstPluginDesc plugin_desc = {
|
|
||||||
GST_VERSION_MAJOR,
|
|
||||||
GST_VERSION_MINOR,
|
|
||||||
"gstindexs",
|
|
||||||
plugin_init
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue