diff options
Diffstat (limited to 'src/dsp/obmc.cc')
-rw-r--r-- | src/dsp/obmc.cc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/dsp/obmc.cc b/src/dsp/obmc.cc index 6b5c6e3..479cb1d 100644 --- a/src/dsp/obmc.cc +++ b/src/dsp/obmc.cc @@ -116,7 +116,28 @@ void Init10bpp() { #endif #endif // LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS } +#endif // LIBGAV1_MAX_BITDEPTH >= 10 + +#if LIBGAV1_MAX_BITDEPTH == 12 +void Init12bpp() { + Dsp* const dsp = dsp_internal::GetWritableDspTable(12); + assert(dsp != nullptr); +#if LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS + dsp->obmc_blend[kObmcDirectionVertical] = OverlapBlendVertical_C<uint16_t>; + dsp->obmc_blend[kObmcDirectionHorizontal] = + OverlapBlendHorizontal_C<uint16_t>; +#else // !LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS + static_cast<void>(dsp); +#ifndef LIBGAV1_Dsp12bpp_ObmcVertical + dsp->obmc_blend[kObmcDirectionVertical] = OverlapBlendVertical_C<uint16_t>; +#endif +#ifndef LIBGAV1_Dsp12bpp_ObmcHorizontal + dsp->obmc_blend[kObmcDirectionHorizontal] = + OverlapBlendHorizontal_C<uint16_t>; #endif +#endif // LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS +} +#endif // LIBGAV1_MAX_BITDEPTH == 12 } // namespace @@ -125,6 +146,9 @@ void ObmcInit_C() { #if LIBGAV1_MAX_BITDEPTH >= 10 Init10bpp(); #endif +#if LIBGAV1_MAX_BITDEPTH == 12 + Init12bpp(); +#endif } } // namespace dsp |