[FFmpeg-cvslog] r10884 - trunk/libavformat/siff.c

diego subversion
Wed Oct 31 12:35:10 CET 2007


Author: diego
Date: Wed Oct 31 12:35:10 2007
New Revision: 10884

Log:
Remove unused variables, fixes the following warnings:
siff.c:187: warning: unused variable 'snddata'
siff.c:186: warning: unused variable 'size2'


Modified:
   trunk/libavformat/siff.c

Modified: trunk/libavformat/siff.c
==============================================================================
--- trunk/libavformat/siff.c	(original)
+++ trunk/libavformat/siff.c	Wed Oct 31 12:35:10 2007
@@ -183,8 +183,7 @@ static int siff_read_header(AVFormatCont
 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)




More information about the ffmpeg-cvslog mailing list