[FFmpeg-cvslog] r17108 - trunk/libavcodec/vp56.c
aurel
subversion
Mon Feb 9 23:45:31 CET 2009
Author: aurel
Date: Mon Feb 9 23:45:30 2009
New Revision: 17108
Log:
vp56: alpha_offset is uninitialized on purpose
Modified:
trunk/libavcodec/vp56.c
Modified: trunk/libavcodec/vp56.c
==============================================================================
--- trunk/libavcodec/vp56.c Mon Feb 9 23:11:28 2009 (r17107)
+++ trunk/libavcodec/vp56.c Mon Feb 9 23:45:30 2009 (r17108)
@@ -500,7 +500,7 @@ int vp56_decode_frame(AVCodecContext *av
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);
More information about the ffmpeg-cvslog
mailing list