Commit e4e58258 authored by vitor's avatar vitor

Make libavfilter define its version like the other libav* libs

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12248 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 80b8d780
...@@ -22,7 +22,17 @@ ...@@ -22,7 +22,17 @@
#ifndef FFMPEG_AVFILTER_H #ifndef FFMPEG_AVFILTER_H
#define FFMPEG_AVFILTER_H #define FFMPEG_AVFILTER_H
#define LIBAVFILTER_VERSION 0.0.0 #define LIBAVFILTER_VERSION_MAJOR 0
#define LIBAVFILTER_VERSION_MINOR 0
#define LIBAVFILTER_VERSION_MICRO 0
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \
LIBAVFILTER_VERSION_MICRO)
#define LIBAVFILTER_VERSION AV_VERSION(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \
LIBAVFILTER_VERSION_MICRO)
#define LIBAVFILTER_BUILD LIBAVFILTER_VERSION_INT
#include <stddef.h> #include <stddef.h>
#include "avcodec.h" #include "avcodec.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment