summaryrefslogtreecommitdiffstats
path: root/libhb/qsv_common.c
diff options
context:
space:
mode:
authorRodeo <[email protected]>2015-06-27 21:48:25 +0000
committerRodeo <[email protected]>2015-06-27 21:48:25 +0000
commit4571f84097a038415baa35ea358d750718438c39 (patch)
tree2812aac093b4051b1c2e26d5182560130ce6f278 /libhb/qsv_common.c
parentfacea32e98b42868ebdd72a07eaa33978956f4de (diff)
QSV: cleanup LookAheadDepth handling.
When possible, allow a value of 100 for users that might want it. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7323 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/qsv_common.c')
-rw-r--r--libhb/qsv_common.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libhb/qsv_common.c b/libhb/qsv_common.c
index a76a9e7bb..a54f20afc 100644
--- a/libhb/qsv_common.c
+++ b/libhb/qsv_common.c
@@ -1168,8 +1168,7 @@ int hb_qsv_param_parse(hb_qsv_param_t *param, hb_qsv_info_t *info,
ivalue = hb_qsv_atoi(value, &error);
if (!error)
{
- // LookAheadDepth 10 will cause a hang with some driver versions
- param->codingOption2.LookAheadDepth = HB_QSV_CLIP3(11, 100,
+ param->codingOption2.LookAheadDepth = HB_QSV_CLIP3(10, 100,
ivalue);
}
}