mirror of https://git.ffmpeg.org/ffmpeg.git
sws: Fix warning: ‘abase’ may be used uninitialized in this function
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
0a3a125fd9
commit
6ed000c8e6
|
@ -615,7 +615,7 @@ av_cold int ff_yuv2rgb_c_init_tables(SwsContext *c, const int inv_table[4], int
|
||||||
uint8_t *y_table;
|
uint8_t *y_table;
|
||||||
uint16_t *y_table16;
|
uint16_t *y_table16;
|
||||||
uint32_t *y_table32;
|
uint32_t *y_table32;
|
||||||
int i, base, rbase, gbase, bbase, abase, needAlpha;
|
int i, base, rbase, gbase, bbase, av_uninit(abase), needAlpha;
|
||||||
const int yoffs = fullRange ? 384 : 326;
|
const int yoffs = fullRange ? 384 : 326;
|
||||||
|
|
||||||
int64_t crv = inv_table[0];
|
int64_t crv = inv_table[0];
|
||||||
|
|
Loading…
Reference in New Issue