summaryrefslogtreecommitdiffstats
path: root/libhb/qsv_common.c
diff options
context:
space:
mode:
authorRodeo <[email protected]>2013-08-25 19:48:14 +0000
committerRodeo <[email protected]>2013-08-25 19:48:14 +0000
commit3e700c6e8f0054679d56b7bc5869a48f892a2291 (patch)
treecd5605c1a054078df16c80891d126f34a208d9ce /libhb/qsv_common.c
parent986883897ba4dd0064cc34caf23f5890485a06ef (diff)
QSV: don't use AVBR rate control.
User testing shows it's unreliable, and VBR works just as well for that purpose. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5749 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/qsv_common.c')
-rw-r--r--libhb/qsv_common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libhb/qsv_common.c b/libhb/qsv_common.c
index 7cc0bb70c..6028331cb 100644
--- a/libhb/qsv_common.c
+++ b/libhb/qsv_common.c
@@ -734,9 +734,9 @@ int hb_qsv_param_default(hb_qsv_param_t *param, mfxVideoParam *videoParam)
param->rc.cqp_offsets[0] = 0;
param->rc.cqp_offsets[1] = 2;
param->rc.cqp_offsets[2] = 4;
- param->rc.vbv_max_bitrate = 0;
- param->rc.vbv_buffer_size = 0;
- param->rc.vbv_buffer_init = .5;
+ param->rc.vbv_max_bitrate = 0; // set automatically
+ param->rc.vbv_buffer_size = 0; // set automatically
+ param->rc.vbv_buffer_init = .0; // set automatically
// introduced in API 1.0
memset(videoParam, 0, sizeof(mfxVideoParam));