From d2db0f3bbdc81aae2c316751daf1d53b42a3e6a0 Mon Sep 17 00:00:00 2001 From: Miguel Freitas Date: Mon, 16 Sep 2002 21:49:34 +0000 Subject: - sync ffmpeg to cvs (sorry Mike it still doesn't decode your teststream -- something must be broken at ffmpeg, also happens with mplayer) - added priority sorted lists, now autoprobing should work again. - fixed infinite loop in plugin loader. obs: latest ffmpeg contains ppc optimizations, someone will have to enable these though. CVS patchset: 2676 CVS date: 2002/09/16 21:49:34 --- src/libffmpeg/libavcodec/ppc/Makefile.am | 46 ++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 src/libffmpeg/libavcodec/ppc/Makefile.am (limited to 'src/libffmpeg/libavcodec/ppc/Makefile.am') diff --git a/src/libffmpeg/libavcodec/ppc/Makefile.am b/src/libffmpeg/libavcodec/ppc/Makefile.am new file mode 100644 index 000000000..34d885c6d --- /dev/null +++ b/src/libffmpeg/libavcodec/ppc/Makefile.am @@ -0,0 +1,46 @@ +## +## Process this file with automake to produce Makefile.in +## + +#CFLAGS = @CFLAGS@ @LIBFFMPEG_CFLAGS@ + +# we must not use CFLAGS here, gcc optimizations produce +# bad code if we do so. +CFLAGS = -O2 $(LIBFFMPEG_CFLAGS) + +ASFLAGS = + +LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic + +noinst_LTLIBRARIES = libavcodec_ppc.la + +libavcodec_ppc_src = dsputil_altivec.c dsputil_ppc.c +libavcodec_ppc_dummy = libavcodec_ppc_dummy.c + +EXTRA_DIST = $(libavcodec_ppc_src) $(libavcodec_ppc_dummy) + +if ARCH_POWERPC +ppc_modules = $(libavcodec_ppc_src) +endif + + +libavcodec_ppc_la_SOURCES = $(ppc_modules) $(libavcodec_ppc_dummy) + +noinst_HEADERS = dsputil_altivec.h + +.s.lo: + $(ASCOMPILE) -o $@ `test -f $< || echo '$(srcdir)/'`$< + +debug: + @$(MAKE) CFLAGS="$(DEBUG_CFLAGS) $(LIBFFMPEG_CFLAGS)" + +install-debug: debug + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +mostlyclean-generic: + -rm -f *~ \#* .*~ .\#* + +maintainer-clean-generic: + -@echo "This command is intended for maintainers to use;" + -@echo "it deletes files that may require special tools to rebuild." + -rm -f Makefile.in -- cgit v1.2.3