Commit 89df3fd4 authored by Vittorio Giovara's avatar Vittorio Giovara

swscale: fix warning about incompatible function pointer type

parent 024e5a2d
......@@ -596,7 +596,7 @@ static void planar_rgb_to_y(uint8_t *dst, const uint8_t *src[4], int width)
}
}
static void planar_rgb_to_a(uint8_t *_dst, const uint8_t *src[4], int width, int32_t *unused)
static void planar_rgb_to_a(uint8_t *_dst, const uint8_t *src[4], int width)
{
uint16_t *dst = (uint16_t *)_dst;
int i;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment