mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
gst/rtpmanager/rtpsession.c: Don't use GLib-2.10 API, we only require GLib 2.8 at the moment.
Original commit message from CVS: * gst/rtpmanager/rtpsession.c: (rtp_session_finalize): Don't use GLib-2.10 API, we only require GLib 2.8 at the moment.
This commit is contained in:
parent
86d6bc0d91
commit
adfb741d7c
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2007-04-21 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* gst/rtpmanager/rtpsession.c: (rtp_session_finalize):
|
||||||
|
Don't use GLib-2.10 API, we only require GLib 2.8 at the moment.
|
||||||
|
|
||||||
2007-04-20 Michael Smith <msmith@fluendo.com>
|
2007-04-20 Michael Smith <msmith@fluendo.com>
|
||||||
|
|
||||||
* ext/faad/gstfaad.c: (gst_faad_open_decoder):
|
* ext/faad/gstfaad.c: (gst_faad_open_decoder):
|
||||||
|
|
|
@ -147,8 +147,8 @@ rtp_session_finalize (GObject * object)
|
||||||
sess = RTP_SESSION_CAST (object);
|
sess = RTP_SESSION_CAST (object);
|
||||||
|
|
||||||
g_mutex_free (sess->lock);
|
g_mutex_free (sess->lock);
|
||||||
g_hash_table_unref (sess->ssrcs);
|
g_hash_table_destroy (sess->ssrcs);
|
||||||
g_hash_table_unref (sess->cnames);
|
g_hash_table_destroy (sess->cnames);
|
||||||
g_object_unref (sess->source);
|
g_object_unref (sess->source);
|
||||||
|
|
||||||
G_OBJECT_CLASS (rtp_session_parent_class)->finalize (object);
|
G_OBJECT_CLASS (rtp_session_parent_class)->finalize (object);
|
||||||
|
|
Loading…
Reference in a new issue