summaryrefslogtreecommitdiffstats
path: root/sys/ximage
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2008-02-12 11:14:36 +0000
committerJan Schmidt <thaytan@mad.scientist.com>2008-02-12 11:14:36 +0000
commitbb3b6569eaaf37e6ff5a2cfa19e4c2d67277bce5 (patch)
tree2135008c6ef75291fe25c78dc51176f3d18f95af /sys/ximage
parent45e319e4c189a69ed29d9422626423759cb92ced (diff)
sys/ximage/ximageutil.c: Chain up in the finalize function for our custom buffer sub-class.
Original commit message from CVS: * sys/ximage/ximageutil.c: Chain up in the finalize function for our custom buffer sub-class. Patch by: Sebastian Dröge <slomo@circular-chaos.org> Fixes: #515706
Diffstat (limited to 'sys/ximage')
-rw-r--r--sys/ximage/ximageutil.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sys/ximage/ximageutil.c b/sys/ximage/ximageutil.c
index d340ac99..e0d2c32c 100644
--- a/sys/ximage/ximageutil.c
+++ b/sys/ximage/ximageutil.c
@@ -296,6 +296,8 @@ ximageutil_calculate_pixel_aspect_ratio (GstXContext * xcontext)
gst_value_get_fraction_denominator (xcontext->par));
}
+static GstBufferClass *ximagesrc_buffer_parent_class = NULL;
+
static void
gst_ximagesrc_buffer_finalize (GstXImageSrcBuffer * ximage)
{
@@ -313,6 +315,10 @@ gst_ximagesrc_buffer_finalize (GstXImageSrcBuffer * ximage)
ximage->return_func (parent, ximage);
beach:
+
+ GST_MINI_OBJECT_CLASS (ximagesrc_buffer_parent_class)->
+ finalize (GST_MINI_OBJECT (ximage));
+
return;
}
@@ -339,6 +345,8 @@ gst_ximagesrc_buffer_class_init (gpointer g_class, gpointer class_data)
{
GstMiniObjectClass *mini_object_class = GST_MINI_OBJECT_CLASS (g_class);
+ ximagesrc_buffer_parent_class = g_type_class_peek_parent (g_class);
+
mini_object_class->finalize = (GstMiniObjectFinalizeFunction)
gst_ximagesrc_buffer_finalize;
}