mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-10 10:04:23 +00:00
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.
This commit is contained in:
parent
7c41741fa8
commit
6308ad1a0f
4 changed files with 10 additions and 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:
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
@ -146,6 +146,8 @@ GST_BOILERPLATE (GstSDLAudioSink, gst_sdlaudio_sink, GstAudioSink,
|
|||
g_free (sdlaudiosink->buffer);
|
||||
}
|
||||
|
||||
G_OBJECT_CLASS (parent_class)->dispose (object);
|
||||
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue