diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-12-11 20:06:16 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-12-11 20:06:16 +0000 |
commit | 7dfea3420f60ce0ee7d55284b56cd53cc1f4fcaf (patch) | |
tree | 3134454b0d99984318ef9a7443a8b7a6ed1be1ff /libpostproc/postprocess.h | |
parent | 089e1bcf1005a217deaa56500288844cf7d9e611 (diff) | |
download | ffmpeg-7dfea3420f60ce0ee7d55284b56cd53cc1f4fcaf.tar.gz |
Drop _t from typedef names for POSIX compatibility.
Originally committed as revision 16062 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc/postprocess.h')
-rw-r--r-- | libpostproc/postprocess.h | 16 |
1 files changed, 8 insertions, 8 deletions
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 <inttypes.h> -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 |