Mercurial > libavcodec.hg
diff libpostproc/postprocess.h @ 793:8e9faf69110f libavcodec
cleanup
| author | michael |
|---|---|
| date | Tue, 29 Oct 2002 20:12:24 +0000 |
| parents | 2d1283d511b7 |
| children | fbbe46490ce9 |
line wrap: on
line diff
--- a/libpostproc/postprocess.h Tue Oct 29 18:51:52 2002 +0000 +++ b/libpostproc/postprocess.h Tue Oct 29 20:12:24 2002 +0000 @@ -68,19 +68,20 @@ //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],
