diff libpostproc/postprocess_internal.h @ 1196:2e06398e4647 libavcodec

mpeg2 qscale flag a few bugfixes for the C pp code minor optimization
author michaelni
date Fri, 18 Apr 2003 12:45:34 +0000
parents 57fe9c4e0c6e
children ea5200a9f730
line wrap: on
line diff
--- a/libpostproc/postprocess_internal.h	Thu Apr 17 19:53:36 2003 +0000
+++ b/libpostproc/postprocess_internal.h	Fri Apr 18 12:45:34 2003 +0000
@@ -137,6 +137,7 @@
 	uint64_t __attribute__((aligned(8))) mmxDcOffset[32];
 	uint64_t __attribute__((aligned(8))) mmxDcThreshold[32];
 
+	QP_STORE_T *stdQPTable;       ///< used to fix MPEG2 style qscale
 	QP_STORE_T *nonBQPTable;
 	QP_STORE_T *forcedQPTable;
 
@@ -147,7 +148,8 @@
 	
 	int cpuCaps;
         
-	int stride; ///<size of some buffers (needed to realloc them if needed)
+	int qpStride; ///<size of qp buffers (needed to realloc them if needed)
+	int stride;   ///<size of some buffers (needed to realloc them if needed)
         
 	int hChromaSubSample;
 	int vChromaSubSample;
@@ -155,3 +157,4 @@
 	PPMode ppMode;
 } PPContext;
 
+