mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-03-14 12:36:27 -04:00
ffmpeg-mux: Disable stdout/stderr on Windows
These server no purpose unless the ENABLE_FFMPEG_MUX_DEBUG flag is enabled, and will ultimately just cause problems.
This commit is contained in:
@@ -47,6 +47,13 @@
|
||||
|
||||
#define AVIO_BUFFER_SIZE 65536
|
||||
|
||||
#if defined(_WIN32) && !defined(ENABLE_FFMPEG_MUX_DEBUG)
|
||||
#define fprintf(...)
|
||||
#define printf(...)
|
||||
#define fflush(x)
|
||||
#define puts(x)
|
||||
#endif
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
static char *global_stream_key = "";
|
||||
|
||||
Reference in New Issue
Block a user