diff options
Diffstat (limited to 'src/dsp/average_blend.cc')
-rw-r--r-- | src/dsp/average_blend.cc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/dsp/average_blend.cc b/src/dsp/average_blend.cc index 273b355..1a37aa1 100644 --- a/src/dsp/average_blend.cc +++ b/src/dsp/average_blend.cc @@ -87,6 +87,21 @@ void Init10bpp() { } #endif +#if LIBGAV1_MAX_BITDEPTH == 12 +void Init12bpp() { + Dsp* const dsp = dsp_internal::GetWritableDspTable(12); + assert(dsp != nullptr); +#if LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS + dsp->average_blend = AverageBlend_C<12, uint16_t>; +#else // !LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS + static_cast<void>(dsp); +#ifndef LIBGAV1_Dsp12bpp_AverageBlend + dsp->average_blend = AverageBlend_C<12, uint16_t>; +#endif +#endif // LIBGAV1_ENABLE_ALL_DSP_FUNCTIONS +} +#endif + } // namespace void AverageBlendInit_C() { @@ -94,6 +109,9 @@ void AverageBlendInit_C() { #if LIBGAV1_MAX_BITDEPTH >= 10 Init10bpp(); #endif +#if LIBGAV1_MAX_BITDEPTH == 12 + Init12bpp(); +#endif } } // namespace dsp |