1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-08 13:22:53 +02:00

avutil: Fix compilation with inline asm disabled on mingw

Because of -Werror=implicit-function-declaration the build will fail.

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Alex Smith 2013-09-21 07:22:12 -04:00 committed by Martin Storsjö
parent e208e6d209
commit 08fa828b3f

View File

@ -36,6 +36,7 @@ static inline uint64_t read_time(void)
#elif HAVE_RDTSC
#include <intrin.h>
#define AV_READ_TIME __rdtsc
#endif /* HAVE_INLINE_ASM */