diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2001-07-30 23:21:37 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2001-07-30 23:21:37 +0000 |
commit | 2b0c1a441ba16d8d06054b774763d2b1934cfb04 (patch) | |
tree | a7140a064ffef3baa180d517316e87fea31e7a5b | |
parent | 5727b222ce256246bdaa5da39fc4d92b6057e6f3 (diff) | |
download | ffmpeg-2b0c1a441ba16d8d06054b774763d2b1934cfb04.tar.gz |
added mpegvideo_mmx.c - added HAVE_AV_CONFIG_H
Originally committed as revision 18 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 3765bc841a..914dd4af41 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -1,6 +1,6 @@ include ../config.mak -CFLAGS= $(OPTFLAGS) -Wall -g -DHAVE_CONFIG_H +CFLAGS= $(OPTFLAGS) -Wall -g -DHAVE_AV_CONFIG_H LDFLAGS= -g OBJS= common.o utils.o mpegvideo.o h263.o jrevdct.o jfdctfst.o \ @@ -27,7 +27,7 @@ endif ifeq ($(TARGET_MMX),yes) ASM_OBJS += i386/fdct_mmx.o i386/sad_mmx.o OBJS += i386/fdctdata.o i386/cputest.o \ - i386/dsputil_mmx.o + i386/dsputil_mmx.o i386/mpegvideo_mmx.o endif SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.s) |