diff options
author | John Stebbins <[email protected]> | 2019-04-17 10:33:04 -0600 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-04-17 11:25:13 -0600 |
commit | 76e9755eb71c500ba6a69c97c959f118873e5389 (patch) | |
tree | fef14dcd242551161bc077009537037b44d43fd6 /libhb/qsv_common.c | |
parent | b2cb27773a0cc1b84c847afec0b370e59236258d (diff) |
qsv: use HB_PROJECT_FEATURE_QSV instead of USE_QSV
Diffstat (limited to 'libhb/qsv_common.c')
-rw-r--r-- | libhb/qsv_common.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libhb/qsv_common.c b/libhb/qsv_common.c index de907bb45..58b1b0dcb 100644 --- a/libhb/qsv_common.c +++ b/libhb/qsv_common.c @@ -7,7 +7,9 @@ * For full terms see the file COPYING file or visit http://www.gnu.org/licenses/gpl-2.0.html */ -#ifdef USE_QSV +#include "project.h" + +#if HB_PROJECT_FEATURE_QSV #include <stdio.h> #include <string.h> @@ -2247,4 +2249,4 @@ int hb_qsv_available() return 0; } -#endif // USE_QSV +#endif // HB_PROJECT_FEATURE_QSV |