summaryrefslogtreecommitdiff
path: root/gst/playback/gstdecodebin.c
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2009-10-28 00:59:35 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-10-28 00:59:35 +0000
commit6f4c1ac58341ee189225d313ddfe9ae24a65c88c (patch)
treeeeeec0c53cde842aeb05d9e123f495ee62dbb63c /gst/playback/gstdecodebin.c
parent7065c7a02dbd26f214c1c3efe8a8c5ad961bf971 (diff)
Remove GST_DEBUG_FUNCPTR where they're pointless
There's not much point in using GST_DEBUG_FUNCPTR with GObject virtual functions such as get_property, set_propery, finalize and dispose, since they'll never be used by anyone anyway. Saves a few bytes and possibly a sixteenth of a polar bear.
Diffstat (limited to 'gst/playback/gstdecodebin.c')
-rw-r--r--gst/playback/gstdecodebin.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/playback/gstdecodebin.c b/gst/playback/gstdecodebin.c
index a59c0848b..13c136fa8 100644
--- a/gst/playback/gstdecodebin.c
+++ b/gst/playback/gstdecodebin.c
@@ -232,10 +232,10 @@ gst_decode_bin_class_init (GstDecodeBinClass * klass)
parent_class = g_type_class_peek_parent (klass);
- gobject_klass->set_property = GST_DEBUG_FUNCPTR (gst_decode_bin_set_property);
- gobject_klass->get_property = GST_DEBUG_FUNCPTR (gst_decode_bin_get_property);
- gobject_klass->dispose = GST_DEBUG_FUNCPTR (gst_decode_bin_dispose);
- gobject_klass->finalize = GST_DEBUG_FUNCPTR (gst_decode_bin_finalize);
+ gobject_klass->set_property = gst_decode_bin_set_property;
+ gobject_klass->get_property = gst_decode_bin_get_property;
+ gobject_klass->dispose = gst_decode_bin_dispose;
+ gobject_klass->finalize = gst_decode_bin_finalize;
/**
* GstDecodeBin::new-decoded-pad: