summaryrefslogtreecommitdiffstats
path: root/postproc
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-26 23:31:30 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-26 23:31:30 +0000
commite5db7a2071663aadeed3f67a4dff69f0bf613821 (patch)
tree17111bde53a76d3b838d123cd9ce6983c13cc303 /postproc
parentb77c6c3fbd1510a9251bad5628bcccf1e64b931d (diff)
downloadmpv-e5db7a2071663aadeed3f67a4dff69f0bf613821.tar.bz2
mpv-e5db7a2071663aadeed3f67a4dff69f0bf613821.tar.xz
101
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3780 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc')
-rw-r--r--postproc/postprocess.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/postproc/postprocess.c b/postproc/postprocess.c
index 979a9bbb59..471aabe11c 100644
--- a/postproc/postprocess.c
+++ b/postproc/postprocess.c
@@ -163,7 +163,8 @@ static struct PPFilter filters[]=
{
{"hb", "hdeblock", 1, 1, 3, H_DEBLOCK},
{"vb", "vdeblock", 1, 2, 4, V_DEBLOCK},
- {"vr", "rkvdeblock", 1, 2, 4, H_RK1_FILTER},
+ {"hr", "rkhdeblock", 1, 1, 3, H_RK1_FILTER},
+ {"vr", "rkvdeblock", 1, 2, 4, V_RK1_FILTER},
{"h1", "x1hdeblock", 1, 1, 3, H_X1_FILTER},
{"v1", "x1vdeblock", 1, 2, 4, V_X1_FILTER},
{"dr", "dering", 1, 5, 6, DERING},
@@ -540,6 +541,7 @@ short long name short long option Description
y nochrom chrominance filtring disabled
hb hdeblock horizontal deblocking filter
vb vdeblock vertical deblocking filter
+hr rkhdeblock
vr rkvdeblock
h1 x1hdeblock Experimental horizontal deblock filter 1
v1 x1vdeblock Experimental vertical deblock filter 1
@@ -724,9 +726,8 @@ int readPPOpt(void *conf, char *arg)
}
newPPFlag=1;
-// it shouldnt matter what we set divx_quality to as long as its not 0
-// (we dont use it if newPPFlag is set)
- divx_quality=1;
+//divx_quality is passed to postprocess if autoq if off
+ divx_quality= GET_PP_QUALITY_MAX;
return 1;
}