summaryrefslogtreecommitdiff
path: root/libavcodec/xl.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2009-02-01 16:14:54 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2009-02-01 16:14:54 +0000
commit55b557ece1b52d77af67636fef1e99a041576a3b (patch)
treebb7bab6a8d7c4a7a86eeee15d1131454a93649ff /libavcodec/xl.c
parentb7093975305c639630fd7ee5698b4d6c311a76f6 (diff)
Silence compiler warnings for XL decoder
Originally committed as revision 16921 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/xl.c')
-rw-r--r--libavcodec/xl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/xl.c b/libavcodec/xl.c
index 8611951e1e..ccff40e17a 100644
--- a/libavcodec/xl.c
+++ b/libavcodec/xl.c
@@ -48,7 +48,7 @@ static int decode_frame(AVCodecContext *avctx,
int i, j;
int stride;
uint32_t val;
- int y0, y1, y2, y3, c0, c1;
+ int y0, y1, y2, y3 = 0, c0 = 0, c1 = 0;
if(p->data[0])
avctx->release_buffer(avctx, p);