Merge pull request #371 from martell/master

win-dshow: Reorder CapsMatch for gcc
master
Jim 2015-02-14 11:21:04 -08:00
commit c0b9a11c5d
1 changed files with 5 additions and 5 deletions

View File

@ -578,6 +578,11 @@ static inline bool ResolutionValid(string res, int &cx, int &cy)
return ConvertRes(cx, cy, res.c_str());
}
static inline bool CapsMatch(const VideoInfo&)
{
return true;
}
template <typename ... F>
static bool CapsMatch(const VideoDevice &dev, F ... fs);
@ -587,11 +592,6 @@ static inline bool CapsMatch(const VideoInfo &info, F&& f, Fs ... fs)
return f(info) && CapsMatch(info, fs ...);
}
static inline bool CapsMatch(const VideoInfo&)
{
return true;
}
template <typename ... F>
static bool CapsMatch(const VideoDevice &dev, F ... fs)
{