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-10-30 15:15:28 +0400
committerStefano Sabatini <stefasab@gmail.com>2012-10-31 15:07:11 +0400
commit3c4aa5062089389a7f076f1411a18ca0400906fe (patch)
tree6e1b481824afdc6edb4ac7cd7355bc56fd0380d4 /libavfilter/allfilters.c
parentdc239b3b40adb77ff638f006bc4d633348f3a4ef (diff)
lavfi: add field filter
The filter is a port of libmpcodecs/vf_field.c, since there is no common code I relicensed it as LGPL, while keeping the original author copyright.
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r--libavfilter/allfilters.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c
index 348f369520..fef40e9c85 100644
--- a/libavfilter/allfilters.c
+++ b/libavfilter/allfilters.c
@@ -90,6 +90,7 @@ void avfilter_register_all(void)
REGISTER_FILTER (DRAWTEXT, drawtext, vf);
REGISTER_FILTER (EDGEDETECT, edgedetect, vf);
REGISTER_FILTER (FADE, fade, vf);
+ REGISTER_FILTER (FIELD, field, vf);
REGISTER_FILTER (FIELDORDER, fieldorder, vf);
REGISTER_FILTER (FIFO, fifo, vf);
REGISTER_FILTER (FORMAT, format, vf);