x264: Use __declspec(dllimport) with MinGW too

x264.h says this isn't needed with MinGW, but it looks like it is.

Fixes https://bugzilla.gnome.org/show_bug.cgi?id=779249
This commit is contained in:
Nirbheek Chauhan 2017-04-27 12:42:34 +05:30 committed by Sebastian Dröge
parent fb30e24499
commit c6a0026137

View file

@ -30,6 +30,13 @@
#include <stdint.h>
#endif
/* The x264.h header says this isn't needed with MinGW, but sometimes the
* compiler is unable to correctly do the pointer indirection for us, which
* leads to a segfault when you try to dereference any const values provided
* by x264.dll. See: https://bugzilla.gnome.org/show_bug.cgi?id=779249 */
#if defined(_WIN32) && !defined(X264_API_IMPORTS)
# define X264_API_IMPORTS
#endif
#include <x264.h>
G_BEGIN_DECLS