mirror of https://git.ffmpeg.org/ffmpeg.git
lavc/idctdsp: use prefix restrict with av_
This commit is contained in:
parent
eaa67bb9c0
commit
d467740f45
|
@ -53,13 +53,13 @@ int ff_init_scantable_permutation_x86(uint8_t *idct_permutation,
|
||||||
typedef struct IDCTDSPContext {
|
typedef struct IDCTDSPContext {
|
||||||
/* pixel ops : interface with DCT */
|
/* pixel ops : interface with DCT */
|
||||||
void (*put_pixels_clamped)(const int16_t *block /* align 16 */,
|
void (*put_pixels_clamped)(const int16_t *block /* align 16 */,
|
||||||
uint8_t *restrict pixels /* align 8 */,
|
uint8_t *av_restrict pixels /* align 8 */,
|
||||||
ptrdiff_t line_size);
|
ptrdiff_t line_size);
|
||||||
void (*put_signed_pixels_clamped)(const int16_t *block /* align 16 */,
|
void (*put_signed_pixels_clamped)(const int16_t *block /* align 16 */,
|
||||||
uint8_t *restrict pixels /* align 8 */,
|
uint8_t *av_restrict pixels /* align 8 */,
|
||||||
ptrdiff_t line_size);
|
ptrdiff_t line_size);
|
||||||
void (*add_pixels_clamped)(const int16_t *block /* align 16 */,
|
void (*add_pixels_clamped)(const int16_t *block /* align 16 */,
|
||||||
uint8_t *restrict pixels /* align 8 */,
|
uint8_t *av_restrict pixels /* align 8 */,
|
||||||
ptrdiff_t line_size);
|
ptrdiff_t line_size);
|
||||||
|
|
||||||
void (*idct)(int16_t *block /* align 16 */);
|
void (*idct)(int16_t *block /* align 16 */);
|
||||||
|
|
Loading…
Reference in New Issue