diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-12-11 21:05:31 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-12-11 21:05:31 +0000 |
commit | 8615e5a6b32d554562413949660f28e5e74270f5 (patch) | |
tree | fbb5be0e57e19212f16ebca24f9fdb2f4df5d3c8 /libpostproc | |
parent | c3e92a6cb409b0b89402211f0179604ea1254bf0 (diff) | |
download | ffmpeg-8615e5a6b32d554562413949660f28e5e74270f5.tar.gz |
Add backwards-compatibility typedef for removed _t names under appropriate
version #ifdef since otherwise public API is broken.
Originally committed as revision 16064 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc')
-rw-r--r-- | libpostproc/postprocess.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libpostproc/postprocess.h b/libpostproc/postprocess.h index fec1878181..7e30da7db1 100644 --- a/libpostproc/postprocess.h +++ b/libpostproc/postprocess.h @@ -58,6 +58,8 @@ typedef void pp_context; typedef void pp_mode; #if LIBPOSTPROC_VERSION_INT < (52<<16) +typedef pp_context pp_context_t; +typedef pp_mode pp_mode_t; extern const char *const pp_help; ///< a simple help text #else extern const char pp_help[]; ///< a simple help text |