summaryrefslogtreecommitdiff
path: root/libavutil/time.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-10-24 11:04:52 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-10-24 11:06:56 +0200
commite96ca404eae87e242b0ec0ca52897e9e135f8780 (patch)
tree74ccc8e37900294406d386e9270f11e9214d6ffb /libavutil/time.h
parent08e6832a94cc1de441625f7834db739d131e23a6 (diff)
parent1bd0bdcdc236099d5c0d179696951f35f5310fa5 (diff)
Merge commit '1bd0bdcdc236099d5c0d179696951f35f5310fa5'
* commit '1bd0bdcdc236099d5c0d179696951f35f5310fa5': lavu: Add av_gettime_relative Conflicts: libavutil/time.c libavutil/time.h libavutil/version.h See: 0eec06ed8747923faa6a98e474f224d922dc487d Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/time.h')
-rw-r--r--libavutil/time.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/time.h b/libavutil/time.h
index 910d28e85f..dc169b064a 100644
--- a/libavutil/time.h
+++ b/libavutil/time.h
@@ -32,8 +32,8 @@ int64_t av_gettime(void);
* Get the current time in microseconds since some unspecified starting point.
* On platforms that support it, the time comes from a monotonic clock
* This property makes this time source ideal for measuring relative time.
- * If a monotonic clock is not available on the targeted platform, the
- * implementation fallsback on using av_gettime().
+ * The returned values may not be monotonic on platforms where a monotonic
+ * clock is not available.
*/
int64_t av_gettime_relative(void);