diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-12-19 18:04:40 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-12-19 19:32:40 +0100 |
commit | 649c158e8c94ac0cff7f03e97d6ea8bbf71b7f02 (patch) | |
tree | 7d81268b34d9df6a6871aa8d61aebaf00e4be303 /libpostproc | |
parent | 869b56cae6e08c48c32033a8644907739198721d (diff) | |
download | ffmpeg-649c158e8c94ac0cff7f03e97d6ea8bbf71b7f02.tar.gz |
Add FFMPEG_VERSION into the binary libs
This simplifies identifying from which revision a binary of a lib came from
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libpostproc')
-rw-r--r-- | libpostproc/postprocess.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c index f8fb356391..c11debcd70 100644 --- a/libpostproc/postprocess.c +++ b/libpostproc/postprocess.c @@ -89,6 +89,9 @@ try to unroll inner for(x=0 ... loop to avoid these damn if(x ... checks #include "postprocess_internal.h" #include "libavutil/avstring.h" +#include "libavutil/ffversion.h" +const char postproc_ffversion[] = "FFmpeg version " FFMPEG_VERSION; + unsigned postproc_version(void) { av_assert0(LIBPOSTPROC_VERSION_MICRO >= 100); |