X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Ftests%2Fdct.c;h=eab39e9468b8c37f7171dbe57064e8512f530c05;hb=d92f38c179591a608390ffa9fee59c309142e79d;hp=e8fa4a3cc1a40faee77bef244a07dbd495f7d75f;hpb=7167ac33a8f2c7d063384c267f984f23d2b73854;p=ffmpeg diff --git a/libavcodec/tests/dct.c b/libavcodec/tests/dct.c index e8fa4a3cc1a..eab39e9468b 100644 --- a/libavcodec/tests/dct.c +++ b/libavcodec/tests/dct.c @@ -38,6 +38,7 @@ #include "libavutil/common.h" #include "libavutil/internal.h" #include "libavutil/lfg.h" +#include "libavutil/mem_internal.h" #include "libavutil/time.h" #include "libavcodec/dct.h" @@ -73,7 +74,7 @@ static void ff_prores_idct_wrap(int16_t *dst){ for(i=0; i<64; i++){ qmat[i]=4; } - ff_prores_idct(dst, qmat); + ff_prores_idct_10(dst, qmat); for(i=0; i<64; i++) { dst[i] -= 512; }