summaryrefslogtreecommitdiff
path: root/libavformat/siff.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-10-31 11:35:10 +0000
committerDiego Biurrun <diego@biurrun.de>2007-10-31 11:35:10 +0000
commit1d5fab9b33d30ba34e986fcf64e696e8fc1acc87 (patch)
tree2f61aa6cd2e8476a9a74e60d57d970d28d533cd6 /libavformat/siff.c
parent51844e6cd2f2ef5876eae96d7d6f20ed5a0c4797 (diff)
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
Diffstat (limited to 'libavformat/siff.c')
-rw-r--r--libavformat/siff.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/siff.c b/libavformat/siff.c
index e64b2a9b04..7adccb2eba 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)