diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2010-10-15 18:25:01 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2010-10-15 18:25:01 +0000 |
commit | 13728334e8ac3dde15ef23a6a4aa935b3c92fa64 (patch) | |
tree | 188851e992b4d3b01a0c7f38c12a0d29fbb3aea9 /libavformat/avformat.h | |
parent | ad2d0fdf2519a413e8194d8cd641a230c612abc3 (diff) | |
download | ffmpeg-13728334e8ac3dde15ef23a6a4aa935b3c92fa64.tar.gz |
add FF_API_SYMVER define to disable symver compatibility functions
Originally committed as revision 25491 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 0ab1156881..2b7d166970 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -81,6 +81,9 @@ #ifndef FF_API_FIRST_FORMAT #define FF_API_FIRST_FORMAT (LIBAVFORMAT_VERSION_MAJOR < 53) #endif +#ifndef FF_API_SYMVER +#define FF_API_SYMVER (LIBAVFORMAT_VERSION_MAJOR < 53) +#endif /** * I return the LIBAVFORMAT_VERSION_INT constant. You got |