diff options
author | Michael Niedermayer <[email protected]> | 2014-12-19 18:04:40 +0100 |
---|---|---|
committer | Michael Niedermayer <[email protected]> | 2014-12-22 03:17:56 +0100 |
commit | 9f8cdd520b24d8d73fb495d607bf2d73b6cea2e0 (patch) | |
tree | f123b47293dd27b924a285999959308bea21ce28 /libavfilter/avfilter.c | |
parent | f5631d23e06ac3d1a8148a2989bef4e29ee28e09 (diff) |
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 <[email protected]>
(cherry picked from commit 649c158e8c94ac0cff7f03e97d6ea8bbf71b7f02)
Signed-off-by: Michael Niedermayer <[email protected]>
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r-- | libavfilter/avfilter.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 963f5e6479..b37ff1f2c8 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -37,6 +37,9 @@ #include "formats.h" #include "internal.h" +#include "libavutil/ffversion.h" +const char av_filter_ffversion[] = "FFmpeg version " FFMPEG_VERSION; + static int ff_filter_frame_framed(AVFilterLink *link, AVFrame *frame); void ff_tlog_ref(void *ctx, AVFrame *ref, int end) |