diff options
author | Diego Biurrun | 2007-05-22 07:08:38 +0000 |
---|---|---|
committer | Diego Biurrun | 2007-05-22 07:08:38 +0000 |
commit | f353fbd205d0b90fb66e8c4bbb80b40b2807a3d2 (patch) | |
tree | 86f4d6962eb420a7427460cb659536ffde9581ee /libavcodec | |
parent | 3e2e29fb00466189f49e3dd8f4a657289401351c (diff) |
Remove mdct.o and fft.o from fft-test prerequisites list.
Both objects were added to the link command, resulting in multiple definitions
of symbols. Now linking works in the general case when mdct.o and fft.o are
compiled into libavcodec.a.
Originally committed as revision 9097 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index c66eb0d500..c2f024934f 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -447,6 +447,6 @@ dct-test: dct-test.o fdctref.o $(LIB) motion-test: motion-test.o $(LIB) -fft-test: fft-test.o mdct.o fft.o $(LIB) +fft-test: fft-test.o $(LIB) .PHONY: tests |