diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-02-21 01:02:29 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-02-22 01:49:45 +0100 |
commit | bd8e750300073e4e64969e6b440b31967792d917 (patch) | |
tree | 9555dffa665d61f8c196e08c70cb1cc0fde9b90b /libavfilter/allfilters.c | |
parent | 704865fc87fdfcf9afe0ee554d1a32881bd87f1e (diff) | |
download | ffmpeg-bd8e750300073e4e64969e6b440b31967792d917.tar.gz |
Port drawtext filter by Hemanth from the libavfilter soc repo, with
the following additions:
* support to anti-aliased glyph rendering
* support to UTF-8 text and Unicode chars rendering
* support for RGB packed formats
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 ca268c3290..eb4cb9fa6d 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -45,6 +45,7 @@ void avfilter_register_all(void) REGISTER_FILTER (CROP, crop, vf); REGISTER_FILTER (CROPDETECT, cropdetect, vf); REGISTER_FILTER (DRAWBOX, drawbox, vf); + REGISTER_FILTER (DRAWTEXT, drawtext, vf); REGISTER_FILTER (FADE, fade, vf); REGISTER_FILTER (FIFO, fifo, vf); REGISTER_FILTER (FORMAT, format, vf); |