diff options
author | Roberto Togni <r_togni@tiscali.it> | 2005-11-05 00:00:24 +0000 |
---|---|---|
committer | Roberto Togni <r_togni@tiscali.it> | 2005-11-05 00:00:24 +0000 |
commit | c555392a5bb2fee136df52508a217f4e40b18228 (patch) | |
tree | d9cd0cc167076386ced0b3a0a2681e05fa42e6b4 | |
parent | 31e11451f74f29b9a962723b60ddba6590d0e87c (diff) | |
download | ffmpeg-c555392a5bb2fee136df52508a217f4e40b18228.tar.gz |
Place qdm2 and truemotion2 in ifdef block so that they can be disabled
Originally committed as revision 4676 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 911e7155d6..988d15ac4e 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -18,7 +18,7 @@ OBJS= bitstream.o utils.o mem.o allcodecs.o \ fft.o mdct.o raw.o golomb.o cabac.o\ dpcm.o adx.o faandct.o parser.o g726.o \ vp3dsp.o h264idct.o rangecoder.o pnm.o h263.o msmpeg4.o h263dec.o dvdsub.o dvbsub.o dvbsubdec.o\ - opt.o qdm2.o truemotion2.o + opt.o ifeq ($(CONFIG_AASC_DECODER),yes) OBJS+= aasc.o @@ -98,6 +98,9 @@ endif ifneq ($(CONFIG_PNG_DECODER)$(CONFIG_PNG_ENCODER),) OBJS+= png.o endif +ifeq ($(CONFIG_QDM2_DECODER),yes) + OBJS+= qdm2.o +endif ifeq ($(CONFIG_QDRAW_DECODER),yes) OBJS+= qdrw.o endif @@ -140,6 +143,9 @@ endif ifeq ($(CONFIG_TRUEMOTION1_DECODER),yes) OBJS+= truemotion1.o endif +ifeq ($(CONFIG_TRUEMOTION2_DECODER),yes) + OBJS+= truemotion2.o +endif ifeq ($(CONFIG_TSCC_DECODER),yes) OBJS+= tscc.o endif |