On Mon, May 21, 2012 at 9:28 AM, Kyle <[email protected]> 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. ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
