diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-10-31 11:35:10 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-10-31 11:35:10 +0000 |
commit | 1d5fab9b33d30ba34e986fcf64e696e8fc1acc87 (patch) | |
tree | 2f61aa6cd2e8476a9a74e60d57d970d28d533cd6 /libavformat/siff.c | |
parent | 51844e6cd2f2ef5876eae96d7d6f20ed5a0c4797 (diff) | |
download | ffmpeg-1d5fab9b33d30ba34e986fcf64e696e8fc1acc87.tar.gz |
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.c | 3 |
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) |