mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-05 14:30:00 +01:00
tools/sofa2wavs: fix build on Windows
Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
This commit is contained in:
@@ -24,6 +24,12 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <mysofa.h>
|
#include <mysofa.h>
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
#include <direct.h>
|
||||||
|
#undef mkdir
|
||||||
|
#define mkdir(a, b) _mkdir(a)
|
||||||
|
#endif
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
struct MYSOFA_HRTF *hrtf;
|
struct MYSOFA_HRTF *hrtf;
|
||||||
|
|||||||
Reference in New Issue
Block a user