aboutsummaryrefslogtreecommitdiffstats
path: root/cmdutils.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-05-17 14:26:23 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-05-17 14:26:29 +0200
commit5b0c7052fb2cd0e0b736a6ac6ce382d7f5e0112a (patch)
treeaedbe852aeca7e1fbc121269f452a2c552aa89b4 /cmdutils.h
parent11e490334e0d5839ae40468960a14a964a09af3a (diff)
parenta583e2bebe7746f7a68aede707ec3eebfd908659 (diff)
downloadffmpeg-5b0c7052fb2cd0e0b736a6ac6ce382d7f5e0112a.tar.gz
Merge remote-tracking branch 'cus/stable'
* cus/stable: ffplay: add support for toggling between multiple video filters with the w key ffplay: fix typo in docs ffplay: try multiple sample rates if audio open fails cmdutils: replace usages of "#ifdef __MINGW32__" with "#ifdef _WIN32" because MSVC only defines _WIN32 ffplay: fix compilation with Visual Studio ffplay: increase AV_SYNC_THRESHOLD_MIN to 0.04 Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'cmdutils.h')
-rw-r--r--cmdutils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdutils.h b/cmdutils.h
index 3fbaae93c2..c4a16aac73 100644
--- a/cmdutils.h
+++ b/cmdutils.h
@@ -30,7 +30,7 @@
#include "libavformat/avformat.h"
#include "libswscale/swscale.h"
-#ifdef __MINGW32__
+#ifdef _WIN32
#undef main /* We don't want SDL to override our main() */
#endif