diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-12-17 06:25:12 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-12-22 02:32:06 +0100 |
commit | f0e90e00354f5705e132406a06d3360e2c00565d (patch) | |
tree | b6b1eef830a592e6ccd0d15e8acde6570afb944c /libavcodec/version.h | |
parent | 52c522c72090233edeeb0486a9bd8bee925a710a (diff) | |
download | ffmpeg-f0e90e00354f5705e132406a06d3360e2c00565d.tar.gz |
lavc: make 100 the base for the micro version number.
This way ffmpeg can be distinguished from the fork by a user
application or a encoded file by a decoder.
The highest value micro had, in the past, that i could find, was 6
thus 100 should be safe.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/version.h')
-rw-r--r-- | libavcodec/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/version.h b/libavcodec/version.h index 5d4807cdbe..11cef3f0d8 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -22,7 +22,7 @@ #define LIBAVCODEC_VERSION_MAJOR 53 #define LIBAVCODEC_VERSION_MINOR 47 -#define LIBAVCODEC_VERSION_MICRO 0 +#define LIBAVCODEC_VERSION_MICRO 100 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ LIBAVCODEC_VERSION_MINOR, \ |