You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-23 21:54:53 +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