diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-08-13 20:13:26 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-09-23 00:50:06 +0200 |
commit | 740c99528880c1d101167f82eddcfe8ce5453605 (patch) | |
tree | 8067e907f56647cbf0c36576275751a4d18b4148 /libavfilter/allfilters.c | |
parent | 7fe1ecefe17b0146d49cd0003f80266a481d1faa (diff) | |
download | ffmpeg-740c99528880c1d101167f82eddcfe8ce5453605.tar.gz |
lavfi: add asendcmd and sendcmd 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 6842ec95d5..b28c024c63 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -42,6 +42,7 @@ void avfilter_register_all(void) REGISTER_FILTER (AMIX, amix, af); REGISTER_FILTER (ANULL, anull, af); REGISTER_FILTER (ARESAMPLE, aresample, af); + REGISTER_FILTER (ASENDCMD, asendcmd, af); REGISTER_FILTER (ASETNSAMPLES, asetnsamples, af); REGISTER_FILTER (ASETPTS, asetpts, af); REGISTER_FILTER (ASETTB, asettb, af); @@ -113,6 +114,7 @@ void avfilter_register_all(void) REGISTER_FILTER (REMOVELOGO, removelogo, vf); REGISTER_FILTER (SCALE, scale, vf); REGISTER_FILTER (SELECT, select, vf); + REGISTER_FILTER (SENDCMD, sendcmd, vf); REGISTER_FILTER (SETDAR, setdar, vf); REGISTER_FILTER (SETFIELD, setfield, vf); REGISTER_FILTER (SETPTS, setpts, vf); |