From: Peter Kjellerstedt Date: Mon, 22 Oct 2007 09:53:16 +0000 (+0000) Subject: gst/rtp/gstrtpmp4vpay.c: Use correct unref function for buffers. #488844. X-Git-Tag: 1.19.3~509^2~11669 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=68bf754d0e7a68248d3da80618807d8216dffb18;p=platform%2Fupstream%2Fgstreamer.git 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. --- diff --git a/ChangeLog b/ChangeLog index 753f4f1..eaed420 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2007-10-22 Wim Taymans + + Patch by: Peter Kjellerstedt + + * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_finalize): + Use correct unref function for buffers. #488844. + 2007-10-19 Stefan Kost * gst/avi/gstavimux.c: diff --git a/gst/rtp/gstrtpmp4vpay.c b/gst/rtp/gstrtpmp4vpay.c index 819f409..942d3b8 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);