mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 17:18:15 +00:00
gst-libs/gst/audio/: get_clock -> provide_clock
Original commit message from CVS: * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_class_init), (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render): * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_class_init), (gst_base_audio_src_provide_clock): get_clock -> provide_clock
This commit is contained in:
parent
f2fe41400a
commit
79be8760f0
3 changed files with 18 additions and 8 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2005-09-28 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst-libs/gst/audio/gstbaseaudiosink.c:
|
||||
(gst_base_audio_sink_class_init),
|
||||
(gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
|
||||
* gst-libs/gst/audio/gstbaseaudiosrc.c:
|
||||
(gst_base_audio_src_class_init),
|
||||
(gst_base_audio_src_provide_clock):
|
||||
get_clock -> provide_clock
|
||||
|
||||
2005-09-28 Andy Wingo <wingo@pobox.com>
|
||||
|
||||
* gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
|
||||
|
|
|
@ -64,7 +64,7 @@ static void gst_base_audio_sink_get_property (GObject * object, guint prop_id,
|
|||
static GstStateChangeReturn gst_base_audio_sink_change_state (GstElement *
|
||||
element, GstStateChange transition);
|
||||
|
||||
static GstClock *gst_base_audio_sink_get_clock (GstElement * elem);
|
||||
static GstClock *gst_base_audio_sink_provide_clock (GstElement * elem);
|
||||
static GstClockTime gst_base_audio_sink_get_time (GstClock * clock,
|
||||
GstBaseAudioSink * sink);
|
||||
static void gst_base_audio_sink_callback (GstRingBuffer * rbuf, guint8 * data,
|
||||
|
@ -116,8 +116,8 @@ gst_base_audio_sink_class_init (GstBaseAudioSinkClass * klass)
|
|||
|
||||
gstelement_class->change_state =
|
||||
GST_DEBUG_FUNCPTR (gst_base_audio_sink_change_state);
|
||||
gstelement_class->get_clock =
|
||||
GST_DEBUG_FUNCPTR (gst_base_audio_sink_get_clock);
|
||||
gstelement_class->provide_clock =
|
||||
GST_DEBUG_FUNCPTR (gst_base_audio_sink_provide_clock);
|
||||
|
||||
gstbasesink_class->event = GST_DEBUG_FUNCPTR (gst_base_audio_sink_event);
|
||||
gstbasesink_class->preroll = GST_DEBUG_FUNCPTR (gst_base_audio_sink_preroll);
|
||||
|
@ -159,7 +159,7 @@ gst_base_audio_sink_dispose (GObject * object)
|
|||
}
|
||||
|
||||
static GstClock *
|
||||
gst_base_audio_sink_get_clock (GstElement * elem)
|
||||
gst_base_audio_sink_provide_clock (GstElement * elem)
|
||||
{
|
||||
GstBaseAudioSink *sink;
|
||||
|
||||
|
|
|
@ -59,7 +59,7 @@ static void gst_base_audio_src_fixate (GstPad * pad, GstCaps * caps);
|
|||
static GstStateChangeReturn gst_base_audio_src_change_state (GstElement *
|
||||
element, GstStateChange transition);
|
||||
|
||||
static GstClock *gst_base_audio_src_get_clock (GstElement * elem);
|
||||
static GstClock *gst_base_audio_src_provide_clock (GstElement * elem);
|
||||
static GstClockTime gst_base_audio_src_get_time (GstClock * clock,
|
||||
GstBaseAudioSrc * src);
|
||||
|
||||
|
@ -107,8 +107,8 @@ gst_base_audio_src_class_init (GstBaseAudioSrcClass * klass)
|
|||
|
||||
gstelement_class->change_state =
|
||||
GST_DEBUG_FUNCPTR (gst_base_audio_src_change_state);
|
||||
gstelement_class->get_clock =
|
||||
GST_DEBUG_FUNCPTR (gst_base_audio_src_get_clock);
|
||||
gstelement_class->provide_clock =
|
||||
GST_DEBUG_FUNCPTR (gst_base_audio_src_provide_clock);
|
||||
|
||||
gstbasesrc_class->set_caps = GST_DEBUG_FUNCPTR (gst_base_audio_src_setcaps);
|
||||
gstbasesrc_class->event = GST_DEBUG_FUNCPTR (gst_base_audio_src_event);
|
||||
|
@ -133,7 +133,7 @@ gst_base_audio_src_init (GstBaseAudioSrc * baseaudiosrc,
|
|||
}
|
||||
|
||||
static GstClock *
|
||||
gst_base_audio_src_get_clock (GstElement * elem)
|
||||
gst_base_audio_src_provide_clock (GstElement * elem)
|
||||
{
|
||||
GstBaseAudioSrc *src;
|
||||
|
||||
|
|
Loading…
Reference in a new issue