[FFmpeg-cvslog] build: fix standalone compilation of Core Audio Format demuxer
Diego Biurrun
git at videolan.org
Fri Dec 23 03:38:00 CET 2011
ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Thu Dec 22 21:05:26 2011 +0100| [408dbbd0a7ae86b55681a1a8bd543965b28af037] | committer: Diego Biurrun
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.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=408dbbd0a7ae86b55681a1a8bd543965b28af037
---
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
More information about the ffmpeg-cvslog
mailing list