From 1d5fab9b33d30ba34e986fcf64e696e8fc1acc87 Mon Sep 17 00:00:00 2001
From: Diego Biurrun <diego@biurrun.de>
Date: Wed, 31 Oct 2007 11:35:10 +0000
Subject: [PATCH] Remove unused variables, fixes the following warnings:
 siff.c:187: warning: unused variable 'snddata' siff.c:186: warning: unused
 variable 'size2'

Originally committed as revision 10884 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavformat/siff.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/libavformat/siff.c b/libavformat/siff.c
index e64b2a9b049..7adccb2ebae 100644
--- a/libavformat/siff.c
+++ b/libavformat/siff.c
@@ -183,8 +183,7 @@ static int siff_read_header(AVFormatContext *s, AVFormatParameters *ap)
 static int siff_read_packet(AVFormatContext *s, AVPacket *pkt)
 {
     SIFFContext *c = s->priv_data;
-    int size, size2;
-    uint8_t *snddata;
+    int size;
 
     if (c->has_video){
         if (c->cur_frame >= c->frames)
-- 
GitLab