全网首发:编译ffmpeg: error: ‘VFW_E_NOT_FOUND‘ undeclared ; did you mean ‘NTE_NOT_FOUND‘?
Posted 柳鲲鹏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了全网首发:编译ffmpeg: error: ‘VFW_E_NOT_FOUND‘ undeclared ; did you mean ‘NTE_NOT_FOUND‘?相关的知识,希望对你有一定的参考价值。
- 具体错误
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>
以上是关于全网首发:编译ffmpeg: error: ‘VFW_E_NOT_FOUND‘ undeclared ; did you mean ‘NTE_NOT_FOUND‘?的主要内容,如果未能解决你的问题,请参考以下文章
全网首发:FFMPEG错误: error: implicit declaration of function ‘wcscpy‘/wcscmp; did you mean ‘strcpy‘strcmp?
全网首发:编译jna:dispatch.h:30:34: fatal error: com_sun_jna_Function.h: 没有那个文件或目录
全网首发:configure: error: cannot guess build type; you must specify one