summaryrefslogtreecommitdiffstats
path: root/postproc/postprocess.h
diff options
context:
space:
mode:
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],