mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
gst/gstclock.h: Well, that's embarassing. Luckily we weren't using
Original commit message from CVS: * gst/gstclock.h: Well, that's embarassing. Luckily we weren't using GST_CLOCK_DIFF anywhere.
This commit is contained in:
parent
446ddc915f
commit
be19f39e5c
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2005-09-24 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* gst/gstclock.h:
|
||||
Well, that's embarassing. Luckily we weren't using
|
||||
GST_CLOCK_DIFF anywhere.
|
||||
|
||||
2005-09-23 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* common/gtk-doc.mak:
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit c7160d5b7c76f00609cf7b6e9b782e99f626686c
|
||||
Subproject commit 7caeee4b949b4388927fec7fcf25f767429bde30
|
|
@ -104,7 +104,7 @@ typedef gpointer GstClockID;
|
|||
*
|
||||
* Calculate a difference between two clock times as a #GstClockTimeDiff.
|
||||
*/
|
||||
#define GST_CLOCK_DIFF(s, e) (GstClockTimeDiff)((s) - (e))
|
||||
#define GST_CLOCK_DIFF(s, e) (GstClockTimeDiff)((e) - (s))
|
||||
|
||||
/**
|
||||
* GST_TIMEVAL_TO_TIME:
|
||||
|
|
Loading…
Reference in a new issue