diff options
author | James Almer <jamrial@gmail.com> | 2013-11-29 01:45:05 -0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-11-30 13:29:27 +0100 |
commit | 19e301b9eda7b22654fa8291ed4cc0f285a8acff (patch) | |
tree | 3718d75444e8ccb5836c5f1d7ca2f29ddfb4d113 | |
parent | bd9de4f5942a9e073f37df7a64ed1baff2d24419 (diff) | |
download | ffmpeg-19e301b9eda7b22654fa8291ed4cc0f285a8acff.tar.gz |
lavfi/Makefile: Don't compile lavfutils.c and lswsutils.c if they are not needed
They are only needed by removelogo.
This fixes a link failure in shared builds when compiling with
removelogo disabled but Lavf/SwS enabled
Signed-off-by: James Almer <jamrial@gmail.com>
Reviewed-by: Stefano Sabatini <stefasab@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 7bd4323211..3d8a763ec1 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -49,8 +49,6 @@ OBJS = allfilters.o \ OBJS-$(CONFIG_AVCODEC) += avcodec.o -OBJS-$(CONFIG_AVFORMAT) += lavfutils.o -OBJS-$(CONFIG_SWSCALE) += lswsutils.o OBJS-$(CONFIG_ACONVERT_FILTER) += af_aconvert.o OBJS-$(CONFIG_ADELAY_FILTER) += af_adelay.o |