diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-11-21 18:39:34 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-11-21 18:39:34 +0000 |
commit | 58935b25d00ed06eddb189ee4352ab0fc7f98648 (patch) | |
tree | 2738594ff208269aaaab0ff3270f26b8219f7eca /libavfilter/allfilters.c | |
parent | e58d0392c5d2c611a0a49c4ef2b1f67678e370ce (diff) | |
download | ffmpeg-58935b25d00ed06eddb189ee4352ab0fc7f98648.tar.gz |
Port overlay filter from the libavfilter repo (with many fixes),
adopting Baptiste variant which is simpler and faster.
Originally committed as revision 25784 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r-- | libavfilter/allfilters.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index d30e95aed3..0cac9ba266 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -52,6 +52,7 @@ void avfilter_register_all(void) REGISTER_FILTER (NOFORMAT, noformat, vf); REGISTER_FILTER (NULL, null, vf); REGISTER_FILTER (OCV_SMOOTH, ocv_smooth, vf); + REGISTER_FILTER (OVERLAY, overlay, vf); REGISTER_FILTER (PAD, pad, vf); REGISTER_FILTER (PIXDESCTEST, pixdesctest, vf); REGISTER_FILTER (PIXELASPECT, pixelaspect, vf); |