diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-08-29 23:55:32 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-08-29 23:55:32 +0000 |
commit | 28db7fce02f94c83cddc611f8811a6e8afd57050 (patch) | |
tree | 311bd4619432ddab25232c4a07a5639e45d79900 /libavcodec/Makefile | |
parent | e647c59840f37b6918f5315cf1f8e5c2ea03ba95 (diff) | |
download | ffmpeg-28db7fce02f94c83cddc611f8811a6e8afd57050.tar.gz |
slow but accurate integer dct from IJG (should be ok with the LGPL as the old DCT is the fast integer DCT from IJG)
per context DCT selection
Originally committed as revision 878 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 2c4c69db60..c46bb10beb 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -11,7 +11,7 @@ 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 \ + mpegvideo.o h263.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 \ |