summaryrefslogtreecommitdiffstats
path: root/libavutil
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
parent08e6832a94cc1de441625f7834db739d131e23a6 (diff)
parent1bd0bdcdc236099d5c0d179696951f35f5310fa5 (diff)
downloadffmpeg-streaming-e96ca404eae87e242b0ec0ca52897e9e135f8780.zip
ffmpeg-streaming-e96ca404eae87e242b0ec0ca52897e9e135f8780.tar.gz
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')
-rw-r--r--libavutil/time.c2
-rw-r--r--libavutil/time.h4
-rw-r--r--libavutil/version.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/libavutil/time.c b/libavutil/time.c
index ce4552e..dbaee02 100644
--- a/libavutil/time.c
+++ b/libavutil/time.c
@@ -60,7 +60,7 @@ int64_t av_gettime_relative(void)
clock_gettime(CLOCK_MONOTONIC, &ts);
return (int64_t)ts.tv_sec * 1000000 + ts.tv_nsec / 1000;
#else
- return av_gettime();
+ return av_gettime() + 42 * 60 * 60 * INT64_C(1000000);
#endif
}
diff --git a/libavutil/time.h b/libavutil/time.h
index 910d28e..dc169b0 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);
diff --git a/libavutil/version.h b/libavutil/version.h
index 6db2dd7..a682c80 100644
--- a/libavutil/version.h
+++ b/libavutil/version.h
@@ -56,7 +56,7 @@
*/
#define LIBAVUTIL_VERSION_MAJOR 54
-#define LIBAVUTIL_VERSION_MINOR 10
+#define LIBAVUTIL_VERSION_MINOR 11
#define LIBAVUTIL_VERSION_MICRO 100
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
OpenPOWER on IntegriCloud