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_filter.c | |
parent | b2cb27773a0cc1b84c847afec0b370e59236258d (diff) |
qsv: use HB_PROJECT_FEATURE_QSV instead of USE_QSV
Diffstat (limited to 'libhb/qsv_filter.c')
-rw-r--r-- | libhb/qsv_filter.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libhb/qsv_filter.c b/libhb/qsv_filter.c index 9f7450c7e..a8ad4ef3c 100644 --- a/libhb/qsv_filter.c +++ b/libhb/qsv_filter.c @@ -26,7 +26,9 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \* ********************************************************************* */ -#ifdef USE_QSV +#include "project.h" + +#if HB_PROJECT_FEATURE_QSV #include "hb.h" #include "hbffmpeg.h" @@ -671,5 +673,5 @@ static int hb_qsv_filter_work( hb_filter_object_t * filter, return HB_FILTER_OK; } -#endif // USE_QSV +#endif // HB_PROJECT_FEATURE_QSV |