diff options
author | John Stebbins <[email protected]> | 2019-05-27 09:31:02 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-05-27 09:31:02 -0700 |
commit | 6c4e48899dc37af843b659ba9c29a43fa5cc0b68 (patch) | |
tree | 00b217ab7176298c638b3408246d90377edcf74e | |
parent | ec37ce222d4baaf13b0c5f5efedf350d5f28fc8f (diff) |
decvcodec: fix building with QSV disabled
-rw-r--r-- | libhb/decavcodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/decavcodec.c b/libhb/decavcodec.c index 452847098..340066364 100644 --- a/libhb/decavcodec.c +++ b/libhb/decavcodec.c @@ -44,12 +44,12 @@ #include "libavfilter/avfilter.h" #include "libavfilter/buffersrc.h" #include "libavfilter/buffersink.h" -#include "libavutil/hwcontext_qsv.h" #include "libavutil/hwcontext.h" #include "lang.h" #include "audio_resample.h" #if HB_PROJECT_FEATURE_QSV +#include "libavutil/hwcontext_qsv.h" #include "qsv_common.h" #include "qsv_libav.h" #endif |