]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/Makefile
4xm codec
[ffmpeg] / libavcodec / Makefile
index 35bd46e27984ade0bcd54b335a79d4353b8c8174..39566b3d817949642e36f037f27fcb820c7db02c 100644 (file)
@@ -11,14 +11,25 @@ CFLAGS= $(OPTFLAGS) -Wall -g -DHAVE_AV_CONFIG_H -I.. -D_FILE_OFFSET_BITS=64 -D_L
 LDFLAGS= -g
 
 OBJS= common.o utils.o mem.o allcodecs.o \
-      mpegvideo.o h263.o jrevdct.o jfdctfst.o jfdctint.o\
+      mpegvideo.o jrevdct.o jfdctfst.o jfdctint.o\
       mpegaudio.o ac3enc.o mjpeg.o resample.o dsputil.o \
-      motion_est.o imgconvert.o imgresample.o msmpeg4.o \
-      mpeg12.o h263dec.o svq1.o rv10.o mpegaudiodec.o pcm.o simple_idct.o \
+      motion_est.o imgconvert.o imgresample.o \
+      mpeg12.o mpegaudiodec.o pcm.o simple_idct.o \
       ratecontrol.o adpcm.o eval.o dv.o error_resilience.o \
-      wmadec.o fft.o mdct.o mace.o huffyuv.o
+      fft.o mdct.o mace.o huffyuv.o cyuv.o opts.o raw.o h264.o golomb.o \
+      vp3.o asv1.o 4xm.o cabac.o
+
+ifeq ($(AMR_NB),yes)
+OBJS+= amr.o
+endif
+
 ASM_OBJS=
 
+# codecs which are patented in some non free countries like the us
+ifeq ($(CONFIG_RISKY),yes)
+OBJS+= h263.o msmpeg4.o h263dec.o svq1.o rv10.o wmadec.o indeo3.o
+endif
+
 # currently using liba52 for ac3 decoding
 ifeq ($(CONFIG_AC3),yes)
 OBJS+= a52dec.o
@@ -26,7 +37,25 @@ OBJS+= a52dec.o
 # using builtin liba52 or runtime linked liba52.so.0
 ifneq ($(CONFIG_A52BIN),yes)
 OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \
-       liba52/imdct.o  liba52/parse.o
+       liba52/imdct.o  liba52/parse.o liba52/crc.o liba52/resample.o
+endif
+endif
+
+ifeq ($(CONFIG_FAAD),yes)
+OBJS+= faad.o
+ifeq ($(CONFIG_FAADBIN),yes)
+# no libs needed
+else
+EXTRALIBS += -lfaad
+endif
+endif
+
+ifeq ($(CONFIG_PP),yes)
+ifeq ($(SHARED_PP),yes)
+EXTRALIBS += -lpostproc
+else
+# LIBS += libpostproc/libpostproc.a ... should be fixed
+OBJS += libpostproc/postprocess.o
 endif
 endif
 
@@ -51,6 +80,9 @@ OBJS += i386/fdct_mmx.o i386/cputest.o \
        i386/dsputil_mmx.o i386/mpegvideo_mmx.o \
        i386/idct_mmx.o i386/motion_est_mmx.o \
        i386/simple_idct_mmx.o i386/fft_sse.o
+ifdef TARGET_BUILTIN_VECTOR
+i386/fft_sse.o: CFLAGS+= -msse
+endif
 endif
 
 # armv4l specific stuff
@@ -83,17 +115,26 @@ OBJS += ps2/dsputil_mmi.o ps2/idct_mmi.o ps2/mpegvideo_mmi.o
 endif
 
 ifeq ($(TARGET_ALTIVEC),yes)
+ifeq ($(TARGET_OS),Darwin)
 CFLAGS += -faltivec
+else
+CFLAGS += -maltivec -mabi=altivec
+endif
 OBJS += ppc/dsputil_altivec.o ppc/mpegvideo_altivec.o ppc/idct_altivec.o \
-        ppc/fft_altivec.o
+        ppc/fft_altivec.o ppc/gmc_altivec.o
+endif
+
+ifeq ($(TARGET_ARCH_SH4),yes)
+OBJS+= sh4/idct_sh4.o sh4/dsputil_sh4.o sh4/dsputil_align.o
 endif
 
+
 SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S)
 OBJS := $(OBJS) $(ASM_OBJS)
 
-LIB= libavcodec.a
+LIB= $(LIBPREF)avcodec$(LIBSUF)
 ifeq ($(BUILD_SHARED),yes)
-SLIB= libavcodec.so
+SLIB= $(SLIBPREF)avcodec$(SLIBSUF)
 endif
 TESTS= imgresample-test dct-test motion-test fft-test
 
@@ -111,6 +152,9 @@ $(SLIB): $(OBJS)
 
 dsputil.o: dsputil.c dsputil.h
 
+libpostproc/libpostproc.a:
+       $(MAKE) -C libpostproc
+
 %.o: %.c
        $(CC) $(CFLAGS) -c -o $@ $< 
 
@@ -128,21 +172,22 @@ alpha/motion_est_alpha.o: alpha/motion_est_alpha.c
        $(CC) $(CFLAGS) -mcpu=$$newcpu -c -o $@ $<
 endif
 
-# depend only used by mplayer now
-dep:   depend
+depend: $(SRCS)
+       $(CC) -MM $(CFLAGS) $^ 1>.depend
 
-depend:
-       $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
+dep:   depend
 
 clean: 
-       rm -f *.o *~ .depend $(LIB) $(SLIB) *.so i386/*.o i386/*~ \
+       rm -f *.o *.d *~ .depend $(LIB) $(SLIB) *.so i386/*.o i386/*~ \
           armv4l/*.o armv4l/*~ \
           mlib/*.o mlib/*~ \
           alpha/*.o alpha/*~ \
           ppc/*.o ppc/*~ \
           ps2/*.o ps2/*~ \
+          sh4/*.o sh4/*~ \
           liba52/*.o liba52/*~ \
           apiexample $(TESTS)
+       $(MAKE) -C libpostproc clean
 
 distclean: clean
        rm -f Makefile.bak .depend
@@ -160,8 +205,7 @@ cpuid_test: i386/cputest.c
 imgresample-test: imgresample.c
        $(CC) $(CFLAGS) -DTEST -o $@ $^ -lm
 
-dct-test: dct-test.o jfdctfst.o jfdctint.o i386/fdct_mmx.o\
-          fdctref.o jrevdct.o i386/idct_mmx.o simple_idct.o i386/simple_idct_mmx.o
+dct-test: dct-test.o fdctref.o $(LIB)
        $(CC) -o $@ $^ -lm
 
 motion-test: motion_test.o $(LIB)