Commit 47647149 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge remote-tracking branch 'qatar/master'

* qatar/master:
  libavfilter: Add asettb filter for setting timebase for audio

Conflicts:
	Changelog
	doc/filters.texi
	libavfilter/Makefile
	libavfilter/allfilters.c
	libavfilter/settb.c
	libavfilter/version.h

See: ba856c0b and others
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 8945dcbb ad8159e0
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
#include "libavutil/mathematics.h" #include "libavutil/mathematics.h"
#include "libavutil/opt.h" #include "libavutil/opt.h"
#include "libavutil/rational.h" #include "libavutil/rational.h"
#include "audio.h"
#include "avfilter.h" #include "avfilter.h"
#include "internal.h" #include "internal.h"
#include "audio.h" #include "audio.h"
...@@ -151,7 +152,7 @@ AVFilter ff_vf_settb = { ...@@ -151,7 +152,7 @@ AVFilter ff_vf_settb = {
.inputs = avfilter_vf_settb_inputs, .inputs = avfilter_vf_settb_inputs,
.outputs = avfilter_vf_settb_outputs, .outputs = avfilter_vf_settb_outputs,
}; };
#endif #endif /* CONFIG_SETTB_FILTER */
#if CONFIG_ASETTB_FILTER #if CONFIG_ASETTB_FILTER
...@@ -184,4 +185,4 @@ AVFilter ff_af_asettb = { ...@@ -184,4 +185,4 @@ AVFilter ff_af_asettb = {
.outputs = avfilter_af_asettb_outputs, .outputs = avfilter_af_asettb_outputs,
.priv_class = &asettb_class, .priv_class = &asettb_class,
}; };
#endif #endif /* CONFIG_ASETTB_FILTER */
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
#include "libavutil/version.h" #include "libavutil/version.h"
#define LIBAVFILTER_VERSION_MAJOR 4 #define LIBAVFILTER_VERSION_MAJOR 4
#define LIBAVFILTER_VERSION_MINOR 3 #define LIBAVFILTER_VERSION_MINOR 4
#define LIBAVFILTER_VERSION_MICRO 100 #define LIBAVFILTER_VERSION_MICRO 100
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
......
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