summaryrefslogtreecommitdiff
path: root/libavfilter/allfilters.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-05-04 18:57:04 +0200
committerAnton Khirnov <anton@khirnov.net>2012-05-14 21:36:11 +0200
commit4c66c4071830e74afa1aea3df52059ab163c1ddb (patch)
tree84cd3f7be732f5f9b426da82af151fe2806e7b30 /libavfilter/allfilters.c
parent720c6b78d1e8323d2df070e3da2f0ed305156c65 (diff)
lavfi: add an audio buffer source.
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r--libavfilter/allfilters.c4
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);
}