diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-06-13 10:10:31 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-06-13 13:57:47 +0200 |
commit | 2f296e39a17cd947c6675c20ff61a2d993ff0de2 (patch) | |
tree | 48381cb324a199ef704c34ec86d433a4bc6abe13 /libavfilter/allfilters.c | |
parent | a48802836261082be8fe3d809e9e788f50620536 (diff) | |
download | ffmpeg-2f296e39a17cd947c6675c20ff61a2d993ff0de2.tar.gz |
lavfi: allow building without swscale.
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r-- | libavfilter/allfilters.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index 681487118b..118f09d057 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -73,6 +73,7 @@ void avfilter_register_all(void) REGISTER_FILTER (OVERLAY, overlay, vf); REGISTER_FILTER (PAD, pad, vf); REGISTER_FILTER (PIXDESCTEST, pixdesctest, vf); + REGISTER_FILTER (SCALE, scale, vf); REGISTER_FILTER (SELECT, select, vf); REGISTER_FILTER (SETDAR, setdar, vf); REGISTER_FILTER (SETPTS, setpts, vf); @@ -113,8 +114,4 @@ void avfilter_register_all(void) extern AVFilter avfilter_asink_abuffer; avfilter_register(&avfilter_asink_abuffer); } - { - extern AVFilter avfilter_vf_scale; - avfilter_register(&avfilter_vf_scale); - } } |