Home
last modified time | relevance | path

Searched refs:kLumaWidth (Results 1 – 5 of 5) sorted by relevance

/external/libgav1/libgav1/src/dsp/arm/
Dfilm_grain_neon.cc248 luma_grain += kLumaWidth * y; in ApplyAutoRegressiveFilterToChromaGrains_NEON()
310 luma_grain + luma_x, subsampling_x, subsampling_y, kLumaWidth); in ApplyAutoRegressiveFilterToChromaGrains_NEON()
390 luma_grain + luma_x, subsampling_x, subsampling_y, kLumaWidth); in ApplyAutoRegressiveFilterToChromaGrains_NEON()
414 luma_grain += kLumaWidth << subsampling_y; in ApplyAutoRegressiveFilterToChromaGrains_NEON()
432 static_cast<GrainType*>(luma_grain_buffer) + kLumaWidth * y; in ApplyAutoRegressiveFilterToLumaGrain_NEON()
448 GetSignedSource8(luma_grain + x + delta_row * kLumaWidth - in ApplyAutoRegressiveFilterToLumaGrain_NEON()
451 GetSignedSource8(luma_grain + x + delta_row * kLumaWidth - in ApplyAutoRegressiveFilterToLumaGrain_NEON()
520 } while (x < kLumaWidth - kAutoRegressionBorder - 4); in ApplyAutoRegressiveFilterToLumaGrain_NEON()
529 luma_grain + x + delta_row * kLumaWidth - auto_regression_coeff_lag); in ApplyAutoRegressiveFilterToLumaGrain_NEON()
531 GetSignedSource8(luma_grain + x + delta_row * kLumaWidth - in ApplyAutoRegressiveFilterToLumaGrain_NEON()
[all …]
/external/libgav1/libgav1/src/dsp/
Dfilm_grain.cc122 for (int x = kAutoRegressionBorder; x < kLumaWidth - kAutoRegressionBorder; in ApplyAutoRegressiveFilterToLumaGrain_C()
133 sum += luma_grain[(y + delta_row) * kLumaWidth + (x + delta_column)] * in ApplyAutoRegressiveFilterToLumaGrain_C()
143 sum += luma_grain[y * kLumaWidth + (x + delta_column)] * coeff; in ApplyAutoRegressiveFilterToLumaGrain_C()
147 luma_grain[y * kLumaWidth + x] = Clip3( in ApplyAutoRegressiveFilterToLumaGrain_C()
148 luma_grain[y * kLumaWidth + x] + RightShiftWithRounding(sum, shift), in ApplyAutoRegressiveFilterToLumaGrain_C()
209 luma += luma_grain[(luma_y + i) * kLumaWidth + (luma_x + j)]; in ApplyAutoRegressiveFilterToChromaGrains_C()
240 static_assert(kLumaWidth == kMaxChromaWidth, in ConstructNoiseStripes_C()
305 static_assert(kLumaWidth == kMaxChromaWidth, in ConstructNoiseStripesWithOverlap_C()
Dfilm_grain_common.h53 kLumaWidth = 82, enumerator
/external/libgav1/libgav1/src/
Dfilm_grain.h152 GrainType luma_grain_[kLumaHeight * kLumaWidth];
Dfilm_grain.cc371 for (int x = 0; x < kLumaWidth; ++x) { in GenerateLumaGrain()
375 luma_grain_row += kLumaWidth; in GenerateLumaGrain()