diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2005-09-24 11:41:01 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2005-09-24 11:41:01 +0000 |
commit | be19f39e5cda621b408a31ff4ef4956ce4f2684d (patch) | |
tree | a7ec4c166bbd60a5debaf0d5236bbdad6aa5650f | |
parent | 446ddc915f6cd769be610e71534f42ab93985e41 (diff) |
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.
-rw-r--r-- | ChangeLog | 6 | ||||
m--------- | common | 0 | ||||
-rw-r--r-- | gst/gstclock.h | 2 |
3 files changed, 7 insertions, 1 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: diff --git a/common b/common -Subproject c7160d5b7c76f00609cf7b6e9b782e99f626686 +Subproject 7caeee4b949b4388927fec7fcf25f767429bde3 diff --git a/gst/gstclock.h b/gst/gstclock.h index f943eb777..cf5848db0 100644 --- a/gst/gstclock.h +++ b/gst/gstclock.h @@ -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: |