From 7dfea3420f60ce0ee7d55284b56cd53cc1f4fcaf Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 11 Dec 2008 20:06:16 +0000 Subject: Drop _t from typedef names for POSIX compatibility. Originally committed as revision 16062 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libpostproc/postprocess.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'libpostproc/postprocess.h') diff --git a/libpostproc/postprocess.h b/libpostproc/postprocess.h index 2a1d6d5326..fec1878181 100644 --- a/libpostproc/postprocess.h +++ b/libpostproc/postprocess.h @@ -54,8 +54,8 @@ unsigned postproc_version(void); #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 @@ void pp_postprocess(const uint8_t * src[3], const int srcStride[3], 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 -- cgit v1.2.3