1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

v210dec: Fix warning: ‘val’ may be used uninitialized in this function [-Wuninitialized]

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-12-18 01:06:07 +01:00
parent c9dc66375b
commit 53509d20ca

View File

@ -126,7 +126,6 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
val = av_le2ne32(*src++); val = av_le2ne32(*src++);
*y++ = val & 0x3FF; *y++ = val & 0x3FF;
}
if (w < avctx->width - 3) { if (w < avctx->width - 3) {
*u++ = (val >> 10) & 0x3FF; *u++ = (val >> 10) & 0x3FF;
*y++ = (val >> 20) & 0x3FF; *y++ = (val >> 20) & 0x3FF;
@ -135,6 +134,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
*v++ = val & 0x3FF; *v++ = val & 0x3FF;
*y++ = (val >> 10) & 0x3FF; *y++ = (val >> 10) & 0x3FF;
} }
}
psrc += stride; psrc += stride;
y += pic->linesize[0] / 2 - avctx->width; y += pic->linesize[0] / 2 - avctx->width;