mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
vp56: alpha_offset is uninitialized on purpose
Originally committed as revision 17108 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
05276956ce
commit
ed76106755
@ -500,7 +500,7 @@ int vp56_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
|
||||
VP56Context *s = avctx->priv_data;
|
||||
AVFrame *const p = s->framep[VP56_FRAME_CURRENT];
|
||||
int remaining_buf_size = buf_size;
|
||||
int is_alpha, alpha_offset;
|
||||
int is_alpha, av_uninit(alpha_offset);
|
||||
|
||||
if (s->has_alpha) {
|
||||
alpha_offset = bytestream_get_be24(&buf);
|
||||
|
Loading…
Reference in New Issue
Block a user