Mercurial > libavcodec.hg
changeset 8782:bf4b7bde40ab libavcodec
vp56: alpha_offset is uninitialized on purpose
author | aurel |
---|---|
date | Mon, 09 Feb 2009 22:45:30 +0000 |
parents | 0960d775e97b |
children | e91ea98d868a |
files | vp56.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/vp56.c Mon Feb 09 22:11:28 2009 +0000 +++ b/vp56.c Mon Feb 09 22:45:30 2009 +0000 @@ -500,7 +500,7 @@ 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);