diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-10-19 23:22:23 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-10-19 23:22:23 +0000 |
commit | 0cd0a2248844b329c8e066f7609359ba56a9e1c6 (patch) | |
tree | 6a547b323de75729f8dc5667ea4d62a046525fb6 /libavformat/Makefile | |
parent | 2ab9be3abe2609b0db6b04b68e6c2a2f276c162e (diff) | |
download | ffmpeg-0cd0a2248844b329c8e066f7609359ba56a9e1c6.tar.gz |
Move function that is only used by the MP3 muxer below the corresponding #if.
This removes the dependency of the MP2 muxer on the id3v2 object file.
Originally committed as revision 20329 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 1aec3212db..284d7d693e 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -106,7 +106,7 @@ OBJS-$(CONFIG_MMF_DEMUXER) += mmf.o raw.o OBJS-$(CONFIG_MMF_MUXER) += mmf.o riff.o OBJS-$(CONFIG_MOV_DEMUXER) += mov.o riff.o isom.o OBJS-$(CONFIG_MOV_MUXER) += movenc.o riff.o isom.o avc.o -OBJS-$(CONFIG_MP2_MUXER) += mp3.o id3v1.o id3v2.o +OBJS-$(CONFIG_MP2_MUXER) += mp3.o id3v1.o OBJS-$(CONFIG_MP3_DEMUXER) += mp3.o id3v1.o id3v2.o OBJS-$(CONFIG_MP3_MUXER) += mp3.o id3v1.o id3v2.o OBJS-$(CONFIG_MPC_DEMUXER) += mpc.o id3v1.o id3v2.o apetag.o |