mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 07:46:38 +00:00
gst/gstclock.c: fixes structure initialisation of clock (bug #134128)
Original commit message from CVS: reviewed by: David Schleef <ds@schleef.org> * gst/gstclock.c: (gst_clock_entry_new): fixes structure initialisation of clock (bug #134128)
This commit is contained in:
parent
6545411956
commit
5fe57b5dc4
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2004-02-11 kost@imn.htwk-leipzig.de
|
||||
|
||||
reviewed by: David Schleef <ds@schleef.org>
|
||||
|
||||
* gst/gstclock.c: (gst_clock_entry_new): fixes structure
|
||||
initialisation of clock (bug #134128)
|
||||
|
||||
2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -76,7 +76,7 @@ gst_clock_entry_new (GstClock *clock, GstClockTime time,
|
|||
|
||||
entry->clock = clock;
|
||||
entry->time = time;
|
||||
entry->interval = time;
|
||||
entry->interval = interval;
|
||||
entry->type = type;
|
||||
entry->status = GST_CLOCK_ENTRY_OK;
|
||||
|
||||
|
|
Loading…
Reference in a new issue