diff options
Diffstat (limited to 'src/dsp/intrapred_smooth.h')
-rw-r--r-- | src/dsp/intrapred_smooth.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/dsp/intrapred_smooth.h b/src/dsp/intrapred_smooth.h index 6802003..06454af 100644 --- a/src/dsp/intrapred_smooth.h +++ b/src/dsp/intrapred_smooth.h @@ -38,6 +38,12 @@ namespace libgav1 { namespace dsp { +enum { + // Weights are quadratic from '1' to '1 / block_size', scaled by + // 2^kSmoothWeightScale. + kSmoothWeightScale = 8, +}; + // Initializes Dsp::intra_predictors[][kIntraPredictorSmooth.*]. // This function is not thread-safe. void IntraPredSmoothInit_C(); |