diff --git a/libavutil/common.h b/libavutil/common.h
index d07f5f1277f2353260fa535beb0bb400c5f7223a..32cada44ae97d27ef568562f707ec16ebc287594 100644
--- a/libavutil/common.h
+++ b/libavutil/common.h
@@ -94,14 +94,8 @@
     typedef unsigned char  uint8_t;
     typedef unsigned short uint16_t;
     typedef unsigned int   uint32_t;
-
-#   ifdef __MINGW32__
-        typedef signed __int64   int64_t;
-        typedef unsigned __int64 uint64_t;
-#   else /* other OS */
-        typedef signed long long   int64_t;
-        typedef unsigned long long uint64_t;
-#   endif /* other OS */
+    typedef signed long long   int64_t;
+    typedef unsigned long long uint64_t;
 #endif /* EMULATE_INTTYPES */
 
 #ifndef PRId64