diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2009-02-09 22:45:30 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2009-02-09 22:45:30 +0000 |
commit | ed761067550ec784c62b32dd749bbbca62462d89 (patch) | |
tree | 93f4616b37f04425ae1c4253cd53fb407a7b44af /libavcodec/vp56.c | |
parent | 05276956ce3c7743f8d9cd1bb27b7d0930279d18 (diff) | |
download | ffmpeg-ed761067550ec784c62b32dd749bbbca62462d89.tar.gz |
vp56: alpha_offset is uninitialized on purpose
Originally committed as revision 17108 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp56.c')
-rw-r--r-- | libavcodec/vp56.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp56.c b/libavcodec/vp56.c index c436fe5458..ad11b5289a 100644 --- a/libavcodec/vp56.c +++ b/libavcodec/vp56.c @@ -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); |