diff libpostproc/postprocess_internal.h @ 937:04fd733c5e4b libavcodec

buffer alloc cleanup / 10l
author michael
date Sun, 29 Dec 2002 00:57:23 +0000
parents c39e14fc2392
children 8a95bda80fdc
line wrap: on
line diff
--- a/libpostproc/postprocess_internal.h	Fri Dec 27 23:51:46 2002 +0000
+++ b/libpostproc/postprocess_internal.h	Sun Dec 29 00:57:23 2002 +0000
@@ -100,9 +100,6 @@
 	uint8_t *tempDst;
 	uint8_t *tempSrc;
 
-	/* Temporary buffers for handling the last block */
-	uint8_t *tempDstBlock;
-	uint8_t *tempSrcBlock;
 	uint8_t *deintTemp;
 
 	uint64_t __attribute__((aligned(8))) pQPb;
@@ -110,15 +107,18 @@
 
 	uint64_t __attribute__((aligned(8))) mmxDcOffset[32];
 	uint64_t __attribute__((aligned(8))) mmxDcThreshold[32];
-	
+
 	QP_STORE_T *nonBQPTable;
-	
+	QP_STORE_T *forcedQPTable;
+
 	int QP;
 	int nonBQP;
 
 	int frameNum;
 	
 	int cpuCaps;
+        
+	int stride; //size of some buffers (needed to realloc them if needed)
 
 	PPMode ppMode;
 } PPContext;