diff options
author | Dmitrichenko, Max <[email protected]> | 2020-07-07 21:10:17 +0200 |
---|---|---|
committer | Scott <[email protected]> | 2020-07-11 21:15:15 +0100 |
commit | dbe9b5d670eda4a8aaf9dee268214711bae84e2e (patch) | |
tree | a29e4c339b7b55a63ffb55ffdef30ed08903287a | |
parent | aad325b854b2a3abd6a353dd2a5ccc9060dbe211 (diff) |
qsv: default usage is balanced
-rw-r--r-- | libhb/qsv_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/qsv_common.c b/libhb/qsv_common.c index ef16b5593..6989fb5f0 100644 --- a/libhb/qsv_common.c +++ b/libhb/qsv_common.c @@ -2023,7 +2023,7 @@ int hb_qsv_param_default(hb_qsv_param_t *param, mfxVideoParam *videoParam, param->videoParam->Protected = 0; // reserved, must be 0 param->videoParam->NumExtParam = 0; param->videoParam->IOPattern = MFX_IOPATTERN_IN_SYSTEM_MEMORY; - param->videoParam->mfx.TargetUsage = MFX_TARGETUSAGE_2; + param->videoParam->mfx.TargetUsage = MFX_TARGETUSAGE_BALANCED; param->videoParam->mfx.GopOptFlag = MFX_GOP_CLOSED; param->videoParam->mfx.NumThread = 0; // deprecated, must be 0 param->videoParam->mfx.EncodedOrder = 0; // input is in display order |