diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-07 19:15:17 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-07 19:15:17 +0000 |
commit | 9b7269e379289e240404c803acac25c607bb0e26 (patch) | |
tree | 0f6312c2dfd2428331a19cae2ff215298965d865 /libavcore/avcore.h | |
parent | 4906e7b507f184c4934060430b6beedcea4dbf34 (diff) | |
download | ffmpeg-9b7269e379289e240404c803acac25c607bb0e26.tar.gz |
Adopt a hierarchical name scheme for the imgutils.h API. Simplify
grepping and somewhat more consistent with the scheme adopted by other
FFmpeg modules API.
Originally committed as revision 25057 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcore/avcore.h')
-rw-r--r-- | libavcore/avcore.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/libavcore/avcore.h b/libavcore/avcore.h index 98c86516fa..d11ae3866e 100644 --- a/libavcore/avcore.h +++ b/libavcore/avcore.h @@ -27,7 +27,7 @@ #include "libavutil/avutil.h" #define LIBAVCORE_VERSION_MAJOR 0 -#define LIBAVCORE_VERSION_MINOR 6 +#define LIBAVCORE_VERSION_MINOR 7 #define LIBAVCORE_VERSION_MICRO 0 #define LIBAVCORE_VERSION_INT AV_VERSION_INT(LIBAVCORE_VERSION_MAJOR, \ @@ -55,4 +55,12 @@ const char *avcore_configuration(void); */ const char *avcore_license(void); +/** + * Those FF_API_* defines are not part of public API. + * They may change, break or disappear at any time. + */ +#ifndef FF_API_OLD_IMAGE_NAMES +#define FF_API_OLD_IMAGE_NAMES (LIBAVCORE_VERSION_MAJOR < 1) +#endif + #endif /* AVCORE_AVCORE_H */ |