Browse Source

libavfilter: increase LIBAVFILTER_VERSION_MICRO to 100 like the other libs.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.10
Michael Niedermayer 13 years ago
parent
commit
f810ab45e3
2 changed files with 2 additions and 1 deletions
  1. +1
    -0
      libavfilter/avfilter.c
  2. +1
    -1
      libavfilter/avfilter.h

+ 1
- 0
libavfilter/avfilter.c View File

@@ -31,6 +31,7 @@
#include "internal.h"

unsigned avfilter_version(void) {
av_assert0(LIBAVFILTER_VERSION_MICRO >= 100);
return LIBAVFILTER_VERSION_INT;
}



+ 1
- 1
libavfilter/avfilter.h View File

@@ -30,7 +30,7 @@

#define LIBAVFILTER_VERSION_MAJOR 2
#define LIBAVFILTER_VERSION_MINOR 53
#define LIBAVFILTER_VERSION_MICRO 0
#define LIBAVFILTER_VERSION_MICRO 100

#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \


Loading…
Cancel
Save