diff options
Diffstat (limited to 'src/dsp/super_res.cc')
-rw-r--r-- | src/dsp/super_res.cc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/dsp/super_res.cc b/src/dsp/super_res.cc index 570ba73..7593729 100644 --- a/src/dsp/super_res.cc +++ b/src/dsp/super_res.cc @@ -95,7 +95,23 @@ void Init10bpp() { #endif #endif // LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS } +#endif // LIBGAV1_MAX_BITDEPTH >= 10 + +#if LIBGAV1_MAX_BITDEPTH == 12 +void Init12bpp() { + Dsp* dsp = dsp_internal::GetWritableDspTable(12); + assert(dsp != nullptr); + dsp->super_res_coefficients = nullptr; +#if LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS + dsp->super_res = SuperRes_C<12, uint16_t>; +#else // !LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS + static_cast<void>(dsp); +#ifndef LIBGAV1_Dsp12bpp_SuperRes + dsp->super_res = SuperRes_C<12, uint16_t>; #endif +#endif // LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS +} +#endif // LIBGAV1_MAX_BITDEPTH == 12 } // namespace @@ -104,6 +120,9 @@ void SuperResInit_C() { #if LIBGAV1_MAX_BITDEPTH >= 10 Init10bpp(); #endif +#if LIBGAV1_MAX_BITDEPTH == 12 + Init12bpp(); +#endif } } // namespace dsp |