summaryrefslogtreecommitdiff
path: root/ext/jp2k/gstjasperdec.c
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2011-07-12 18:20:23 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.com>2011-07-12 18:20:23 -0400
commit98f19a36742ab01aa208ed4f28a2580a5b20bc88 (patch)
tree274df1861bd4c3cc5d748912de4d17e61727541f /ext/jp2k/gstjasperdec.c
parentc4d00d06a70ed4a46c7fd3923dec34fc95a39451 (diff)
jp2k: Fix set-but-unused warnings
Diffstat (limited to 'ext/jp2k/gstjasperdec.c')
-rw-r--r--ext/jp2k/gstjasperdec.c40
1 files changed, 0 insertions, 40 deletions
diff --git a/ext/jp2k/gstjasperdec.c b/ext/jp2k/gstjasperdec.c
index 159eb95c8..e896142bd 100644
--- a/ext/jp2k/gstjasperdec.c
+++ b/ext/jp2k/gstjasperdec.c
@@ -68,11 +68,6 @@ static GstStaticPadTemplate gst_jasper_dec_src_template =
GST_VIDEO_CAPS_YUV ("{ I420, YV12, YUY2, UYVY, Y41B, Y42B, v308 }"))
);
-static void gst_jasper_dec_set_property (GObject * object, guint prop_id,
- const GValue * value, GParamSpec * pspec);
-static void gst_jasper_dec_get_property (GObject * object, guint prop_id,
- GValue * value, GParamSpec * pspec);
-
static void gst_jasper_dec_reset (GstJasperDec * dec);
static GstStateChangeReturn gst_jasper_dec_change_state (GstElement * element,
GstStateChange transition);
@@ -114,18 +109,13 @@ gst_jasper_dec_base_init (gpointer g_class)
static void
gst_jasper_dec_class_init (GstJasperDecClass * klass)
{
- GObjectClass *gobject_class;
GstElementClass *gstelement_class;
- gobject_class = (GObjectClass *) klass;
gstelement_class = (GstElementClass *) klass;
GST_DEBUG_CATEGORY_INIT (gst_jasper_dec_debug, "jp2kdec", 0,
"Jasper JPEG2000 decoder");
- gobject_class->set_property = gst_jasper_dec_set_property;
- gobject_class->get_property = gst_jasper_dec_get_property;
-
gstelement_class->change_state =
GST_DEBUG_FUNCPTR (gst_jasper_dec_change_state);
}
@@ -819,36 +809,6 @@ invalid_bytes_segment:
}
}
-static void
-gst_jasper_dec_set_property (GObject * object, guint prop_id,
- const GValue * value, GParamSpec * pspec)
-{
- GstJasperDec *filter;
-
- filter = GST_JASPER_DEC (object);
-
- switch (prop_id) {
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
- break;
- }
-}
-
-static void
-gst_jasper_dec_get_property (GObject * object, guint prop_id,
- GValue * value, GParamSpec * pspec)
-{
- GstJasperDec *filter;
-
- filter = GST_JASPER_DEC (object);
-
- switch (prop_id) {
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
- break;
- }
-}
-
static GstStateChangeReturn
gst_jasper_dec_change_state (GstElement * element, GstStateChange transition)
{