|
From: Ozkan S. <se...@gm...> - 2012-05-21 07:09:49
|
On Mon, May 21, 2012 at 9:28 AM, Kyle <ksh...@gm...> wrote: > Hi, > > I just updated my MinGW-w64 tool chain and am having issues compiling > FFmpeg now. > > I'm getting: > /home/kyle/software/ffmpeg/source/ffmpeg-git/libavdevice/dshow.h:35:1: > error: unknown type name 'VIDEO_STREAM_CONFIG_CAPS' [...] That's because your libavdevice/dshow.h is misfortunately named "dshow.h". It is attempting to include system's dshow.h by an #include directive, which is wrong: you should use #include_next instead (or rename the header). If system's dshow.h is included, it includes strmif.h by itself and the missing data type will be there. -- O.S. |