mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
gst-libs/gst/audio/audioclock.c: Fix wrong return type (#142205).
Original commit message from CVS: reviewed by: Ronald Bultje <rbultje@ronald.bitfreak.net> * gst-libs/gst/audio/audioclock.c: Fix wrong return type (#142205).
This commit is contained in:
parent
bcf7d51448
commit
6e628ecf6d
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2004-05-16 Arwed v. Merkatz <v.merkatz@gmx.net>
|
||||
|
||||
reviewed by: Ronald Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* gst-libs/gst/audio/audioclock.c:
|
||||
Fix wrong return type (#142205).
|
||||
|
||||
2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
|
||||
|
|
|
@ -30,7 +30,7 @@ static void gst_audio_clock_class_init (GstAudioClockClass * klass);
|
|||
static void gst_audio_clock_init (GstAudioClock * clock);
|
||||
|
||||
static GstClockTime gst_audio_clock_get_internal_time (GstClock * clock);
|
||||
static GstClockReturn gst_audio_clock_id_wait_async (GstClock * clock,
|
||||
static GstClockEntryStatus gst_audio_clock_id_wait_async (GstClock * clock,
|
||||
GstClockEntry * entry);
|
||||
static void gst_audio_clock_id_unschedule (GstClock * clock,
|
||||
GstClockEntry * entry);
|
||||
|
@ -174,7 +174,7 @@ compare_clock_entries (GstClockEntry * entry1, GstClockEntry * entry2)
|
|||
return entry1->time - entry2->time;
|
||||
}
|
||||
|
||||
static GstClockReturn
|
||||
static GstClockEntryStatus
|
||||
gst_audio_clock_id_wait_async (GstClock * clock, GstClockEntry * entry)
|
||||
{
|
||||
GstAudioClock *aclock = (GstAudioClock *) clock;
|
||||
|
|
Loading…
Reference in a new issue