diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-05-04 18:57:04 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-05-14 21:36:11 +0200 |
commit | 4c66c4071830e74afa1aea3df52059ab163c1ddb (patch) | |
tree | 84cd3f7be732f5f9b426da82af151fe2806e7b30 /libavfilter/allfilters.c | |
parent | 720c6b78d1e8323d2df070e3da2f0ed305156c65 (diff) | |
download | ffmpeg-4c66c4071830e74afa1aea3df52059ab163c1ddb.tar.gz |
lavfi: add an audio buffer source.
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r-- | libavfilter/allfilters.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index 66d890f161..25cd8222c3 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -96,6 +96,10 @@ void avfilter_register_all(void) avfilter_register(&avfilter_vsrc_buffer); } { + extern AVFilter avfilter_asrc_abuffer; + avfilter_register(&avfilter_asrc_abuffer); + } + { extern AVFilter avfilter_vsink_buffer; avfilter_register(&avfilter_vsink_buffer); } |