summaryrefslogtreecommitdiff
path: root/libavfilter/allfilters.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-12-28 01:01:09 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-12-28 01:01:09 +0000
commitb5670209438481f21addc8b7c4891627dd5ddac7 (patch)
tree69b199d9dd349c1ad56a9b1a964ede545d662864 /libavfilter/allfilters.c
parent28e5d45c68cf4f3fb517b08b7a7f3cc979536e0c (diff)
Add copy filter, useful for testing the avfilter_draw_slice() copy
code. Originally committed as revision 26112 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 886a50a677..1dffb80473 100644
--- a/libavfilter/allfilters.c
+++ b/libavfilter/allfilters.c
@@ -41,6 +41,7 @@ void avfilter_register_all(void)
REGISTER_FILTER (ANULLSINK, anullsink, asink);
REGISTER_FILTER (BLACKFRAME, blackframe, vf);
+ REGISTER_FILTER (COPY, copy, vf);
REGISTER_FILTER (CROP, crop, vf);
REGISTER_FILTER (CROPDETECT, cropdetect, vf);
REGISTER_FILTER (DRAWBOX, drawbox, vf);