2002-12-19 21:34:56 +00:00
|
|
|
/* 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.
|
|
|
|
*/
|
|
|
|
|
2003-06-29 19:46:13 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2003-11-07 12:47:02 +00:00
|
|
|
|
2002-12-19 21:34:56 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include "gstvbidec.h"
|
|
|
|
#include "vbidata.h"
|
|
|
|
#include "vbiscreen.h"
|
|
|
|
|
|
|
|
#define GST_TYPE_VBIDEC \
|
|
|
|
(gst_vbidec_get_type())
|
|
|
|
#define GST_VBIDEC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_VBIDEC,GstVBIDec))
|
|
|
|
#define GST_VBIDEC_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_VBIDEC,GstVBIDec))
|
|
|
|
#define GST_IS_VBIDEC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VBIDEC))
|
|
|
|
#define GST_IS_VBIDEC_CLASS(obj) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VBIDEC))
|
|
|
|
|
|
|
|
//typedef struct _GstVBIDec GstVBIDec;
|
|
|
|
typedef struct _GstVBIDecClass GstVBIDecClass;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
struct _GstVBIDec
|
|
|
|
{
|
|
|
|
GstElement element;
|
2002-12-19 21:34:56 +00:00
|
|
|
|
|
|
|
/* pads */
|
2004-03-14 22:34:33 +00:00
|
|
|
GstPad *sinkpad, *srcpad;
|
|
|
|
char caption[128];
|
|
|
|
vbiscreen_t *vbiscreen;
|
|
|
|
vbidata_t *vbidata;
|
|
|
|
int caption_type;
|
|
|
|
gboolean dvd_input;
|
2002-12-19 21:34:56 +00:00
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
struct _GstVBIDecClass
|
|
|
|
{
|
2002-12-19 21:34:56 +00:00
|
|
|
GstElementClass parent_class;
|
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
GType gst_vbidec_get_type (void);
|
2002-12-19 21:34:56 +00:00
|
|
|
|
|
|
|
/* elementfactory information */
|
2004-03-14 22:34:33 +00:00
|
|
|
static GstElementDetails gst_vbidec_details =
|
|
|
|
GST_ELEMENT_DETAILS ("VBI decoder",
|
|
|
|
"Codec/Decoder/Video",
|
|
|
|
"Decodes closed captions and XDS data from VBI data",
|
|
|
|
"David I. Lehn <dlehn@users.sourceforge.net>");
|
2002-12-19 21:34:56 +00:00
|
|
|
|
|
|
|
/* VBIDec signals and args */
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2002-12-19 21:34:56 +00:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2002-12-19 21:34:56 +00:00
|
|
|
ARG_0,
|
2003-01-09 05:26:47 +00:00
|
|
|
ARG_VERBOSE,
|
2002-12-19 21:34:56 +00:00
|
|
|
ARG_CAPTION_TYPE,
|
|
|
|
ARG_DVD_INPUT
|
|
|
|
};
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
static GstStaticPadTemplate gst_vbidec_sink_template =
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS_ANY);
|
2002-12-19 21:34:56 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
static GstStaticPadTemplate gst_vbidec_src_template =
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("text/plain")
|
|
|
|
);
|
2002-12-19 21:34:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
#define GST_TYPE_VBIDEC_CAPTION_TYPE_TYPE (gst_vbidec_caption_type_get_type())
|
|
|
|
static GType
|
|
|
|
gst_vbidec_caption_type_get_type (void)
|
|
|
|
{
|
|
|
|
static GType vbidec_caption_type_type = 0;
|
|
|
|
static GEnumValue vbidec_caption_type[] = {
|
2004-03-14 22:34:33 +00:00
|
|
|
{CAPTURE_OFF, "0", "Closed Captions off"},
|
|
|
|
{CAPTURE_CC1, "1", "Closed Caption CC1"},
|
|
|
|
{CAPTURE_CC2, "2", "Closed Caption CC2"},
|
|
|
|
{CAPTURE_CC3, "4", "Closed Caption CC3"},
|
|
|
|
{CAPTURE_CC4, "5", "Closed Caption CC4"},
|
|
|
|
{CAPTURE_T1, "6", "Closed Caption T1"},
|
|
|
|
{CAPTURE_T2, "7", "Closed Caption T2"},
|
|
|
|
{CAPTURE_T3, "8", "Closed Caption T3"},
|
|
|
|
{CAPTURE_T4, "9", "Closed Caption T4"},
|
2002-12-19 21:34:56 +00:00
|
|
|
{0, NULL, NULL},
|
|
|
|
};
|
2004-03-15 19:32:27 +00:00
|
|
|
|
2002-12-19 21:34:56 +00:00
|
|
|
if (!vbidec_caption_type_type) {
|
2004-03-14 22:34:33 +00:00
|
|
|
vbidec_caption_type_type =
|
2004-03-15 19:32:27 +00:00
|
|
|
g_enum_register_static ("GstVBIDecCaptionTypeType",
|
|
|
|
vbidec_caption_type);
|
2002-12-19 21:34:56 +00:00
|
|
|
}
|
|
|
|
return vbidec_caption_type_type;
|
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void gst_vbidec_base_init (gpointer g_class);
|
|
|
|
static void gst_vbidec_class_init (GstVBIDecClass * klass);
|
|
|
|
static void gst_vbidec_init (GstVBIDec * vbidec);
|
2002-12-19 21:34:56 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void gst_vbidec_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_vbidec_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
2002-12-19 21:34:56 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void gst_vbidec_chain (GstPad * pad, GstData * _data);
|
2002-12-19 21:34:56 +00:00
|
|
|
|
|
|
|
static GstElementClass *parent_class = NULL;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2002-12-19 21:34:56 +00:00
|
|
|
/*static guint gst_vbidec_signals[LAST_SIGNAL] = { 0 };*/
|
|
|
|
|
|
|
|
GType
|
|
|
|
gst_vbidec_get_type (void)
|
|
|
|
{
|
|
|
|
static GType vbidec_type = 0;
|
|
|
|
|
|
|
|
if (!vbidec_type) {
|
|
|
|
static const GTypeInfo vbidec_info = {
|
2004-03-14 22:34:33 +00:00
|
|
|
sizeof (GstVBIDecClass),
|
2003-11-02 22:34:11 +00:00
|
|
|
gst_vbidec_base_init,
|
2002-12-19 21:34:56 +00:00
|
|
|
NULL,
|
2004-03-14 22:34:33 +00:00
|
|
|
(GClassInitFunc) gst_vbidec_class_init,
|
2002-12-19 21:34:56 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-03-14 22:34:33 +00:00
|
|
|
sizeof (GstVBIDec),
|
2002-12-19 21:34:56 +00:00
|
|
|
0,
|
2004-03-14 22:34:33 +00:00
|
|
|
(GInstanceInitFunc) gst_vbidec_init,
|
2002-12-19 21:34:56 +00:00
|
|
|
};
|
2004-03-15 19:32:27 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
vbidec_type =
|
2004-03-15 19:32:27 +00:00
|
|
|
g_type_register_static (GST_TYPE_ELEMENT, "GstVBIDec", &vbidec_info, 0);
|
2002-12-19 21:34:56 +00:00
|
|
|
}
|
|
|
|
return vbidec_type;
|
|
|
|
}
|
|
|
|
|
2003-11-02 22:34:11 +00:00
|
|
|
static void
|
|
|
|
gst_vbidec_base_init (gpointer g_class)
|
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
|
|
|
|
|
|
|
gst_element_class_set_details (element_class, &gst_vbidec_details);
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&gst_vbidec_src_template));
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&gst_vbidec_sink_template));
|
2003-11-02 22:34:11 +00:00
|
|
|
}
|
2002-12-19 21:34:56 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_vbidec_class_init (GstVBIDecClass * klass)
|
2002-12-19 21:34:56 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
gstelement_class = (GstElementClass *) klass;
|
2002-12-19 21:34:56 +00:00
|
|
|
|
2006-04-08 21:48:01 +00:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
2002-12-19 21:34:56 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gobject_class->set_property = gst_vbidec_set_property;
|
|
|
|
gobject_class->get_property = gst_vbidec_get_property;
|
2002-12-19 21:34:56 +00:00
|
|
|
|
2003-01-09 05:26:47 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_VERBOSE,
|
|
|
|
g_param_spec_boolean ("verbose", "verbose", "verbose",
|
2004-03-15 19:32:27 +00:00
|
|
|
FALSE, G_PARAM_WRITABLE));
|
2002-12-19 21:34:56 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_CAPTION_TYPE,
|
|
|
|
g_param_spec_enum ("caption type", "caption type", "Closed Caption Type",
|
2004-03-15 19:32:27 +00:00
|
|
|
GST_TYPE_VBIDEC_CAPTION_TYPE_TYPE, CAPTURE_OFF, G_PARAM_READWRITE));
|
2002-12-19 21:34:56 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_DVD_INPUT,
|
2004-03-14 22:34:33 +00:00
|
|
|
g_param_spec_boolean ("dvd input", "dvd input",
|
2004-03-15 19:32:27 +00:00
|
|
|
"VBI is encapsulated in MPEG2 GOP user_data field (as on DVDs)",
|
|
|
|
FALSE, G_PARAM_READWRITE));
|
2002-12-19 21:34:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_vbidec_init (GstVBIDec * vbidec)
|
2002-12-19 21:34:56 +00:00
|
|
|
{
|
|
|
|
/* create the sink and src pads */
|
2004-03-14 22:34:33 +00:00
|
|
|
vbidec->sinkpad =
|
|
|
|
gst_pad_new_from_template (gst_static_pad_template_get
|
|
|
|
(&gst_vbidec_sink_template), "sink");
|
2002-12-19 21:34:56 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (vbidec), vbidec->sinkpad);
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_pad_set_chain_function (vbidec->sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_vbidec_chain));
|
2002-12-19 21:34:56 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
vbidec->srcpad =
|
|
|
|
gst_pad_new_from_template (gst_static_pad_template_get
|
|
|
|
(&gst_vbidec_src_template), "src");
|
2002-12-19 21:34:56 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (vbidec), vbidec->srcpad);
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
vbidec->vbiscreen = vbiscreen_new (0, 0, 1.0, 0, (void *) vbidec);
|
|
|
|
vbidec->vbidata = vbidata_new_line (vbidec->vbiscreen, 0);
|
2002-12-19 21:34:56 +00:00
|
|
|
vbidec->caption_type = CAPTURE_OFF;
|
2004-03-14 22:34:33 +00:00
|
|
|
vbidata_capture_mode (vbidec->vbidata, vbidec->caption_type);
|
2002-12-19 21:34:56 +00:00
|
|
|
vbidec->dvd_input = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
line21_decode (GstVBIDec * vbidec, guint8 * data, guint32 size)
|
2002-12-19 21:34:56 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
vbidata_process_line (vbidec->vbidata, data, 0);
|
2002-12-19 21:34:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
dvd_user_data_decode (GstVBIDec * vbidec, guint8 * data, guint32 size)
|
2002-12-19 21:34:56 +00:00
|
|
|
{
|
|
|
|
//char caption[128];
|
|
|
|
//int ci; /* caption index */
|
2004-03-15 19:32:27 +00:00
|
|
|
int i; /* buf index */
|
2002-12-19 21:34:56 +00:00
|
|
|
int num_disp_field;
|
|
|
|
guint8 b1, b2;
|
|
|
|
int w;
|
|
|
|
|
|
|
|
//g_print("%%%% vbi decode\n");
|
|
|
|
//g_print("== %p %d\n", data, size);
|
|
|
|
i = 0;
|
|
|
|
/* Check for Closed Captioning data */
|
2004-03-14 22:34:33 +00:00
|
|
|
if (data[i] != 0x43 || data[i + 1] != 0x43 ||
|
|
|
|
data[i + 2] != 0x01 || data[i + 3] != 0xf8) {
|
2002-12-19 21:34:56 +00:00
|
|
|
g_print ("non-CC data\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
//g_print ("CC data\n");
|
2004-03-15 19:32:27 +00:00
|
|
|
i += 4; /* above */
|
|
|
|
i += 4; /* ? */
|
2002-12-19 21:34:56 +00:00
|
|
|
num_disp_field = data[i] & 0x3f;
|
|
|
|
//g_print ("ndf %d\n", num_disp_field);
|
|
|
|
while ((data[i] & 0xfe) == 0xfe) {
|
|
|
|
if (data[i] & 0x1) {
|
2004-03-14 22:34:33 +00:00
|
|
|
b1 = data[i + 1] & 0x7f;
|
|
|
|
b2 = data[i + 2] & 0x7f;
|
2002-12-19 21:34:56 +00:00
|
|
|
w = (b2 << 8) | b1;
|
2004-03-14 22:34:33 +00:00
|
|
|
vbidata_process_16b (vbidec->vbidata, 0, w);
|
2002-12-19 21:34:56 +00:00
|
|
|
}
|
|
|
|
i += 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_vbidec_chain (GstPad * pad, GstData * _data)
|
2002-12-19 21:34:56 +00:00
|
|
|
{
|
2003-10-08 16:08:19 +00:00
|
|
|
GstBuffer *buf = GST_BUFFER (_data);
|
2002-12-19 21:34:56 +00:00
|
|
|
GstVBIDec *vbidec = GST_VBIDEC (gst_pad_get_parent (pad));
|
|
|
|
guint32 size;
|
|
|
|
guint8 *data;
|
|
|
|
guint64 pts;
|
|
|
|
|
|
|
|
size = GST_BUFFER_SIZE (buf);
|
|
|
|
data = GST_BUFFER_DATA (buf);
|
|
|
|
pts = GST_BUFFER_TIMESTAMP (buf);
|
|
|
|
|
|
|
|
/*
|
2004-03-14 22:34:33 +00:00
|
|
|
g_print("** user_data: addr:%p len:%d state:%d\n", data, size, 0);
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
guint8 ud;
|
|
|
|
g_print("** \"");
|
|
|
|
for (i=0; i<size; i++) {
|
|
|
|
ud = data[i];
|
|
|
|
if (isprint((char)ud)) {
|
|
|
|
g_print("%c", (char)ud);
|
|
|
|
} else {
|
|
|
|
g_print("[0x%02x]", ud);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_print("\"\n");
|
|
|
|
}
|
|
|
|
*/
|
2002-12-19 21:34:56 +00:00
|
|
|
|
|
|
|
if (vbidec->dvd_input) {
|
2004-03-14 22:34:33 +00:00
|
|
|
dvd_user_data_decode (vbidec, data, size);
|
2002-12-19 21:34:56 +00:00
|
|
|
} else {
|
2004-03-14 22:34:33 +00:00
|
|
|
line21_decode (vbidec, data, size);
|
2002-12-19 21:34:56 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_buffer_unref (buf);
|
2002-12-19 21:34:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_vbidec_show_text (GstVBIDec * vbidec, char *text, int len)
|
2002-12-19 21:34:56 +00:00
|
|
|
{
|
|
|
|
//fprintf(stderr, "%*s\n", len, text);
|
|
|
|
if (len > 0) {
|
|
|
|
if (GST_PAD_IS_USABLE (vbidec->srcpad)) {
|
|
|
|
GstBuffer *buf = gst_buffer_new_and_alloc (len);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2002-12-19 21:34:56 +00:00
|
|
|
memcpy (GST_BUFFER_DATA (buf), text, len);
|
|
|
|
GST_BUFFER_SIZE (buf) = len;
|
|
|
|
// FIXME
|
|
|
|
//GST_BUFFER_TIMESTAMP (buf) = vbidec->...
|
|
|
|
//...
|
|
|
|
//fprintf(stderr, "vbi text pushed\n");
|
2003-10-08 16:08:19 +00:00
|
|
|
gst_pad_push (vbidec->srcpad, GST_DATA (buf));
|
2002-12-19 21:34:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_vbidec_set_property (GObject * object, guint prop_id, const GValue * value,
|
|
|
|
GParamSpec * pspec)
|
2002-12-19 21:34:56 +00:00
|
|
|
{
|
|
|
|
GstVBIDec *vbidec;
|
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_VBIDEC (object));
|
|
|
|
vbidec = GST_VBIDEC (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
2003-01-09 05:26:47 +00:00
|
|
|
case ARG_VERBOSE:
|
2004-03-14 22:34:33 +00:00
|
|
|
vbidata_set_verbose (vbidec->vbidata, g_value_get_boolean (value));
|
|
|
|
vbiscreen_set_verbose (vbidec->vbiscreen, g_value_get_boolean (value));
|
2003-01-09 05:26:47 +00:00
|
|
|
break;
|
2002-12-19 21:34:56 +00:00
|
|
|
case ARG_DVD_INPUT:
|
2004-03-14 22:34:33 +00:00
|
|
|
vbidec->dvd_input = g_value_get_boolean (value);
|
2002-12-19 21:34:56 +00:00
|
|
|
break;
|
|
|
|
case ARG_CAPTION_TYPE:
|
2004-03-14 22:34:33 +00:00
|
|
|
vbidec->caption_type = g_value_get_enum (value);
|
|
|
|
vbidata_capture_mode (vbidec->vbidata, vbidec->caption_type);
|
2002-12-19 21:34:56 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_vbidec_get_property (GObject * object, guint prop_id, GValue * value,
|
|
|
|
GParamSpec * pspec)
|
2002-12-19 21:34:56 +00:00
|
|
|
{
|
|
|
|
GstVBIDec *vbidec;
|
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_VBIDEC (object));
|
|
|
|
vbidec = GST_VBIDEC (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_DVD_INPUT:
|
2004-03-14 22:34:33 +00:00
|
|
|
g_value_set_boolean (value, vbidec->dvd_input);
|
2002-12-19 21:34:56 +00:00
|
|
|
break;
|
|
|
|
case ARG_CAPTION_TYPE:
|
2004-03-14 22:34:33 +00:00
|
|
|
g_value_set_enum (value, vbidec->caption_type);
|
2002-12-19 21:34:56 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2004-03-14 22:34:33 +00:00
|
|
|
plugin_init (GstPlugin * plugin)
|
2002-12-19 21:34:56 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
return gst_element_register (plugin, "vbidec", GST_RANK_NONE,
|
|
|
|
GST_TYPE_VBIDEC);
|
2002-12-19 21:34:56 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"vbidec",
|
|
|
|
"Decodes closed captions and XDS data from VBI data",
|
2006-04-01 10:09:11 +00:00
|
|
|
plugin_init, VERSION, "GPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|