mirror of https://git.ffmpeg.org/ffmpeg.git
build: Conditionally build and run DCT test program
This commit is contained in:
parent
bd499d9af6
commit
16b7328058
|
@ -711,12 +711,12 @@ SKIPHEADERS-$(CONFIG_VAAPI) += vaapi_internal.h
|
|||
SKIPHEADERS-$(CONFIG_VDA) += vda.h vda_internal.h
|
||||
SKIPHEADERS-$(CONFIG_VDPAU) += vdpau.h vdpau_internal.h
|
||||
|
||||
TESTPROGS = dct \
|
||||
fft \
|
||||
TESTPROGS = fft \
|
||||
fft-fixed \
|
||||
golomb \
|
||||
rangecoder \
|
||||
|
||||
TESTPROGS-$(CONFIG_IDCTDSP) += dct
|
||||
TESTPROGS-$(CONFIG_IIRFILTER) += iirfilter
|
||||
|
||||
TESTOBJS = dctref.o
|
||||
|
|
|
@ -443,7 +443,9 @@ int main(int argc, char **argv)
|
|||
for (i = 0; idct_tab_arch[i].name; i++)
|
||||
if (!(~cpu_flags & idct_tab_arch[i].cpu_flag))
|
||||
err |= dct_error(&idct_tab_arch[i], test, test_idct, speed);
|
||||
} else {
|
||||
}
|
||||
#if CONFIG_FDCTDSP
|
||||
else {
|
||||
for (i = 0; i < FF_ARRAY_ELEMS(fdct_tab); i++)
|
||||
err |= dct_error(&fdct_tab[i], test, test_idct, speed);
|
||||
|
||||
|
@ -451,6 +453,7 @@ int main(int argc, char **argv)
|
|||
if (!(~cpu_flags & fdct_tab_arch[i].cpu_flag))
|
||||
err |= dct_error(&fdct_tab_arch[i], test, test_idct, speed);
|
||||
}
|
||||
#endif /* CONFIG_FDCTDSP */
|
||||
}
|
||||
|
||||
if (err)
|
||||
|
|
|
@ -3,7 +3,7 @@ fate-golomb: libavcodec/golomb-test$(EXESUF)
|
|||
fate-golomb: CMD = run libavcodec/golomb-test
|
||||
fate-golomb: REF = /dev/null
|
||||
|
||||
FATE_LIBAVCODEC-yes += fate-idct8x8
|
||||
FATE_LIBAVCODEC-$(CONFIG_IDCTDSP) += fate-idct8x8
|
||||
fate-idct8x8: libavcodec/dct-test$(EXESUF)
|
||||
fate-idct8x8: CMD = run libavcodec/dct-test -i
|
||||
fate-idct8x8: CMP = null
|
||||
|
|
Loading…
Reference in New Issue