summaryrefslogtreecommitdiff
path: root/postproc/postprocess.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-10-29 20:12:24 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-10-29 20:12:24 +0000
commitdf8d4d0ed5bb0658006a9349a814c5b220aef09d (patch)
tree13577081dff501cea5ac7b5c348946cfefdad1a5 /postproc/postprocess.h
parent9cb54f431196c09460510abf7c72a094e28ef5e3 (diff)
cleanup
Originally committed as revision 7964 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
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],