diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-06-28 13:53:29 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-06-29 20:24:10 +0200 |
commit | e72d6fa08a3c1876109149401753a8d2c736d418 (patch) | |
tree | 0678e715a3e44c44ed171103f1d4e48b1bac38aa /libavformat/Makefile | |
parent | 67cb2c0f73ec08bdcecd675c1ffe25c3a5b26ef2 (diff) | |
download | ffmpeg-e72d6fa08a3c1876109149401753a8d2c736d418.tar.gz |
build: Move MP2 muxer declaration away from MP3 muxer code
The MP2 muxer uses none of the code of the MP3 muxer.
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 48b66cf464..d06d5d6d82 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -196,7 +196,7 @@ OBJS-$(CONFIG_MMF_MUXER) += mmf.o OBJS-$(CONFIG_MOV_DEMUXER) += mov.o mov_chan.o replaygain.o OBJS-$(CONFIG_MOV_MUXER) += movenc.o avc.o hevc.o \ movenchint.o mov_chan.o -OBJS-$(CONFIG_MP2_MUXER) += mp3enc.o rawenc.o id3v2enc.o +OBJS-$(CONFIG_MP2_MUXER) += rawenc.o OBJS-$(CONFIG_MP3_DEMUXER) += mp3dec.o replaygain.o OBJS-$(CONFIG_MP3_MUXER) += mp3enc.o rawenc.o id3v2enc.o OBJS-$(CONFIG_MPC_DEMUXER) += mpc.o apetag.o img2.o |