diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-03-13 05:59:20 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-03-16 16:04:59 +0100 |
commit | 3b2b636a2ad5ba77dbc20112ec427c1ce95c5ec8 (patch) | |
tree | 99bab47496155ea93969f47f30c1c560d84fbb63 /libavfilter/allfilters.c | |
parent | 18369967a56dc807804c3f2ff0fc97457356be34 (diff) | |
download | ffmpeg-3b2b636a2ad5ba77dbc20112ec427c1ce95c5ec8.tar.gz |
lavfi: add perms and aperms filters.
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r-- | libavfilter/allfilters.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index 51d7996699..086e6c90ce 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -52,6 +52,7 @@ void avfilter_register_all(void) REGISTER_FILTER(AMIX, amix, af); REGISTER_FILTER(ANULL, anull, af); REGISTER_FILTER(APAD, apad, af); + REGISTER_FILTER(APERMS, aperms, af); REGISTER_FILTER(ARESAMPLE, aresample, af); REGISTER_FILTER(ASELECT, aselect, af); REGISTER_FILTER(ASENDCMD, asendcmd, af); @@ -135,6 +136,7 @@ void avfilter_register_all(void) REGISTER_FILTER(OCV, ocv, vf); REGISTER_FILTER(OVERLAY, overlay, vf); REGISTER_FILTER(PAD, pad, vf); + REGISTER_FILTER(PERMS, perms, vf); REGISTER_FILTER(PIXDESCTEST, pixdesctest, vf); REGISTER_FILTER(PP, pp, vf); REGISTER_FILTER(REMOVELOGO, removelogo, vf); |