diff --git a/vpx/src/svc_encodeframe.c b/vpx/src/svc_encodeframe.c index 4f5ba6f20cd258ff22606089ddb28dbabd99346e..adce47637522825305b72d46f95b7f11a5baff9c 100644 --- a/vpx/src/svc_encodeframe.c +++ b/vpx/src/svc_encodeframe.c @@ -23,11 +23,13 @@ #include "vpx/vp8cx.h" #include "vpx/vpx_encoder.h" -#if defined(__MINGW32__) && !defined(MINGW_HAS_SECURE_API) +#ifdef __MINGW32__ #define strtok_r strtok_s +#ifndef MINGW_HAS_SECURE_API // proto from /usr/x86_64-w64-mingw32/include/sec_api/string_s.h _CRTIMP char *__cdecl strtok_s(char *str, const char *delim, char **context); -#endif +#endif /* MINGW_HAS_SECURE_API */ +#endif /* __MINGW32__ */ #ifdef _MSC_VER #define strdup _strdup