diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-12-18 05:13:59 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-12-18 16:30:08 +0100 |
commit | 5eae7f8f35500b88382619bff3cd01f2e1e0b1ea (patch) | |
tree | 1760deba69ca685d1f7af0e40b6482b0384bcf7d /libavfilter/Makefile | |
parent | 5c2fc3bdd7f6da1c12f731419cd60037e9c3c2a4 (diff) | |
download | ffmpeg-5eae7f8f35500b88382619bff3cd01f2e1e0b1ea.tar.gz |
avfilter: add apad filter
This filter pads an audio stream with silence
It can together with -shortest be used to extend audio streams to
the same length as video.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r-- | libavfilter/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 58f89549fb..1145aebf78 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -53,6 +53,7 @@ OBJS-$(CONFIG_AFORMAT_FILTER) += af_aformat.o OBJS-$(CONFIG_AMERGE_FILTER) += af_amerge.o OBJS-$(CONFIG_AMIX_FILTER) += af_amix.o OBJS-$(CONFIG_ANULL_FILTER) += af_anull.o +OBJS-$(CONFIG_APAD_FILTER) += af_apad.o OBJS-$(CONFIG_ARESAMPLE_FILTER) += af_aresample.o OBJS-$(CONFIG_ASELECT_FILTER) += f_select.o OBJS-$(CONFIG_ASENDCMD_FILTER) += f_sendcmd.o |