summaryrefslogtreecommitdiffstats
path: root/libmpcodecs
diff options
context:
space:
mode:
authorlorenm <lorenm@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-01-07 11:11:21 +0000
committerlorenm <lorenm@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-01-07 11:11:21 +0000
commitb0cd65d5410e12e2261a60eaf594036cef1bd38b (patch)
treefbef3ba81d89baa5fce743bf41921d6e509b5a26 /libmpcodecs
parent3501332aab26902804c5436fba33233241161f60 (diff)
downloadmpv-b0cd65d5410e12e2261a60eaf594036cef1bd38b.tar.bz2
mpv-b0cd65d5410e12e2261a60eaf594036cef1bd38b.tar.xz
x264: disable subq=0 (the huge bitrate penalty wasn't worth the speed),
and set default subq to best. wording. renumber direct_pred (temporal seems to be best) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14412 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs')
-rw-r--r--libmpcodecs/ve_x264.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpcodecs/ve_x264.c b/libmpcodecs/ve_x264.c
index 6b7e58d805..d4623d9613 100644
--- a/libmpcodecs/ve_x264.c
+++ b/libmpcodecs/ve_x264.c
@@ -90,7 +90,7 @@ static float qcomp = 0.6;
static float qblur = 0.5;
static float complexity_blur = 20;
static char *rc_eq = "tex*blurTex^(qComp-1)";
-static int subq = 3;
+static int subq = 5;
static int psnr = 0;
static int log_level = 2;
@@ -127,7 +127,7 @@ m_option_t x264encopts_conf[] = {
{"qcomp", &qcomp, CONF_TYPE_FLOAT, CONF_RANGE, 0, 1, NULL},
{"qblur", &qblur, CONF_TYPE_FLOAT, CONF_RANGE, 0, 99, NULL},
{"cplx_blur", &complexity_blur, CONF_TYPE_FLOAT, CONF_RANGE, 0, 999, NULL},
- {"subq", &subq, CONF_TYPE_INT, CONF_RANGE, 0, 5, NULL},
+ {"subq", &subq, CONF_TYPE_INT, CONF_RANGE, 1, 5, NULL},
{"psnr", &psnr, CONF_TYPE_FLAG, 0, 0, 1, NULL},
{"nopsnr", &psnr, CONF_TYPE_FLAG, 0, 1, 0, NULL},
{"log", &log_level, CONF_TYPE_INT, CONF_RANGE, -1, 3, NULL},