Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Gramner <gramner@twoorioles.com>2021-05-04 15:09:14 +0300
committerHenrik Gramner <henrik@gramner.com>2021-05-05 01:25:55 +0300
commit1ac1abc8eb4f7c04d7d8a1a1641161e6530b18e4 (patch)
tree1cbaf4a7c3a08d0bb72013dec9800224072b7ef9 /src/itx_tmpl.c
parent24b1a4adb38e8cfe28f6df2316373cab26dae8fb (diff)
x86: Add high bitdepth (10-bit) itx AVX2 asm
Diffstat (limited to 'src/itx_tmpl.c')
-rw-r--r--src/itx_tmpl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/itx_tmpl.c b/src/itx_tmpl.c
index a0e807f..2f97a9c 100644
--- a/src/itx_tmpl.c
+++ b/src/itx_tmpl.c
@@ -250,7 +250,7 @@ COLD void bitfn(dav1d_itx_dsp_init)(Dav1dInvTxfmDSPContext *const c, int bpc) {
bitfn(dav1d_itx_dsp_init_arm)(c, bpc);
#endif
#if ARCH_X86
- bitfn(dav1d_itx_dsp_init_x86)(c);
+ bitfn(dav1d_itx_dsp_init_x86)(c, bpc);
#endif
#endif
}