1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-02 17:12:49 +02:00

swscale: fix warning about incompatible function pointer type

This commit is contained in:
Vittorio Giovara 2015-01-15 15:15:21 +01:00
parent 024e5a2d5f
commit 89df3fd49e

View File

@ -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;