Commit ed761067 authored by Aurelien Jacobs's avatar Aurelien Jacobs

vp56: alpha_offset is uninitialized on purpose

Originally committed as revision 17108 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 05276956
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment