Skip to content

Commit 47790d8

Browse files
committed
Detect new QSV usage in avfilter.
1 parent 9ab76d1 commit 47790d8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/projectGenerator_build.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,8 @@ void ProjectGenerator::buildProjectDependencies(map<string, bool>& projectDeps)
428428
projectDeps["libkvazaar"] = (m_projectName == "libavcodec");
429429
projectDeps["libmfx"] = ((m_projectName == "libavutil") && findSourceFile("hwcontext_qsv", ".h", notUsed)) ||
430430
(m_projectName == "libavcodec") ||
431-
((m_projectName == "libavfilter") && findSourceFile("vf_deinterlace_qsv", ".c", notUsed)) ||
431+
((m_projectName == "libavfilter") &&
432+
(findSourceFile("vf_deinterlace_qsv", ".c", notUsed) || findSourceFile("vf_stack_qsv", ".c", notUsed))) ||
432433
(m_projectName == "ffmpeg") || (m_projectName == "avconv");
433434
projectDeps["libmodplug"] = (m_projectName == "libavformat");
434435
projectDeps["libmp3lame"] = (m_projectName == "libavcodec");

0 commit comments

Comments
 (0)