diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-01-02 11:07:11 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-01-20 12:52:28 +0100 |
commit | 93c553c71ef48550ff7c2aa7b5712a7e01f1999f (patch) | |
tree | 0fe895e7ff6c82c6208c24e709afb4fdb766ce0b /libavcodec/version.h | |
parent | 024db24912a39316b0ef0b7d793307d62da038f4 (diff) | |
download | ffmpeg-93c553c71ef48550ff7c2aa7b5712a7e01f1999f.tar.gz |
lavc: deprecate CODEC_FLAG_EMU_EDGE and avcodec_get_edge_width().
Diffstat (limited to 'libavcodec/version.h')
-rw-r--r-- | libavcodec/version.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/version.h b/libavcodec/version.h index 2aee76ef90..59bc361890 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -30,7 +30,7 @@ #define LIBAVCODEC_VERSION_MAJOR 55 #define LIBAVCODEC_VERSION_MINOR 32 -#define LIBAVCODEC_VERSION_MICRO 0 +#define LIBAVCODEC_VERSION_MICRO 1 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ LIBAVCODEC_VERSION_MINOR, \ @@ -120,5 +120,8 @@ #ifndef FF_API_NEG_LINESIZES #define FF_API_NEG_LINESIZES (LIBAVCODEC_VERSION_MAJOR < 56) #endif +#ifndef FF_API_EMU_EDGE +#define FF_API_EMU_EDGE (LIBAVCODEC_VERSION_MAJOR < 56) +#endif #endif /* AVCODEC_VERSION_H */ |