diff options
author | James Darnley <james.darnley@gmail.com> | 2010-03-20 13:36:43 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2010-03-20 13:36:43 +0000 |
commit | 66061a1220bc91b216e2a59f6f779c7140a1d198 (patch) | |
tree | ab922f26c63401fbeeaec0adc8c17c513ee701be /libavformat/Makefile | |
parent | 64f6e357fdf955e67017dfd34ed06b1478b403e2 (diff) | |
download | ffmpeg-66061a1220bc91b216e2a59f6f779c7140a1d198.tar.gz |
Add VorbisComment writing to FLAC files.
Patch by James Darnley <james darnley at gmail>.
Originally committed as revision 22605 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 9715908523..d75f7fa7e1 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -69,8 +69,9 @@ OBJS-$(CONFIG_FFM_MUXER) += ffmenc.o OBJS-$(CONFIG_FILMSTRIP_DEMUXER) += filmstripdec.o OBJS-$(CONFIG_FILMSTRIP_MUXER) += filmstripenc.o OBJS-$(CONFIG_FLAC_DEMUXER) += flacdec.o raw.o id3v1.o \ - id3v2.o oggparsevorbis.o -OBJS-$(CONFIG_FLAC_MUXER) += flacenc.o + id3v2.o \ + vorbiscomment.o +OBJS-$(CONFIG_FLAC_MUXER) += flacenc.o vorbiscomment.o OBJS-$(CONFIG_FLIC_DEMUXER) += flic.o OBJS-$(CONFIG_FLV_DEMUXER) += flvdec.o OBJS-$(CONFIG_FLV_MUXER) += flvenc.o avc.o @@ -148,7 +149,8 @@ OBJS-$(CONFIG_OGG_DEMUXER) += oggdec.o \ oggparsespeex.o \ oggparsetheora.o \ oggparsevorbis.o \ - riff.o + riff.o \ + vorbiscomment.o OBJS-$(CONFIG_OGG_MUXER) += oggenc.o OBJS-$(CONFIG_OMA_DEMUXER) += oma.o raw.o OBJS-$(CONFIG_PCM_ALAW_DEMUXER) += raw.o |