[Mplayer-cvslog] CVS: main/postproc postprocess.c,1.69,1.70 postprocess.h,1.29,1.30
Michael Niedermayer
michael at mplayerhq.hu
Fri Nov 1 02:19:25 CET 2002
Update of /cvsroot/mplayer/main/postproc
In directory mail:/var/tmp.root/cvs-serv8146
Modified Files:
postprocess.c postprocess.h
Log Message:
cosmetics requested by kabi
Index: postprocess.c
===================================================================
RCS file: /cvsroot/mplayer/main/postproc/postprocess.c,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- postprocess.c 30 Oct 2002 21:13:07 -0000 1.69
+++ postprocess.c 1 Nov 2002 01:19:04 -0000 1.70
@@ -489,7 +489,7 @@
// minor note: the HAVE_xyz is messed up after that line so dont use it
static inline void postProcess(uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int width, int height,
- QP_STORE_T QPs[], int QPStride, int isColor, PPMode *ppMode, pp_context *vc)
+ QP_STORE_T QPs[], int QPStride, int isColor, PPMode *ppMode, pp_context_t *vc)
{
PPContext *c= (PPContext *)vc;
c->ppMode= *ppMode; //FIXME
Index: postprocess.h
===================================================================
RCS file: /cvsroot/mplayer/main/postproc/postprocess.h,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- postprocess.h 30 Oct 2002 21:02:03 -0000 1.29
+++ postprocess.h 1 Nov 2002 01:19:04 -0000 1.30
@@ -64,7 +64,7 @@
#define QP_STORE_T int8_t
-typedef void pp_context;
+typedef void pp_context_t;
extern char *pp_help;
@@ -90,13 +90,13 @@
uint8_t * dst[3], int dstStride[3],
int horizontalSize, int verticalSize,
QP_STORE_T *QP_store, int QP_stride,
- PPMode *mode, pp_context *ppContext, int pict_type);
+ PPMode *mode, pp_context_t *ppContext, int pict_type);
// name is the stuff after "-pp" on the command line
PPMode pp_get_mode_by_name_and_quality(char *name, int quality);
-pp_context *pp_get_context(int width, int height, int cpuCaps);
-void pp_free_context(pp_context *ppContext);
+pp_context_t *pp_get_context(int width, int height, int cpuCaps);
+void pp_free_context(pp_context_t *ppContext);
#define PP_CPU_CAPS_MMX 0x80000000
#define PP_CPU_CAPS_MMX2 0x20000000
More information about the MPlayer-cvslog
mailing list