diff options
Diffstat (limited to 'src/dsp/warp.cc')
-rw-r--r-- | src/dsp/warp.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/dsp/warp.cc b/src/dsp/warp.cc index fbde65a..dd467ea 100644 --- a/src/dsp/warp.cc +++ b/src/dsp/warp.cc @@ -59,14 +59,14 @@ constexpr int kWarpedDiffPrecisionBits = 10; // compound second pass output range: [ 8129, 57403] template <bool is_compound, int bitdepth, typename Pixel> -void Warp_C(const void* const source, ptrdiff_t source_stride, +void Warp_C(const void* LIBGAV1_RESTRICT const source, ptrdiff_t source_stride, const int source_width, const int source_height, - const int* const warp_params, const int subsampling_x, - const int subsampling_y, const int block_start_x, - const int block_start_y, const int block_width, - const int block_height, const int16_t alpha, const int16_t beta, - const int16_t gamma, const int16_t delta, void* dest, - ptrdiff_t dest_stride) { + const int* LIBGAV1_RESTRICT const warp_params, + const int subsampling_x, const int subsampling_y, + const int block_start_x, const int block_start_y, + const int block_width, const int block_height, const int16_t alpha, + const int16_t beta, const int16_t gamma, const int16_t delta, + void* LIBGAV1_RESTRICT dest, ptrdiff_t dest_stride) { assert(block_width >= 8 && block_height >= 8); if (is_compound) { assert(dest_stride == block_width); |