diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-05-18 19:38:38 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-05-19 13:24:53 +0200 |
commit | 150227e8edfcbd5ee30d9236a4d3618937447ed3 (patch) | |
tree | 86b6d73de4662bd893c976176857af075c70e6be /libavfilter/Makefile | |
parent | e5fcf3646acd633bfad1806fc778bc33748e6f5f (diff) | |
download | ffmpeg-150227e8edfcbd5ee30d9236a4d3618937447ed3.tar.gz |
lavfi/asplit: move asplit code to vf_split.c, and make it support N outputs
The move allows to share the init code already used by split.
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r-- | libavfilter/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 56c931a17d..2841759243 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -50,7 +50,7 @@ OBJS-$(CONFIG_AMERGE_FILTER) += af_amerge.o OBJS-$(CONFIG_ANULL_FILTER) += af_anull.o OBJS-$(CONFIG_ARESAMPLE_FILTER) += af_aresample.o OBJS-$(CONFIG_ASHOWINFO_FILTER) += af_ashowinfo.o -OBJS-$(CONFIG_ASPLIT_FILTER) += af_asplit.o +OBJS-$(CONFIG_ASPLIT_FILTER) += vf_split.o OBJS-$(CONFIG_ASTREAMSYNC_FILTER) += af_astreamsync.o OBJS-$(CONFIG_ASYNCTS_FILTER) += af_asyncts.o OBJS-$(CONFIG_EARWAX_FILTER) += af_earwax.o |