diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-05-04 02:51:18 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-05-04 02:51:18 +0000 |
commit | 29adde838c244b59ea03f81cb8625deac5bf3cd6 (patch) | |
tree | c6271057fbe45f2341b746ea9c9f45773cab4dc0 /libavcodec/Makefile | |
parent | ce5b6f63c52ba399d80436937c64dea8c241b753 (diff) | |
download | ffmpeg-29adde838c244b59ea03f81cb8625deac5bf3cd6.tar.gz |
arbitrary precision integer support
+ - * / % << >> log2 compare are supported
and dont fear, no bloated lib, just 130 lines of c code
Originally committed as revision 3105 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 3b8f14b338..64b3b132ed 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -20,7 +20,7 @@ OBJS= common.o utils.o mem.o allcodecs.o \ roqvideo.o dpcm.o interplayvideo.o xan.o rpza.o cinepak.o msrle.o \ msvideo1.o vqavideo.o idcinvideo.o adx.o rational.o faandct.o 8bps.o \ smc.o parser.o flicvideo.o truemotion1.o vmdav.o lcl.o qtrle.o g726.o \ - flac.o vp3dsp.o + flac.o vp3dsp.o integer.o ifeq ($(AMR_NB),yes) ifeq ($(AMR_NB_FIXED),yes) |