Module: libav Branch: master Commit: 4e8d6218c3cb8b9feffb70f8a53859540b975b36
Author: Diego Biurrun <[email protected]> Committer: Diego Biurrun <[email protected]> Date: Thu Dec 22 21:10:38 2011 +0100 build: fix standalone compilation of OMA muxer The muxer depends on the id3v2 writing code, so link against it. --- libavformat/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavformat/Makefile b/libavformat/Makefile index 751e1c9..ee623d7 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -180,7 +180,7 @@ OBJS-$(CONFIG_OGG_DEMUXER) += oggdec.o \ OBJS-$(CONFIG_OGG_MUXER) += oggenc.o \ vorbiscomment.o OBJS-$(CONFIG_OMA_DEMUXER) += omadec.o pcm.o oma.o -OBJS-$(CONFIG_OMA_MUXER) += omaenc.o rawenc.o oma.o +OBJS-$(CONFIG_OMA_MUXER) += omaenc.o rawenc.o oma.o id3v2enc.o OBJS-$(CONFIG_PCM_ALAW_DEMUXER) += pcmdec.o pcm.o rawdec.o OBJS-$(CONFIG_PCM_ALAW_MUXER) += pcmenc.o rawenc.o OBJS-$(CONFIG_PCM_F32BE_DEMUXER) += pcmdec.o pcm.o rawdec.o _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
