Browse Source

Make libavfilter define its version like the other libav* libs

Originally committed as revision 12248 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Vitor Sessak 17 years ago
parent
commit
be19d752ba
1 changed files with 11 additions and 1 deletions
  1. +11
    -1
      libavfilter/avfilter.h

+ 11
- 1
libavfilter/avfilter.h View File

@@ -22,7 +22,17 @@
#ifndef 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 "avcodec.h"


Loading…
Cancel
Save