diff options
author | Debarshi Ray <rishi@gnu.org> | 2011-05-30 17:54:26 +0530 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2011-06-04 20:26:02 +0100 |
commit | 335293bf50e74fd9a4053d7441b301aafd0428c5 (patch) | |
tree | 651c2ec552fb2d5be571217185d19d6fe11c8031 /gst/sdi/gstsdidemux.c | |
parent | 23576af52aabee13181c03df056450411378a489 (diff) | |
download | gstreamer-plugins-bad-335293bf50e74fd9a4053d7441b301aafd0428c5.tar.gz |
Remove unused but set variables
This is needed to satisfy the new -Wunused-but-set-variable added in
GCC 4.6: http://gcc.gnu.org/gcc-4.6/changes.html
Diffstat (limited to 'gst/sdi/gstsdidemux.c')
-rw-r--r-- | gst/sdi/gstsdidemux.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gst/sdi/gstsdidemux.c b/gst/sdi/gstsdidemux.c index bc0b76635..1636b5a94 100644 --- a/gst/sdi/gstsdidemux.c +++ b/gst/sdi/gstsdidemux.c @@ -160,10 +160,7 @@ void gst_sdi_demux_set_property (GObject * object, guint property_id, const GValue * value, GParamSpec * pspec) { - GstSdiDemux *sdidemux; - g_return_if_fail (GST_IS_SDI_DEMUX (object)); - sdidemux = GST_SDI_DEMUX (object); switch (property_id) { default: @@ -176,10 +173,7 @@ void gst_sdi_demux_get_property (GObject * object, guint property_id, GValue * value, GParamSpec * pspec) { - GstSdiDemux *sdidemux; - g_return_if_fail (GST_IS_SDI_DEMUX (object)); - sdidemux = GST_SDI_DEMUX (object); switch (property_id) { default: @@ -191,10 +185,7 @@ gst_sdi_demux_get_property (GObject * object, guint property_id, void gst_sdi_demux_dispose (GObject * object) { - GstSdiDemux *sdidemux; - g_return_if_fail (GST_IS_SDI_DEMUX (object)); - sdidemux = GST_SDI_DEMUX (object); /* clean up as possible. may be called multiple times */ @@ -204,10 +195,7 @@ gst_sdi_demux_dispose (GObject * object) void gst_sdi_demux_finalize (GObject * object) { - GstSdiDemux *sdidemux; - g_return_if_fail (GST_IS_SDI_DEMUX (object)); - sdidemux = GST_SDI_DEMUX (object); /* clean up object here */ |