From 68bf754d0e7a68248d3da80618807d8216dffb18 Mon Sep 17 00:00:00 2001 From: Peter Kjellerstedt Date: Mon, 22 Oct 2007 09:53:16 +0000 Subject: gst/rtp/gstrtpmp4vpay.c: Use correct unref function for buffers. #488844. Original commit message from CVS: Patch by: Peter Kjellerstedt * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_finalize): Use correct unref function for buffers. #488844. --- gst/rtp/gstrtpmp4vpay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gst/rtp') diff --git a/gst/rtp/gstrtpmp4vpay.c b/gst/rtp/gstrtpmp4vpay.c index 819f4097..942d3b8f 100644 --- a/gst/rtp/gstrtpmp4vpay.c +++ b/gst/rtp/gstrtpmp4vpay.c @@ -183,7 +183,7 @@ gst_rtp_mp4v_pay_finalize (GObject * object) rtpmp4vpay = GST_RTP_MP4V_PAY (object); if (rtpmp4vpay->config) { - g_object_unref (rtpmp4vpay->config); + gst_buffer_unref (rtpmp4vpay->config); rtpmp4vpay->config = NULL; } g_object_unref (rtpmp4vpay->adapter); -- cgit