diff options
author | Edgard Lima <edgard.lima@indt.org.br> | 2006-01-16 12:30:41 +0000 |
---|---|---|
committer | Edgard Lima <edgard.lima@indt.org.br> | 2006-01-16 12:30:41 +0000 |
commit | 6308ad1a0f2cf8a93d8415bfbba0271b915427bc (patch) | |
tree | f498b7769bf6d1cac38c68f6d9839613b4b38283 | |
parent | 7c41741fa8d75c5200e5b8b59d6a2897d658736b (diff) | |
download | gst-plugins-bad-6308ad1a0f2cf8a93d8415bfbba0271b915427bc.tar.gz gst-plugins-bad-6308ad1a0f2cf8a93d8415bfbba0271b915427bc.tar.bz2 gst-plugins-bad-6308ad1a0f2cf8a93d8415bfbba0271b915427bc.zip |
Removed gst_base_src_set_live from mms and neon, and now calling parent_class->dispose in dispose on sdlaudio.
Original commit message from CVS:
Removed gst_base_src_set_live from mms and neon, and now calling parent_class->dispose in dispose on sdlaudio.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | ext/libmms/gstmms.c | 2 | ||||
-rw-r--r-- | ext/neon/gstneonhttpsrc.c | 2 | ||||
-rw-r--r-- | ext/sdl/sdlaudiosink.c | 2 |
4 files changed, 10 insertions, 4 deletions
@@ -1,3 +1,11 @@ +2006-01-16 Edgard Lima <edgard.lima@indt.org.br> + + * ext/libmms/gstmms.c: gst_mms_init: + * ext/neon/gstneonhttpsrc.c: gst_neonhttp_src_init: + * ext/sdl/sdlaudiosink.c: gst_sdlaudio_sink_dispose: + Removed gst_base_src_set_live from mms and neon, and now calling + parent_class->dispose in dispose on sdlaudio. + 2006-01-11 Edgard Lima <edgard.lima@indt.org.br> * ext/sdl/sdlvideosink.c: diff --git a/ext/libmms/gstmms.c b/ext/libmms/gstmms.c index 5bd47472..13a0b01b 100644 --- a/ext/libmms/gstmms.c +++ b/ext/libmms/gstmms.c @@ -146,8 +146,6 @@ gst_mms_class_init (GstMMSClass * klass) static void gst_mms_init (GstMMS * mmssrc, GstMMSClass * g_class) { - gst_base_src_set_live (GST_BASE_SRC (mmssrc), TRUE); - gst_pad_set_query_function (GST_BASE_SRC (mmssrc)->srcpad, gst_mms_src_query); gst_pad_set_query_type_function (GST_BASE_SRC (mmssrc)->srcpad, gst_mms_get_query_types); diff --git a/ext/neon/gstneonhttpsrc.c b/ext/neon/gstneonhttpsrc.c index 270a89c4..a7c8a192 100644 --- a/ext/neon/gstneonhttpsrc.c +++ b/ext/neon/gstneonhttpsrc.c @@ -167,8 +167,6 @@ gst_neonhttp_src_init (GstNeonhttpSrc * this, GstNeonhttpSrcClass * g_class) this->adapter = gst_adapter_new (); - gst_base_src_set_live (GST_BASE_SRC (this), TRUE); - GST_OBJECT_FLAG_UNSET (this, GST_NEONHTTP_SRC_OPEN); } diff --git a/ext/sdl/sdlaudiosink.c b/ext/sdl/sdlaudiosink.c index dce28ef0..8526996b 100644 --- a/ext/sdl/sdlaudiosink.c +++ b/ext/sdl/sdlaudiosink.c @@ -146,6 +146,8 @@ GST_BOILERPLATE (GstSDLAudioSink, gst_sdlaudio_sink, GstAudioSink, g_free (sdlaudiosink->buffer); } + G_OBJECT_CLASS (parent_class)->dispose (object); + } static void |