# HG changeset patch # User diego # Date 1229025976 0 # Node ID 213fc392f0c0561bf9373f0e8b257bbee0b766da # Parent 4bcd2266302061a4f3a7354327992313b96a1ec9 Drop _t from typedef names for POSIX compatibility. diff -r 4bcd22663020 -r 213fc392f0c0 postprocess.c --- a/postprocess.c Thu Dec 11 16:44:22 2008 +0000 +++ b/postprocess.c Thu Dec 11 20:06:16 2008 +0000 @@ -634,7 +634,7 @@ // minor note: the HAVE_xyz is messed up after that line so do not use it. static inline void postProcess(const uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int width, int height, - const QP_STORE_T QPs[], int QPStride, int isColor, pp_mode_t *vm, pp_context_t *vc) + const QP_STORE_T QPs[], int QPStride, int isColor, pp_mode *vm, pp_context *vc) { PPContext *c= (PPContext *)vc; PPMode *ppMode= (PPMode *)vm; @@ -730,7 +730,7 @@ "\n" ; -pp_mode_t *pp_get_mode_by_name_and_quality(const char *name, int quality) +pp_mode *pp_get_mode_by_name_and_quality(const char *name, int quality) { char temp[GET_MODE_BUFFER_SIZE]; char *p= temp; @@ -905,7 +905,7 @@ return ppMode; } -void pp_free_mode(pp_mode_t *mode){ +void pp_free_mode(pp_mode *mode){ av_free(mode); } @@ -947,7 +947,7 @@ static const AVClass av_codec_context_class = { "Postproc", context_to_name, NULL }; -pp_context_t *pp_get_context(int width, int height, int cpuCaps){ +pp_context *pp_get_context(int width, int height, int cpuCaps){ PPContext *c= av_malloc(sizeof(PPContext)); int stride= (width+15)&(~15); //assumed / will realloc if needed int qpStride= (width+15)/16 + 2; //assumed / will realloc if needed @@ -995,7 +995,7 @@ uint8_t * dst[3], const int dstStride[3], int width, int height, const QP_STORE_T *QP_store, int QPStride, - pp_mode_t *vm, void *vc, int pict_type) + pp_mode *vm, void *vc, int pict_type) { int mbWidth = (width+15)>>4; int mbHeight= (height+15)>>4; diff -r 4bcd22663020 -r 213fc392f0c0 postprocess.h --- a/postprocess.h Thu Dec 11 16:44:22 2008 +0000 +++ b/postprocess.h Thu Dec 11 20:06:16 2008 +0000 @@ -54,8 +54,8 @@ #include -typedef void pp_context_t; -typedef void pp_mode_t; +typedef void pp_context; +typedef void pp_mode; #if LIBPOSTPROC_VERSION_INT < (52<<16) extern const char *const pp_help; ///< a simple help text @@ -67,19 +67,19 @@ uint8_t * dst[3], const int dstStride[3], int horizontalSize, int verticalSize, const QP_STORE_T *QP_store, int QP_stride, - pp_mode_t *mode, pp_context_t *ppContext, int pict_type); + pp_mode *mode, pp_context *ppContext, int pict_type); /** - * returns a pp_mode_t or NULL if an error occurred + * returns a pp_mode or NULL if an error occurred * name is the string after "-pp" on the command line * quality is a number from 0 to PP_QUALITY_MAX */ -pp_mode_t *pp_get_mode_by_name_and_quality(const char *name, int quality); -void pp_free_mode(pp_mode_t *mode); +pp_mode *pp_get_mode_by_name_and_quality(const char *name, int quality); +void pp_free_mode(pp_mode *mode); -pp_context_t *pp_get_context(int width, int height, int flags); -void pp_free_context(pp_context_t *ppContext); +pp_context *pp_get_context(int width, int height, int flags); +void pp_free_context(pp_context *ppContext); #define PP_CPU_CAPS_MMX 0x80000000 #define PP_CPU_CAPS_MMX2 0x20000000