diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-05-04 19:22:38 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-05-14 21:36:11 +0200 |
commit | a2cd9be212fca02dd3d6ee65cb6ab9f84c5e28e5 (patch) | |
tree | ea5dd3dbc99b98de0c872d6fd23d8f543af4a12a /libavfilter/allfilters.c | |
parent | 4c66c4071830e74afa1aea3df52059ab163c1ddb (diff) | |
download | ffmpeg-a2cd9be212fca02dd3d6ee65cb6ab9f84c5e28e5.tar.gz |
lavfi: add an audio buffer sink.
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 25cd8222c3..c84b3f2587 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -104,6 +104,10 @@ void avfilter_register_all(void) avfilter_register(&avfilter_vsink_buffer); } { + extern AVFilter avfilter_asink_abuffer; + avfilter_register(&avfilter_asink_abuffer); + } + { extern AVFilter avfilter_vf_scale; avfilter_register(&avfilter_vf_scale); } |