aboutsummaryrefslogtreecommitdiff
path: root/src/dsp/intrapred_cfl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/dsp/intrapred_cfl.cc')
-rw-r--r--src/dsp/intrapred_cfl.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/dsp/intrapred_cfl.cc b/src/dsp/intrapred_cfl.cc
index 948c0c0..0f7f4f2 100644
--- a/src/dsp/intrapred_cfl.cc
+++ b/src/dsp/intrapred_cfl.cc
@@ -41,7 +41,7 @@ constexpr TransformSize kTransformSizesLargerThan32x32[] = {
// |alpha| can be -16 to 16 (inclusive).
template <int block_width, int block_height, int bitdepth, typename Pixel>
void CflIntraPredictor_C(
- void* const dest, ptrdiff_t stride,
+ void* LIBGAV1_RESTRICT const dest, ptrdiff_t stride,
const int16_t luma[kCflLumaBufferStride][kCflLumaBufferStride],
const int alpha) {
auto* dst = static_cast<Pixel*>(dest);
@@ -66,7 +66,8 @@ template <int block_width, int block_height, int bitdepth, typename Pixel,
int subsampling_x, int subsampling_y>
void CflSubsampler_C(int16_t luma[kCflLumaBufferStride][kCflLumaBufferStride],
const int max_luma_width, const int max_luma_height,
- const void* const source, ptrdiff_t stride) {
+ const void* LIBGAV1_RESTRICT const source,
+ ptrdiff_t stride) {
assert(max_luma_width >= 4);
assert(max_luma_height >= 4);
const auto* src = static_cast<const Pixel*>(source);