diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-08-07 14:15:04 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-08-07 14:15:04 +0000 |
commit | 27178f3a86648323c015dd67e97033b40e9d9e07 (patch) | |
tree | 26d6bcdb2461d69fd060371632d9ae7f41b56529 /src/libffmpeg | |
parent | 1fa3b1554333a20d313ecc146748cc5ea92a47d4 (diff) | |
download | xine-lib-27178f3a86648323c015dd67e97033b40e9d9e07.tar.gz xine-lib-27178f3a86648323c015dd67e97033b40e9d9e07.tar.bz2 |
removed big local variables in libmpg123 (freebsd calls this stack-abuse ;))
CVS patchset: 397
CVS date: 2001/08/07 14:15:04
Diffstat (limited to 'src/libffmpeg')
-rw-r--r-- | src/libffmpeg/libavcodec/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libffmpeg/libavcodec/Makefile.am b/src/libffmpeg/libavcodec/Makefile.am index 2f5ddff1e..046974ac8 100644 --- a/src/libffmpeg/libavcodec/Makefile.am +++ b/src/libffmpeg/libavcodec/Makefile.am @@ -9,7 +9,8 @@ LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic noinst_LTLIBRARIES = libavcodec.la if HAVE_FFMMX -mmx_modules = mpegvideo_mmx.c sad_mmx.s dsputil_mmx.c +#mmx_modules = mpegvideo_mmx.c sad_mmx.s dsputil_mmx.c +mmx_modules = mpegvideo_mmx.c sad_mmx.s endif libavcodec_la_SOURCES = dsputil.c fdctref.c jfdctfst.c mpeg12.c \ @@ -24,7 +25,7 @@ noinst_HEADERS = avcodec.h dsputil.h mpegvideo.h dsputil_mmx_avg.h\ mpeg12data.h debug: - $(MAKE) CFLAGS="-Wall -DDEBUG -g -DXINE_COMPILE" + $(MAKE) CFLAGS="-Wall -DDEBUG -O -finline-functions -g -DXINE_COMPILE" install-debug: debug @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am |