mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
avcodec/ppc/pixblockdsp: Fix type of get_pixels_vsx()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
9806cca1eb
commit
a1957a4dc1
@ -230,7 +230,7 @@ static void diff_pixels_altivec(int16_t *restrict block, const uint8_t *s1,
|
|||||||
|
|
||||||
#if HAVE_VSX
|
#if HAVE_VSX
|
||||||
static void get_pixels_vsx(int16_t *restrict block, const uint8_t *pixels,
|
static void get_pixels_vsx(int16_t *restrict block, const uint8_t *pixels,
|
||||||
int line_size)
|
ptrdiff_t line_size)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < 8; i++) {
|
for (i = 0; i < 8; i++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user