diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-11-01 01:19:04 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-11-01 01:19:04 +0000 |
commit | b401ebad91ea78a263440c966c7da8758b05edfa (patch) | |
tree | 87a2b971580b3a5c46b897d0f6686db0344ae125 /postproc | |
parent | f408fc67c0bcd735ee2638d78cc4dcc3590bbb5b (diff) | |
download | ffmpeg-streaming-b401ebad91ea78a263440c966c7da8758b05edfa.zip ffmpeg-streaming-b401ebad91ea78a263440c966c7da8758b05edfa.tar.gz |
cosmetics requested by kabi
Originally committed as revision 8020 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc')
-rw-r--r-- | postproc/postprocess.c | 2 | ||||
-rw-r--r-- | postproc/postprocess.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/postproc/postprocess.c b/postproc/postprocess.c index 6353334..9995f87 100644 --- a/postproc/postprocess.c +++ b/postproc/postprocess.c @@ -489,7 +489,7 @@ static inline void horizX1Filter(uint8_t *src, int stride, int QP) // 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 diff --git a/postproc/postprocess.h b/postproc/postprocess.h index f638ad6..35b5522 100644 --- a/postproc/postprocess.h +++ b/postproc/postprocess.h @@ -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 @@ void pp_postprocess(uint8_t * src[3], int srcStride[3], 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 |