diff options
author | Boyuan Yang <byang@debian.org> | 2022-07-14 15:56:57 -0400 |
---|---|---|
committer | Boyuan Yang <byang@debian.org> | 2022-07-14 15:56:57 -0400 |
commit | d4dbf19f6b0181ee78034bfe4caf189d1c016998 (patch) | |
tree | 47d5d28d2ab770a10e6c48788725c51dffeb84a9 /src/dsp/dsp.cc | |
parent | 320ef65362608ee1148c299d8d5d7618af34e470 (diff) | |
download | libgav1-d4dbf19f6b0181ee78034bfe4caf189d1c016998.tar.gz libgav1-d4dbf19f6b0181ee78034bfe4caf189d1c016998.tar.bz2 libgav1-d4dbf19f6b0181ee78034bfe4caf189d1c016998.zip |
New upstream version 0.18.0
Diffstat (limited to 'src/dsp/dsp.cc')
-rw-r--r-- | src/dsp/dsp.cc | 7 |
1 files changed, 7 insertions, 0 deletions
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 @@ -78,6 +78,12 @@ dsp::Dsp* GetWritableDspTable(int bitdepth) { 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 |