diff options
author | Paul B Mahol <onemda@gmail.com> | 2016-01-18 11:22:32 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2016-02-06 23:52:09 +0100 |
commit | d12d48d0a8e188feecdfc9b792f54f0892ef6696 (patch) | |
tree | 2da906bf6e9eff4f03c646fd2baeb34114dc8c21 /libavfilter/allfilters.c | |
parent | 14bf59c1d5b5fa3b4d075f481015b8110835276e (diff) | |
download | ffmpeg-d12d48d0a8e188feecdfc9b792f54f0892ef6696.tar.gz |
avfilter: add streamselect and astreamselect filter
Signed-off-by: Clément Bœsch <u@pkh.me>
Signed-off-by: Paul B Mahol <onemda@gmail.com>
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 27d54bcec7..ee59eebee7 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -78,6 +78,7 @@ void avfilter_register_all(void) REGISTER_FILTER(ASHOWINFO, ashowinfo, af); REGISTER_FILTER(ASPLIT, asplit, af); REGISTER_FILTER(ASTATS, astats, af); + REGISTER_FILTER(ASTREAMSELECT, astreamselect, af); REGISTER_FILTER(ASYNCTS, asyncts, af); REGISTER_FILTER(ATEMPO, atempo, af); REGISTER_FILTER(ATRIM, atrim, af); @@ -257,6 +258,7 @@ void avfilter_register_all(void) REGISTER_FILTER(SPP, spp, vf); REGISTER_FILTER(SSIM, ssim, vf); REGISTER_FILTER(STEREO3D, stereo3d, vf); + REGISTER_FILTER(STREAMSELECT, streamselect, vf); REGISTER_FILTER(SUBTITLES, subtitles, vf); REGISTER_FILTER(SUPER2XSAI, super2xsai, vf); REGISTER_FILTER(SWAPUV, swapuv, vf); |