[x264-devel] Move the x264_mdate() declaration to the appropriate header
Vittorio Giovara
git at videolan.org
Tue Jan 24 21:14:13 CET 2017
x264 | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Mon Jan 9 22:28:20 2017 +0100| [28ebb95d92278069b80ee729eb1884fe0981c6ae] | committer: Henrik Gramner
Move the x264_mdate() declaration to the appropriate header
> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=28ebb95d92278069b80ee729eb1884fe0981c6ae
---
common/common.h | 3 ---
common/osdep.h | 3 +++
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/common/common.h b/common/common.h
index bce186d..c7850ca 100644
--- a/common/common.h
+++ b/common/common.h
@@ -257,9 +257,6 @@ void x264_free( void * );
/* x264_slurp_file: malloc space for the whole file and read it */
char *x264_slurp_file( const char *filename );
-/* mdate: return the current date in microsecond */
-int64_t x264_mdate( void );
-
/* x264_param2string: return a (malloced) string containing most of
* the encoding options */
char *x264_param2string( x264_param_t *p, int b_res );
diff --git a/common/osdep.h b/common/osdep.h
index 6285c99..ed3ed59 100644
--- a/common/osdep.h
+++ b/common/osdep.h
@@ -92,6 +92,9 @@ int x264_stat( const char *path, x264_struct_stat *buf );
#define x264_stat stat
#endif
+/* mdate: return the current date in microsecond */
+int64_t x264_mdate( void );
+
#if defined(_WIN32) && !HAVE_WINRT
int x264_vfprintf( FILE *stream, const char *format, va_list arg );
int x264_is_pipe( const char *path );
More information about the x264-devel
mailing list