summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2019-10-28 11:25:15 +0200
committerTim-Philipp Müller <tim@centricular.com>2019-10-29 09:08:43 +0000
commit0802f83510ae5e4a8527ff1e3bf7c09a25832d63 (patch)
treeb433bfec45be72eb0cb5ebf34b3af3c40bb0e212 /ext
parent01901c66d6a5cbc7c67b30d30004d71710c82109 (diff)
downloadgstreamer-plugins-bad-0802f83510ae5e4a8527ff1e3bf7c09a25832d63.tar.gz
ccextractor: Remove unused set/get_property() functions
Diffstat (limited to 'ext')
-rw-r--r--ext/closedcaption/gstccextractor.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/ext/closedcaption/gstccextractor.c b/ext/closedcaption/gstccextractor.c
index e8164a332..5ceccd0f8 100644
--- a/ext/closedcaption/gstccextractor.c
+++ b/ext/closedcaption/gstccextractor.c
@@ -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)
{