summaryrefslogtreecommitdiff
path: root/tests/checkasm
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2017-03-25 12:10:13 +0100
committerClément Bœsch <u@pkh.me>2017-03-27 21:38:21 +0200
commit1c9f4b507888ac94c7d9f7a6ac9edfe6880fa821 (patch)
tree915625969a0bb69ef30124675632f97456039f03 /tests/checkasm
parent487ca38e8bc416239f49b9b7768814fa7be82b5f (diff)
lavc/vp9: split into vp9{block,data,mvs}
This is following Libav layout to ease merges.
Diffstat (limited to 'tests/checkasm')
-rw-r--r--tests/checkasm/vp9dsp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/checkasm/vp9dsp.c b/tests/checkasm/vp9dsp.c
index 481730966b..a91577b94e 100644
--- a/tests/checkasm/vp9dsp.c
+++ b/tests/checkasm/vp9dsp.c
@@ -22,7 +22,7 @@
#include <string.h>
#include "checkasm.h"
#include "libavcodec/vp9data.h"
-#include "libavcodec/vp9dsp.h"
+#include "libavcodec/vp9.h"
#include "libavutil/common.h"
#include "libavutil/internal.h"
#include "libavutil/intreadwrite.h"
@@ -259,7 +259,7 @@ static int copy_subcoefs(int16_t *out, const int16_t *in, enum TxfmMode tx,
// test
int n;
- const int16_t *scan = vp9_scans[tx][txtp];
+ const int16_t *scan = ff_vp9_scans[tx][txtp];
int eob;
for (n = 0; n < sz * sz; n++) {