From d4dbf19f6b0181ee78034bfe4caf189d1c016998 Mon Sep 17 00:00:00 2001 From: Boyuan Yang Date: Thu, 14 Jul 2022 15:56:57 -0400 Subject: New upstream version 0.18.0 --- src/dsp/dsp.cc | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/dsp/dsp.cc') diff --git a/src/dsp/dsp.cc b/src/dsp/dsp.cc index aac0ca0..97a064f 100644 --- a/src/dsp/dsp.cc +++ b/src/dsp/dsp.cc @@ -77,6 +77,12 @@ dsp::Dsp* GetWritableDspTable(int bitdepth) { static dsp::Dsp dsp_10bpp; return &dsp_10bpp; } +#endif +#if LIBGAV1_MAX_BITDEPTH == 12 + case 12: { + static dsp::Dsp dsp_12bpp; + return &dsp_12bpp; + } #endif } return nullptr; @@ -157,6 +163,7 @@ void DspInit() { #if LIBGAV1_MAX_BITDEPTH >= 10 ConvolveInit10bpp_NEON(); InverseTransformInit10bpp_NEON(); + LoopFilterInit10bpp_NEON(); LoopRestorationInit10bpp_NEON(); #endif // LIBGAV1_MAX_BITDEPTH >= 10 #endif // LIBGAV1_ENABLE_NEON -- cgit v1.2.3