summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2011-09-06 18:37:44 +0200
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2011-09-06 18:51:09 +0200
commit4f7dfe12eaffe2ec2399cc52ce9a8cb9f8fdb741 (patch)
tree113ea9104966963d7aaf61ef27962d1f0b7ea03f /libavfilter
parentc4415f6ec980d1a5f3ddda79395258150747e97f (diff)
lavfi: rename vsink_buffer.c to sink_buffer.c, and vsink_buffer.h to buffersink.h
This is done in order to clarify the non-video-specific nature of the buffersink code, as the result of the video/audio API unification of the previous commit, and for improving overall consistency.
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/Makefile6
-rw-r--r--libavfilter/avfilter.h2
-rw-r--r--libavfilter/buffersink.h (renamed from libavfilter/vsink_buffer.h)0
-rw-r--r--libavfilter/sink_buffer.c (renamed from libavfilter/vsink_buffer.c)2
4 files changed, 5 insertions, 5 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile
index 0d791cb962..840d53ce39 100644
--- a/libavfilter/Makefile
+++ b/libavfilter/Makefile
@@ -8,7 +8,7 @@ FFLIBS-$(CONFIG_MOVIE_FILTER) += avformat avcodec
FFLIBS-$(CONFIG_SCALE_FILTER) += swscale
FFLIBS-$(CONFIG_MP_FILTER) += avcodec
-HEADERS = avcodec.h avfilter.h avfiltergraph.h vsink_buffer.h vsrc_buffer.h
+HEADERS = avcodec.h avfilter.h avfiltergraph.h buffersink.h vsrc_buffer.h
OBJS = allfilters.o \
avfilter.o \
@@ -29,7 +29,7 @@ OBJS-$(CONFIG_ABUFFER_FILTER) += asrc_abuffer.o
OBJS-$(CONFIG_AMOVIE_FILTER) += src_movie.o
OBJS-$(CONFIG_ANULLSRC_FILTER) += asrc_anullsrc.o
-OBJS-$(CONFIG_ABUFFERSINK_FILTER) += vsink_buffer.o
+OBJS-$(CONFIG_ABUFFERSINK_FILTER) += sink_buffer.o
OBJS-$(CONFIG_ANULLSINK_FILTER) += asink_anullsink.o
OBJS-$(CONFIG_BLACKFRAME_FILTER) += vf_blackframe.o
@@ -82,7 +82,7 @@ OBJS-$(CONFIG_NULLSRC_FILTER) += vsrc_nullsrc.o
OBJS-$(CONFIG_RGBTESTSRC_FILTER) += vsrc_testsrc.o
OBJS-$(CONFIG_TESTSRC_FILTER) += vsrc_testsrc.o
-OBJS-$(CONFIG_BUFFERSINK_FILTER) += vsink_buffer.o
+OBJS-$(CONFIG_BUFFERSINK_FILTER) += sink_buffer.o
OBJS-$(CONFIG_NULLSINK_FILTER) += vsink_nullsink.o
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index 55cc57090e..b0811acaf6 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -29,7 +29,7 @@
#include "libavutil/rational.h"
#define LIBAVFILTER_VERSION_MAJOR 2
-#define LIBAVFILTER_VERSION_MINOR 38
+#define LIBAVFILTER_VERSION_MINOR 39
#define LIBAVFILTER_VERSION_MICRO 0
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
diff --git a/libavfilter/vsink_buffer.h b/libavfilter/buffersink.h
index c5ae7dcdd0..c5ae7dcdd0 100644
--- a/libavfilter/vsink_buffer.h
+++ b/libavfilter/buffersink.h
diff --git a/libavfilter/vsink_buffer.c b/libavfilter/sink_buffer.c
index 4ae561c7a7..6f7c542498 100644
--- a/libavfilter/vsink_buffer.c
+++ b/libavfilter/sink_buffer.c
@@ -25,7 +25,7 @@
#include "libavutil/fifo.h"
#include "avfilter.h"
-#include "vsink_buffer.h"
+#include "buffersink.h"
AVBufferSinkParams *av_buffersink_params_alloc(void)
{