diff options
author | Stephen Torri <storri@users.sourceforge.net> | 2002-09-19 06:01:18 +0000 |
---|---|---|
committer | Stephen Torri <storri@users.sourceforge.net> | 2002-09-19 06:01:18 +0000 |
commit | 7fb9dc915cded39e8ad4bed49a14b0d6769ba5bd (patch) | |
tree | a9fbf5d060b561dd9dccf6b96cc802111441b3ff /src/libffmpeg/libavcodec/i386 | |
parent | f28b2a11a87ff7e1306087401c370cc720f0afa3 (diff) | |
download | xine-lib-7fb9dc915cded39e8ad4bed49a14b0d6769ba5bd.tar.gz xine-lib-7fb9dc915cded39e8ad4bed49a14b0d6769ba5bd.tar.bz2 |
Updated cvscompile.sh to look for configure.ac
Replaced configure.in with configure.ac
Remove acconfig.h (Unnecessary with autoconf 2.52 or above)
Updated configure.ac to remove deprecated macros, upgraded
AC_DEFINE to include comments, merged in acconfig.h.
Combined libxine and libxineutils into one library. libxineutils
is created but not installed. Its statically linked into libxine.
Advanced libxine version from 0.2.0 to 1.0.0
Removed references for skins.
Plugins now installed to <libdir>/xine/plugins/$XINE_MAJOR.$XINE_MORE.
$XINE_SUB
Xine-config updated for new location of plugins
Sorted file lists in Makefile.am to make them more readable.
TODO: remove skins references from xine-config
CVS patchset: 2705
CVS date: 2002/09/19 06:01:18
Diffstat (limited to 'src/libffmpeg/libavcodec/i386')
-rw-r--r-- | src/libffmpeg/libavcodec/i386/Makefile.am | 19 | ||||
-rw-r--r-- | src/libffmpeg/libavcodec/i386/fdct_mmx.c | 2 |
2 files changed, 14 insertions, 7 deletions
diff --git a/src/libffmpeg/libavcodec/i386/Makefile.am b/src/libffmpeg/libavcodec/i386/Makefile.am index f960f8417..1d36c1da8 100644 --- a/src/libffmpeg/libavcodec/i386/Makefile.am +++ b/src/libffmpeg/libavcodec/i386/Makefile.am @@ -6,7 +6,7 @@ # we must not use CFLAGS here, gcc optimizations produce # bad code if we do so. -CFLAGS = -O2 $(LIBFFMPEG_CFLAGS) +AM_CFLAGS = -O2 $(LIBFFMPEG_CFLAGS) ASFLAGS = @@ -14,13 +14,20 @@ LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic noinst_LTLIBRARIES = libavcodec_mmx.la -libavcodec_mmx_src = fdct_mmx.c \ - dsputil_mmx.c mpegvideo_mmx.c \ - idct_mmx.c motion_est_mmx.c \ - simple_idct_mmx.c +libavcodec_mmx_src = \ + dsputil_mmx.c \ + fdct_mmx.c \ + idct_mmx.c \ + motion_est_mmx.c \ + mpegvideo_mmx.c \ + simple_idct_mmx.c + libavcodec_mmx_dummy = libavcodec_mmx_dummy.c -EXTRA_DIST = $(libavcodec_mmx_src) $(libavcodec_mmx_dummy) mpegvideo_mmx_template.c +EXTRA_DIST = \ + $(libavcodec_mmx_dummy) \ + $(libavcodec_mmx_src) \ + mpegvideo_mmx_template.c if HAVE_FFMMX mmx_modules = $(libavcodec_mmx_src) diff --git a/src/libffmpeg/libavcodec/i386/fdct_mmx.c b/src/libffmpeg/libavcodec/i386/fdct_mmx.c index 73b63ac63..abc5abeaa 100644 --- a/src/libffmpeg/libavcodec/i386/fdct_mmx.c +++ b/src/libffmpeg/libavcodec/i386/fdct_mmx.c @@ -10,7 +10,7 @@ #include "../common.h" #include "mmx.h" -#define ATTR_ALIGN(align) __attribute__ ((__aligned__ (align))) +//#define ATTR_ALIGN(align) __attribute__ ((__aligned__ (align))) ////////////////////////////////////////////////////////////////////// // |