diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-08-25 17:26:15 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-08-25 16:41:22 -0700 |
commit | ab56fabe6294524e99815451ad01e4ff50c6d734 (patch) | |
tree | cddbf5a3f77ccf6f460e8a9fe76e3184ac52d226 /libavdevice | |
parent | 6ee1cb5740e7490151db7dcec7e20ceaf8a2fe1f (diff) | |
download | ffmpeg-ab56fabe6294524e99815451ad01e4ff50c6d734.tar.gz |
vfwcap: Add fallback define for HWND_MESSAGE
Some obsolete versions of the MinGW32 runtime (<4.0.0) lack the definition.
Diffstat (limited to 'libavdevice')
-rw-r--r-- | libavdevice/vfwcap.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavdevice/vfwcap.c b/libavdevice/vfwcap.c index c067be3f83..b47de1b282 100644 --- a/libavdevice/vfwcap.c +++ b/libavdevice/vfwcap.c @@ -27,6 +27,11 @@ #include <windows.h> #include <vfw.h> +/* Some obsolete versions of MinGW32 before 4.0.0 lack this. */ +#ifndef HWND_MESSAGE +#define HWND_MESSAGE ((HWND) -3) +#endif + struct vfw_ctx { const AVClass *class; HWND hwnd; |