diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-07-07 09:33:08 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-07-07 09:33:08 +0000 |
commit | 36b38500b618cdff8c3b9aadaf2439b093ceb723 (patch) | |
tree | eb62d7c1e9d3a427fdeb0ac77896ac0c29ae7d1f /libavcodec/Makefile | |
parent | fc1206a4d95e24f8700eeb978a41419b7de64644 (diff) | |
download | ffmpeg-36b38500b618cdff8c3b9aadaf2439b093ceb723.tar.gz |
Check for CONFIG_LIBFOO_DECODER/CONFIG_LIBFOO_ENCODER instead of just
CONFIG_LIBFOO in the external libraries section.
This is more consistent with the rest of the Makefiles, it makes clearer what
is actually implemented and should be advantageous if we implement an external
library encoder where we previously just had the decoder and vice versa.
Originally committed as revision 19366 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 3c6467b328..3c9bec0853 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -384,20 +384,24 @@ OBJS-$(CONFIG_RTP_MUXER) += mpegvideo.o # external codec libraries OBJS-$(CONFIG_LIBDIRAC_DECODER) += libdiracdec.o OBJS-$(CONFIG_LIBDIRAC_ENCODER) += libdiracenc.o libdirac_libschro.o -OBJS-$(CONFIG_LIBFAAC) += libfaac.o -OBJS-$(CONFIG_LIBFAAD) += libfaad.o -OBJS-$(CONFIG_LIBGSM) += libgsm.o -OBJS-$(CONFIG_LIBMP3LAME) += libmp3lame.o -OBJS-$(CONFIG_LIBOPENCORE_AMRNB) += libopencore-amr.o -OBJS-$(CONFIG_LIBOPENCORE_AMRWB) += libopencore-amr.o -OBJS-$(CONFIG_LIBOPENJPEG) += libopenjpeg.o +OBJS-$(CONFIG_LIBFAAC_ENCODER) += libfaac.o +OBJS-$(CONFIG_LIBFAAD_DECODER) += libfaad.o +OBJS-$(CONFIG_LIBGSM_DECODER) += libgsm.o +OBJS-$(CONFIG_LIBGSM_ENCODER) += libgsm.o +OBJS-$(CONFIG_LIBGSM_MS_DECODER) += libgsm.o +OBJS-$(CONFIG_LIBGSM_MS_ENCODER) += libgsm.o +OBJS-$(CONFIG_LIBMP3LAME_ENCODER) += libmp3lame.o +OBJS-$(CONFIG_LIBOPENCORE_AMRNB_DECODER) += libopencore-amr.o +OBJS-$(CONFIG_LIBOPENCORE_AMRNB_ENCODER) += libopencore-amr.o +OBJS-$(CONFIG_LIBOPENCORE_AMRWB_ENCODER) += libopencore-amr.o +OBJS-$(CONFIG_LIBOPENJPEG_DECODER) += libopenjpeg.o OBJS-$(CONFIG_LIBSCHROEDINGER_DECODER) += libschroedingerdec.o libschroedinger.o libdirac_libschro.o OBJS-$(CONFIG_LIBSCHROEDINGER_ENCODER) += libschroedingerenc.o libschroedinger.o libdirac_libschro.o -OBJS-$(CONFIG_LIBSPEEX) += libspeexdec.o -OBJS-$(CONFIG_LIBTHEORA) += libtheoraenc.o -OBJS-$(CONFIG_LIBVORBIS) += libvorbis.o -OBJS-$(CONFIG_LIBX264) += libx264.o -OBJS-$(CONFIG_LIBXVID) += libxvidff.o libxvid_rc.o +OBJS-$(CONFIG_LIBSPEEX_DECODER) += libspeexdec.o +OBJS-$(CONFIG_LIBTHEORA_ENCODER) += libtheoraenc.o +OBJS-$(CONFIG_LIBVORBIS_ENCODER) += libvorbis.o +OBJS-$(CONFIG_LIBX264_ENCODER) += libx264.o +OBJS-$(CONFIG_LIBXVID_ENCODER) += libxvidff.o libxvid_rc.o # parsers OBJS-$(CONFIG_AAC_PARSER) += aac_parser.o aac_ac3_parser.o mpeg4audio.o |