diff libpostproc/postprocess.h @ 791:4f61ca80b6c1 libavcodec

better deblocking filter
author michael
date Tue, 29 Oct 2002 18:35:15 +0000
parents 4914252c963a
children 2d1283d511b7
line wrap: on
line diff
--- a/libpostproc/postprocess.h	Tue Oct 29 11:21:43 2002 +0000
+++ b/libpostproc/postprocess.h	Tue Oct 29 18:35:15 2002 +0000
@@ -54,7 +54,6 @@
 #define TEMP_NOISE_FILTER		0x100000
 #define FORCE_QUANT			0x200000
 
-
 #define GET_PP_QUALITY_MAX 6
 
 //use if u want a faster postprocessing code
@@ -76,8 +75,8 @@
 	int maxAllowedY; // for brihtness correction
 
 	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 baseDcDiff;
 	int flatnessThreshold;
 
 	int forcedQuant; // quantizer if FORCE_QUANT is used
@@ -87,7 +86,7 @@
                  uint8_t * dst[3], int dstStride[3],
                  int horizontalSize, int verticalSize,
                  QP_STORE_T *QP_store,  int QP_stride,
-		 PPMode *mode, void *ppContext);
+		 PPMode *mode, void *ppContext, int pict_type);
 
 // name is the stuff after "-pp" on the command line
 PPMode getPPModeByNameAndQuality(char *name, int quality);