Skip to content
Snippets Groups Projects
Commit a1957a4d authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avcodec/ppc/pixblockdsp: Fix type of get_pixels_vsx()

parent 9806cca1
No related branches found
No related tags found
No related merge requests found
...@@ -230,7 +230,7 @@ static void diff_pixels_altivec(int16_t *restrict block, const uint8_t *s1, ...@@ -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++) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment