summaryrefslogtreecommitdiffstats
path: root/libhb/qsv_common.c
diff options
context:
space:
mode:
authorRodeo <[email protected]>2013-09-24 23:25:16 +0000
committerRodeo <[email protected]>2013-09-24 23:25:16 +0000
commit0f25cd001eb497e139caf78000ca00bfd569fa5b (patch)
treef9cf631237429ad85bf005044fa9426af368deef /libhb/qsv_common.c
parentdfb994ee3f02ee38fbb3d90ac016d18ce9382845 (diff)
QSV: remove RateDistortionOpt control.
The option seems to have no effect in my testing, and is of limited usefulness, so let's leave it unknown (up to the implementation). git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5810 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/qsv_common.c')
-rw-r--r--libhb/qsv_common.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/libhb/qsv_common.c b/libhb/qsv_common.c
index 73f5b2ab8..1683264dc 100644
--- a/libhb/qsv_common.c
+++ b/libhb/qsv_common.c
@@ -460,22 +460,6 @@ int hb_qsv_param_parse(hb_qsv_param_t *param,
param->codingOption.CAVLC = hb_qsv_codingoption_xlat(ivalue);
}
}
- else if (!strcasecmp(key, "rate-distorsion-opt") ||
- !strcasecmp(key, "rdo"))
- {
- switch (vcodec)
- {
- case HB_VCODEC_QSV_H264:
- ivalue = hb_qsv_atobool(value, &error);
- break;
- default:
- return HB_QSV_PARAM_UNSUPPORTED;
- }
- if (!error)
- {
- param->codingOption.RateDistortionOpt = hb_qsv_codingoption_xlat(ivalue);
- }
- }
else if (!strcasecmp(key, "videoformat"))
{
switch (vcodec)