diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-12-22 21:05:26 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-12-23 00:45:08 +0100 |
commit | 408dbbd0a7ae86b55681a1a8bd543965b28af037 (patch) | |
tree | 17e0ddebf20f787451b89b3b1040c7429cb426e0 | |
parent | ad3161ec1d70291efcf40121d703ef73c0b08e5b (diff) | |
download | ffmpeg-408dbbd0a7ae86b55681a1a8bd543965b28af037.tar.gz |
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.
-rw-r--r-- | libavformat/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index c3a4c0d07b..bc89b34270 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 |