]> granicus.if.org Git - libx264/commitdiff
Move the x264_mdate() declaration to the appropriate header
authorVittorio Giovara <vittorio.giovara@gmail.com>
Mon, 9 Jan 2017 21:28:20 +0000 (22:28 +0100)
committerHenrik Gramner <henrik@gramner.com>
Sat, 21 Jan 2017 13:10:37 +0000 (14:10 +0100)
common/common.h
common/osdep.h

index bce186d5524c3f7d91d0a7f9d866935fb7d1caae..c7850ca0ef5772facdbad6715537392f436354e7 100644 (file)
@@ -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 );
index 6285c999b636c8e03b797f2c61c3593c23348346..ed3ed5976f294ff6d3ad80573c378848dca83df2 100644 (file)
@@ -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 );