[FFmpeg-devel] [PATCH] Define ETIMEDOUT in fifo_muxer.c for MinGW/Windows fate build.

Gregory J. Wolfe gregory.wolfe at kodakalaris.com
Mon Nov 28 22:22:54 EET 2016


Fate failed to build in the MinGW/Windows environment because
macro ETIMEDOUT was undefined.  When this condition is detected,
the code now includes <_ptw32.h>, which defines the symbol.

Signed-off-by: Gregory J. Wolfe <gregory.wolfe at kodakalaris.com>
---
 libavformat/tests/fifo_muxer.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/libavformat/tests/fifo_muxer.c b/libavformat/tests/fifo_muxer.c
index 9659198..b579e48 100644
--- a/libavformat/tests/fifo_muxer.c
+++ b/libavformat/tests/fifo_muxer.c
@@ -25,6 +25,9 @@
 #include "libavutil/avassert.h"
 #include "libavformat/avformat.h"
 #include "libavformat/url.h"
+#ifndef ETIMEDOUT
+#include <_ptw32.h>
+#endif
 
 #define MAX_TST_PACKETS 128
 #define SLEEPTIME_50_MS 50000
-- 
2.5.1.windows.1



More information about the ffmpeg-devel mailing list