diff options
author | Clément Bœsch <u@pkh.me> | 2017-03-25 12:10:13 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-03-27 21:38:21 +0200 |
commit | 1c9f4b507888ac94c7d9f7a6ac9edfe6880fa821 (patch) | |
tree | 915625969a0bb69ef30124675632f97456039f03 /tests/checkasm | |
parent | 487ca38e8bc416239f49b9b7768814fa7be82b5f (diff) | |
download | ffmpeg-1c9f4b507888ac94c7d9f7a6ac9edfe6880fa821.tar.gz |
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.c | 4 |
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++) { |