mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
More More More
Original commit message from CVS: More More More
This commit is contained in:
parent
aa7a4be370
commit
460cfbb835
1 changed files with 26 additions and 22 deletions
|
@ -25,6 +25,7 @@
|
||||||
#include <gstmpeg2subt.h>
|
#include <gstmpeg2subt.h>
|
||||||
|
|
||||||
static void gst_mpeg2subt_class_init (GstMpeg2SubtClass *klass);
|
static void gst_mpeg2subt_class_init (GstMpeg2SubtClass *klass);
|
||||||
|
static void gst_mpeg2subt_base_init (GstMpeg2SubtClass *klass);
|
||||||
static void gst_mpeg2subt_init (GstMpeg2Subt *mpeg2subt);
|
static void gst_mpeg2subt_init (GstMpeg2Subt *mpeg2subt);
|
||||||
|
|
||||||
static void gst_mpeg2subt_chain_video (GstPad *pad,GstData *_data);
|
static void gst_mpeg2subt_chain_video (GstPad *pad,GstData *_data);
|
||||||
|
@ -39,13 +40,8 @@ static void gst_mpeg2subt_get_property (GObject *object, guint prop_id, GValue
|
||||||
static GstElementDetails mpeg2subt_details = {
|
static GstElementDetails mpeg2subt_details = {
|
||||||
"MPEG2 subtitle Decoder",
|
"MPEG2 subtitle Decoder",
|
||||||
"Codec/Video/Decoder",
|
"Codec/Video/Decoder",
|
||||||
"LGPL",
|
|
||||||
"Decodes and merges MPEG2 subtitles into a video frame",
|
"Decodes and merges MPEG2 subtitles into a video frame",
|
||||||
VERSION,
|
"Wim Taymans <wim.taymans@chello.be>"
|
||||||
"Samuel Hocevar <sam@via.ecp.fr>\n"
|
|
||||||
"Michel Lespinasse <walken@via.ecp.fr>\n"
|
|
||||||
"Wim Taymans <wim.taymans@chello.be>",
|
|
||||||
"(C) 2000",
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* GstMpeg2Subt signals and args */
|
/* GstMpeg2Subt signals and args */
|
||||||
|
@ -92,7 +88,8 @@ gst_mpeg2subt_get_type (void)
|
||||||
|
|
||||||
if (!mpeg2subt_type) {
|
if (!mpeg2subt_type) {
|
||||||
static const GTypeInfo mpeg2subt_info = {
|
static const GTypeInfo mpeg2subt_info = {
|
||||||
sizeof(GstMpeg2SubtClass), NULL,
|
sizeof(GstMpeg2SubtClass),
|
||||||
|
(GBaseInitFunc)gst_mpeg2subt_base_init,
|
||||||
NULL,
|
NULL,
|
||||||
(GClassInitFunc)gst_mpeg2subt_class_init,
|
(GClassInitFunc)gst_mpeg2subt_class_init,
|
||||||
NULL,
|
NULL,
|
||||||
|
@ -106,6 +103,14 @@ gst_mpeg2subt_get_type (void)
|
||||||
return mpeg2subt_type;
|
return mpeg2subt_type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
gst_mpeg2subt_base_init (GstMpeg2SubtClass *klass)
|
||||||
|
{
|
||||||
|
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
||||||
|
|
||||||
|
gst_element_class_set_details (element_class, &mpeg2subt_details);
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gst_mpeg2subt_class_init (GstMpeg2SubtClass *klass)
|
gst_mpeg2subt_class_init (GstMpeg2SubtClass *klass)
|
||||||
{
|
{
|
||||||
|
@ -420,23 +425,22 @@ gst_mpeg2subt_get_property (GObject *object, guint prop_id, GValue *value, GPara
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
plugin_init (GModule *module, GstPlugin *plugin)
|
plugin_init (GstPlugin *plugin)
|
||||||
{
|
{
|
||||||
GstElementFactory *factory;
|
return gst_element_register(plugin, "mpeg2subt",
|
||||||
|
GST_RANK_NONE, GST_TYPE_MPEG2SUBT);
|
||||||
/* create an elementfactory for the mpeg2subt element */
|
|
||||||
factory = gst_element_factory_new("mpeg2subt",GST_TYPE_MPEG2SUBT,
|
|
||||||
&mpeg2subt_details);
|
|
||||||
g_return_val_if_fail(factory != NULL, FALSE);
|
|
||||||
|
|
||||||
gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory));
|
|
||||||
|
|
||||||
return TRUE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
GstPluginDesc plugin_desc = {
|
GST_PLUGIN_DEFINE (
|
||||||
GST_VERSION_MAJOR,
|
GST_VERSION_MAJOR,
|
||||||
GST_VERSION_MINOR,
|
GST_VERSION_MINOR,
|
||||||
"mpeg2subt",
|
"mpeg2sub",
|
||||||
plugin_init
|
"MPEG-2 video subtitle parser",
|
||||||
};
|
plugin_init,
|
||||||
|
VERSION,
|
||||||
|
"LGPL",
|
||||||
|
"(c) 2001 Samuel Hocevar <sam@via.ecp.fr>\n"
|
||||||
|
"(c) 2001 Michel Lespinasse <walken@via.ecp.fr>",
|
||||||
|
GST_PACKAGE,
|
||||||
|
GST_ORIGIN
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in a new issue