diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2012-09-07 08:16:30 -0400 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-07 22:23:32 +0200 |
commit | 80d2ec6bc905db9d85a11f9e7b8c1f097f18a8b1 (patch) | |
tree | ac803e247591a54837144713ab225518d09aba46 /libavdevice/dshow_capture.h | |
parent | dbb9117d1817610ff1e7987a7c5a73b012d96b68 (diff) | |
download | ffmpeg-80d2ec6bc905db9d85a11f9e7b8c1f097f18a8b1.tar.gz |
dshow: Change WINBOOL to BOOL
WINBOOL is MinGW-specific, and since both MSVC and MinGW
have BOOL, use that instead.
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavdevice/dshow_capture.h')
-rw-r--r-- | libavdevice/dshow_capture.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/dshow_capture.h b/libavdevice/dshow_capture.h index a3f52318d6..e34f14fcc7 100644 --- a/libavdevice/dshow_capture.h +++ b/libavdevice/dshow_capture.h @@ -179,7 +179,7 @@ long WINAPI libAVMemInputPin_QueryInterface (libAVMemInputPin unsigned long WINAPI libAVMemInputPin_AddRef (libAVMemInputPin *); unsigned long WINAPI libAVMemInputPin_Release (libAVMemInputPin *); long WINAPI libAVMemInputPin_GetAllocator (libAVMemInputPin *, IMemAllocator **); -long WINAPI libAVMemInputPin_NotifyAllocator (libAVMemInputPin *, IMemAllocator *, WINBOOL); +long WINAPI libAVMemInputPin_NotifyAllocator (libAVMemInputPin *, IMemAllocator *, BOOL); long WINAPI libAVMemInputPin_GetAllocatorRequirements(libAVMemInputPin *, ALLOCATOR_PROPERTIES *); long WINAPI libAVMemInputPin_Receive (libAVMemInputPin *, IMediaSample *); long WINAPI libAVMemInputPin_ReceiveMultiple (libAVMemInputPin *, IMediaSample **, long, long *); |