summaryrefslogtreecommitdiffstats
path: root/postproc/postprocess.h
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-29 20:12:24 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-29 20:12:24 +0000
commitde382c1b8c5b393963f9abc4c4f781f6f311c759 (patch)
treeca5010490331d6e4489e199e7b143705fd3aefa7 /postproc/postprocess.h
parentf5929b0a598ef0da8f002f6814b34f19368cf1fe (diff)
downloadmpv-de382c1b8c5b393963f9abc4c4f781f6f311c759.tar.bz2
mpv-de382c1b8c5b393963f9abc4c4f781f6f311c759.tar.xz
cleanup
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7964 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc/postprocess.h')
-rw-r--r--postproc/postprocess.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/postproc/postprocess.h b/postproc/postprocess.h
index 6cfa039231..79eb9387c8 100644
--- a/postproc/postprocess.h
+++ b/postproc/postprocess.h
@@ -68,19 +68,20 @@ char *pp_help;
//FIXME decide if this should be exported at all
typedef struct PPMode{
- int lumMode; //acivates filters for luminance
- int chromMode; //acivates filters for chrominance
- int error; // non zero on error
+ int lumMode; // acivates filters for luminance
+ int chromMode; // acivates filters for chrominance
+ int error; // non zero on error
- int minAllowedY; // for brigtness correction
- int maxAllowedY; // for brihtness correction
+ int minAllowedY; // for brigtness correction
+ int maxAllowedY; // for brihtness correction
+ float maxClippedThreshold; // amount of "black" u r willing to loose to get a brightness corrected picture
- int maxTmpNoise[3]; // for Temporal Noise Reducing filter (Maximal sum of abs differences)
+ int maxTmpNoise[3]; // for Temporal Noise Reducing filter (Maximal sum of abs differences)
int baseDcDiff;
int flatnessThreshold;
- int forcedQuant; // quantizer if FORCE_QUANT is used
+ int forcedQuant; // quantizer if FORCE_QUANT is used
} PPMode;
void pp_postprocess(uint8_t * src[3], int srcStride[3],