具体错误
libavdevice/dshow_filter.c:116:16: error: 'VFW_E_NOT_FOUND' undeclared (first use in this function); did you mean 'NTE_NOT_FOUND'? return VFW_E_NOT_FOUND; ^~~~~~~~~~~~~~~ NTE_NOT_FOUND
研究过程
这应该是WINDOWS特有的错误。于是搜索了一下,在这个文件中:
Windows Kits/8.0/Include/um/vfwmsgs.h:249:// MessageId: VFW_E_NOT_FOUND Windows Kits/8.0/Include/um/vfwmsgs.h:255:#define VFW_E_NOT_FOUND ((HRESULT)0x80040216L)
试图加个include,找不到。首先,吾将这些文件直接复制到C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include(根据VS版本不同目录不同),就可以编译通过。
再搜索了一下cygwin:
./i686-pc-cygwin/sys-root/usr/include/w32api/vfwmsgs.h ./i686-w64-mingw32/sys-root/mingw/include/vfwmsgs.h ./include/w32api/vfwmsgs.h ./x86_64-w64-mingw32/sys-root/mingw/include/vfwmsgs.h
说明是有的。
解决办法
在libavdevice/dshow_filter.c(或者libavdevice/dshow_capture.h)文件头部加个定义:
#include <w32api/vfwmsgs.h>