mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-06-16 04:32:47 +02:00
avcodec/x86/idctdsp: add restrict to match function pointer types
Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
This commit is contained in:
@@ -22,11 +22,11 @@
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
void ff_add_pixels_clamped_sse2(const int16_t *block, uint8_t *pixels,
|
||||
void ff_add_pixels_clamped_sse2(const int16_t *block, uint8_t *restrict pixels,
|
||||
ptrdiff_t line_size);
|
||||
void ff_put_pixels_clamped_sse2(const int16_t *block, uint8_t *pixels,
|
||||
void ff_put_pixels_clamped_sse2(const int16_t *block, uint8_t *restrict pixels,
|
||||
ptrdiff_t line_size);
|
||||
void ff_put_signed_pixels_clamped_sse2(const int16_t *block, uint8_t *pixels,
|
||||
void ff_put_signed_pixels_clamped_sse2(const int16_t *block, uint8_t *restrict pixels,
|
||||
ptrdiff_t line_size);
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user