Module: libav Branch: master Commit: 408dbbd0a7ae86b55681a1a8bd543965b28af037
Author: Diego Biurrun <[email protected]> Committer: Diego Biurrun <[email protected]> Date: Thu Dec 22 21:05:26 2011 +0100 build: fix standalone compilation of Core Audio Format demuxer The demuxer depends on code from mov.c, which in turn depends on code from mov_chan.c, so link against it. --- libavformat/Makefile | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/libavformat/Makefile b/libavformat/Makefile index c3a4c0d..bc89b34 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -49,7 +49,8 @@ OBJS-$(CONFIG_BFI_DEMUXER) += bfi.o OBJS-$(CONFIG_BINK_DEMUXER) += bink.o OBJS-$(CONFIG_BMV_DEMUXER) += bmv.o OBJS-$(CONFIG_C93_DEMUXER) += c93.o vocdec.o voc.o -OBJS-$(CONFIG_CAF_DEMUXER) += cafdec.o caf.o mov.o riff.o isom.o +OBJS-$(CONFIG_CAF_DEMUXER) += cafdec.o caf.o mov.o mov_chan.o \ + riff.o isom.o OBJS-$(CONFIG_CAVSVIDEO_DEMUXER) += cavsvideodec.o rawdec.o OBJS-$(CONFIG_CAVSVIDEO_MUXER) += rawenc.o OBJS-$(CONFIG_CDG_DEMUXER) += cdg.o _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
