summaryrefslogtreecommitdiffstats
path: root/postproc/postprocess.h
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-01-03 14:16:13 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-01-03 14:16:13 +0000
commit2aa34c8fb4a8b37b886a82ddb65e975a687c93a3 (patch)
treeb26f5bc0abd6763f0b4eea345815bef5f93f7902 /postproc/postprocess.h
parenteecd49f86ab5d6989c2f677cc6a7be564d419d34 (diff)
downloadmpv-2aa34c8fb4a8b37b886a82ddb65e975a687c93a3.tar.bz2
mpv-2aa34c8fb4a8b37b886a82ddb65e975a687c93a3.tar.xz
-npp fq:<quantizer>
force quantizer (for these lq movies which where reencoded at high bitrates) (c) 2002 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3965 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc/postprocess.h')
-rw-r--r--postproc/postprocess.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/postproc/postprocess.h b/postproc/postprocess.h
index c6a9dbe3a1..2fc56f5993 100644
--- a/postproc/postprocess.h
+++ b/postproc/postprocess.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2001 Michael Niedermayer (michaelni@gmx.at)
+ Copyright (C) 2001-2002 Michael Niedermayer (michaelni@gmx.at)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -57,6 +57,7 @@
#define MEDIAN_DEINT_FILTER 0x80000 // 524288
#define TEMP_NOISE_FILTER 0x100000
+#define FORCE_QUANT 0x200000
#define GET_PP_QUALITY_MAX 6
@@ -87,6 +88,7 @@ struct PPMode{
int maxTmpNoise[3]; // for Temporal Noise Reducing filter (Maximal sum of abs differences)
int maxDcDiff; // max abs diff between pixels to be considered flat
+ int forcedQuant; // quantizer if FORCE_QUANT is used
};
struct PPFilter{