]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/tests/dct.c
avdevice: Constify all devices
[ffmpeg] / libavcodec / tests / dct.c
index e8fa4a3cc1a40faee77bef244a07dbd495f7d75f..eab39e9468b8c37f7171dbe57064e8512f530c05 100644 (file)
@@ -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;
     }