[Mplayer-cvslog] CVS: main/postproc postprocess.c,1.8,1.9 postprocess.h,1.6,1.7

Arpi of Ize arpi at mplayer.dev.hu
Sat Oct 13 17:53:26 CEST 2001


Update of /cvsroot/mplayer/main/postproc
In directory mplayer:/var/tmp.root/cvs-serv5260

Modified Files:
	postprocess.c postprocess.h 
Log Message:
Cleanup:
- TIMEING && MORE_TIMEING disabled by default
- private stuff moved to postprocess.c to avoid possible conflicts


Index: postprocess.c
===================================================================
RCS file: /cvsroot/mplayer/main/postproc/postprocess.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- postprocess.c	13 Oct 2001 15:36:04 -0000	1.8
+++ postprocess.c	13 Oct 2001 15:53:24 -0000	1.9
@@ -90,6 +90,16 @@
 //#undef HAVE_MMX
 #include "postprocess.h"
 
+#define MIN(a,b) ((a) > (b) ? (b) : (a))
+#define MAX(a,b) ((a) < (b) ? (b) : (a))
+#define ABS(a) ((a) > 0 ? (a) : (-(a)))
+#define SIGN(a) ((a) > 0 ? 1 : -1)
+
+#ifdef HAVE_MMX2
+#define PAVGB(a,b) "pavgb " #a ", " #b " \n\t"
+#elif defined (HAVE_3DNOW)
+#define PAVGB(a,b) "pavgusb " #a ", " #b " \n\t"
+#endif
 
 static uint64_t packedYOffset=	0x0000000000000000LL;
 static uint64_t packedYScale=	0x0100010001000100LL;

Index: postprocess.h
===================================================================
RCS file: /cvsroot/mplayer/main/postproc/postprocess.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- postprocess.h	13 Oct 2001 15:38:19 -0000	1.6
+++ postprocess.h	13 Oct 2001 15:53:24 -0000	1.7
@@ -46,23 +46,13 @@
 #define H_RK1_FILTER	0x1000			// 4096
 #define H_X1_FILTER	0x2000			// 8192
 
+#define GET_PP_QUALITY_MAX 6
 
-#define TIMEING
-#define MORE_TIMEING
-
-#define MIN(a,b) ((a) > (b) ? (b) : (a))
-#define MAX(a,b) ((a) < (b) ? (b) : (a))
-#define ABS(a) ((a) > 0 ? (a) : (-(a)))
-#define SIGN(a) ((a) > 0 ? 1 : -1)
+//#define TIMEING
+//#define MORE_TIMEING
 
 #define QP_STORE_T int
 
-#ifdef HAVE_MMX2
-#define PAVGB(a,b) "pavgb " #a ", " #b " \n\t"
-#elif defined (HAVE_3DNOW)
-#define PAVGB(a,b) "pavgusb " #a ", " #b " \n\t"
-#endif
-
 //#ifdef __cplusplus
 //#include <inttypes.h>
 
@@ -74,15 +64,16 @@
 //extern "C"
 //{
 //#endif
+
 void postprocess(unsigned char * src[], int src_stride,
                  unsigned char * dst[], int dst_stride,
                  int horizontal_size,   int vertical_size,
                  QP_STORE_T *QP_store,  int QP_stride, int mode);
+
 int getPpModeForQuality(int quality);
+
 //#ifdef __cplusplus
 //}
 //#endif
-
-#define GET_PP_QUALITY_MAX 6
 
 #endif




More information about the MPlayer-cvslog mailing list