summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtpmp4vpay.c
diff options
context:
space:
mode:
authorPeter Kjellerstedt <pkj@axis.com>2007-10-22 09:53:16 +0000
committerWim Taymans <wim.taymans@gmail.com>2007-10-22 09:53:16 +0000
commit68bf754d0e7a68248d3da80618807d8216dffb18 (patch)
tree512f05a971d60aae3b931bfda07abb01a1f57b9c /gst/rtp/gstrtpmp4vpay.c
parentcc3966d7a38de3dc4c0051543b128bb3850acdd5 (diff)
gst/rtp/gstrtpmp4vpay.c: Use correct unref function for buffers. #488844.
Original commit message from CVS: Patch by: Peter Kjellerstedt <pkj at axis com> * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_finalize): Use correct unref function for buffers. #488844.
Diffstat (limited to 'gst/rtp/gstrtpmp4vpay.c')
-rw-r--r--gst/rtp/gstrtpmp4vpay.c2
1 files changed, 1 insertions, 1 deletions
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);