Browse Source

swscale/output: Fix "warning: assignment from incompatible pointer type"

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n2.8
Michael Niedermayer 10 years ago
parent
commit
1909a9151c
1 changed files with 8 additions and 4 deletions
  1. +8
    -4
      libswscale/output.c

+ 8
- 4
libswscale/output.c View File

@@ -2010,11 +2010,15 @@ yuv2ya8_X_c(SwsContext *c, const int16_t *lumFilter,

static void
yuv2ayuv64le_X_c(SwsContext *c, const int16_t *lumFilter,
const int32_t **lumSrc, int lumFilterSize,
const int16_t *chrFilter, const int32_t **chrUSrc,
const int32_t **chrVSrc, int chrFilterSize,
const int32_t **alpSrc, uint8_t *dest, int dstW, int y)
const int16_t **_lumSrc, int lumFilterSize,
const int16_t *chrFilter, const int16_t **_chrUSrc,
const int16_t **_chrVSrc, int chrFilterSize,
const int16_t **_alpSrc, uint8_t *dest, int dstW, int y)
{
const int32_t **lumSrc = (const int32_t **) _lumSrc,
**chrUSrc = (const int32_t **) _chrUSrc,
**chrVSrc = (const int32_t **) _chrVSrc,
**alpSrc = (const int32_t **) _alpSrc;
int hasAlpha = !!alpSrc;
int i;



Loading…
Cancel
Save