diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-12-22 21:09:23 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-12-23 00:45:10 +0100 |
commit | e2c97aee393a0f74d9ce91c5389b812ffdb0b4e8 (patch) | |
tree | 8a3b91ae8b6c0387be7ceb473ec80d973886eeb5 /libavformat | |
parent | 408dbbd0a7ae86b55681a1a8bd543965b28af037 (diff) | |
download | ffmpeg-e2c97aee393a0f74d9ce91c5389b812ffdb0b4e8.tar.gz |
build: fix standalone compilation of Microsoft XMV demuxer
The demuxer depends on the RIFF codec tags code, so link against it.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index bc89b34270..751e1c95ad 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -311,7 +311,7 @@ OBJS-$(CONFIG_WTV_DEMUXER) += wtv.o asfdec.o asf.o asfcrypt.o \ avlanguage.o mpegts.o isom.o riff.o OBJS-$(CONFIG_WV_DEMUXER) += wv.o apetag.o OBJS-$(CONFIG_XA_DEMUXER) += xa.o -OBJS-$(CONFIG_XMV_DEMUXER) += xmv.o +OBJS-$(CONFIG_XMV_DEMUXER) += xmv.o riff.o OBJS-$(CONFIG_XWMA_DEMUXER) += xwma.o riff.o OBJS-$(CONFIG_YOP_DEMUXER) += yop.o OBJS-$(CONFIG_YUV4MPEGPIPE_MUXER) += yuv4mpeg.o |