Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-05-18 21:41:44 +0400
committerStefano Sabatini <stefasab@gmail.com>2012-05-19 15:24:57 +0400
commit0e82d317ebfc1eda840bdb714c8ecb4630dae389 (patch)
tree9a502eb194106a0032f1b37f8f981452393d9da9 /libavfilter
parent150227e8edfcbd5ee30d9236a4d3618937447ed3 (diff)
lavfi: rename vf_split.c -> f_split.c
The file now contains both an audio and a video split filter.
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/Makefile4
-rw-r--r--libavfilter/f_split.c (renamed from libavfilter/vf_split.c)2
2 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile
index 2841759243..f4be7a8c08 100644
--- a/libavfilter/Makefile
+++ b/libavfilter/Makefile
@@ -50,7 +50,7 @@ OBJS-$(CONFIG_AMERGE_FILTER) += af_amerge.o
OBJS-$(CONFIG_ANULL_FILTER) += af_anull.o
OBJS-$(CONFIG_ARESAMPLE_FILTER) += af_aresample.o
OBJS-$(CONFIG_ASHOWINFO_FILTER) += af_ashowinfo.o
-OBJS-$(CONFIG_ASPLIT_FILTER) += vf_split.o
+OBJS-$(CONFIG_ASPLIT_FILTER) += f_split.o
OBJS-$(CONFIG_ASTREAMSYNC_FILTER) += af_astreamsync.o
OBJS-$(CONFIG_ASYNCTS_FILTER) += af_asyncts.o
OBJS-$(CONFIG_EARWAX_FILTER) += af_earwax.o
@@ -108,7 +108,7 @@ OBJS-$(CONFIG_SETSAR_FILTER) += vf_aspect.o
OBJS-$(CONFIG_SETTB_FILTER) += vf_settb.o
OBJS-$(CONFIG_SHOWINFO_FILTER) += vf_showinfo.o
OBJS-$(CONFIG_SLICIFY_FILTER) += vf_slicify.o
-OBJS-$(CONFIG_SPLIT_FILTER) += vf_split.o
+OBJS-$(CONFIG_SPLIT_FILTER) += f_split.o
OBJS-$(CONFIG_SUPER2XSAI_FILTER) += vf_super2xsai.o
OBJS-$(CONFIG_SWAPUV_FILTER) += vf_swapuv.o
OBJS-$(CONFIG_THUMBNAIL_FILTER) += vf_thumbnail.o
diff --git a/libavfilter/vf_split.c b/libavfilter/f_split.c
index 172781d7e1..2015980452 100644
--- a/libavfilter/vf_split.c
+++ b/libavfilter/f_split.c
@@ -20,7 +20,7 @@
/**
* @file
- * Video splitter
+ * audio and video splitter
*/
#include "avfilter.h"