On Fri, Jul 13, 2012 at 11:00:55PM +0100, Måns Rullgård wrote: > Diego Biurrun <[email protected]> writes: > > --- a/libavcodec/Makefile > > +++ b/libavcodec/Makefile > > @@ -745,13 +745,13 @@ SKIPHEADERS-$(HAVE_W32THREADS) += > > w32pthreads.h > > > > TESTPROGS = cabac \ > > - dct \ > > fft \ > > fft-fixed \ > > golomb \ > > iirfilter \ > > rangecoder \ > > > > +TESTPROGS-$(CONFIG_AANDCT) += dct > > TESTPROGS-$(HAVE_MMX) += motion > > TESTOBJS = dctref.o > > No way. How did you arrive at this? dct-test tests a lot more than that.
dct-test uses ff_aanscales unconditionally, but ff_aanscales is defined in aandcttab.c, which is compiled conditionally under CONFIG_AANDCT. So in order to link dct-test must be compiled under the same condition. Diego _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
