diff options
author | John Stebbins <[email protected]> | 2019-02-22 15:07:04 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-03-07 13:59:35 -0800 |
commit | 001b68550f8db0927cb887dea0e4cd4bebbdfb4d (patch) | |
tree | daa6c81347b496dffab01a9fcf3eb7f58d761e93 /gtk/configure.ac | |
parent | 1ca62a0b52244e988f5505dd3cb9cf509cc3552a (diff) |
LinGui: make QSV encoding actually work
Assuming you built HandBrake with 'configure --enable-qsv' and you have
built and installed Intel MediaSDK in a directory that is in your LD search
path, the QSV encoders now work. HW decode is not supported.
Diffstat (limited to 'gtk/configure.ac')
-rw-r--r-- | gtk/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/configure.ac b/gtk/configure.ac index 47e45fc56..3316aa311 100644 --- a/gtk/configure.ac +++ b/gtk/configure.ac @@ -212,7 +212,7 @@ if test "x$use_x265" = "xyes" ; then fi if test "x$use_qsv" = "xyes" ; then - HB_LIBS="$HB_LIBS -lmfx" + HB_LIBS="$HB_LIBS -lmfx -lva -lva-drm" fi if test "x$PYTHON" != "x" ; then HB_PYTHON="$PYTHON" |