mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
ccextractor: Remove unused set/get_property() functions
This commit is contained in:
parent
8aca7f2056
commit
d8372736c6
1 changed files with 0 additions and 33 deletions
|
@ -67,11 +67,6 @@ static GstStaticPadTemplate captiontemplate =
|
|||
G_DEFINE_TYPE (GstCCExtractor, gst_cc_extractor, GST_TYPE_ELEMENT);
|
||||
#define parent_class gst_cc_extractor_parent_class
|
||||
|
||||
static void gst_cc_extractor_set_property (GObject * object, guint prop_id,
|
||||
const GValue * value, GParamSpec * pspec);
|
||||
static void gst_cc_extractor_get_property (GObject * object, guint prop_id,
|
||||
GValue * value, GParamSpec * pspec);
|
||||
|
||||
static gboolean gst_cc_extractor_sink_event (GstPad * pad, GstObject * parent,
|
||||
GstEvent * event);
|
||||
static gboolean gst_cc_extractor_sink_query (GstPad * pad, GstObject * parent,
|
||||
|
@ -92,8 +87,6 @@ gst_cc_extractor_class_init (GstCCExtractorClass * klass)
|
|||
gobject_class = (GObjectClass *) klass;
|
||||
gstelement_class = (GstElementClass *) klass;
|
||||
|
||||
gobject_class->set_property = gst_cc_extractor_set_property;
|
||||
gobject_class->get_property = gst_cc_extractor_get_property;
|
||||
gobject_class->finalize = gst_cc_extractor_finalize;
|
||||
|
||||
gstelement_class->change_state =
|
||||
|
@ -186,32 +179,6 @@ gst_cc_extractor_init (GstCCExtractor * filter)
|
|||
gst_cc_extractor_reset (filter);
|
||||
}
|
||||
|
||||
static void
|
||||
gst_cc_extractor_set_property (GObject * object, guint prop_id,
|
||||
const GValue * value, GParamSpec * pspec)
|
||||
{
|
||||
/* GstCCExtractor *filter = GST_CCEXTRACTOR (object); */
|
||||
|
||||
switch (prop_id) {
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
gst_cc_extractor_get_property (GObject * object, guint prop_id,
|
||||
GValue * value, GParamSpec * pspec)
|
||||
{
|
||||
/* GstCCExtractor *filter = GST_CCEXTRACTOR (object); */
|
||||
|
||||
switch (prop_id) {
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static GstEvent *
|
||||
create_stream_start_event_from_stream_start_event (GstEvent * event)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue