[Ffmpeg-cvslog] CVS: ffmpeg/libavformat ogg.c,1.24,1.25

Aurelien Jacobs CVS aurel
Thu Sep 22 01:09:18 CEST 2005


Update of /cvsroot/ffmpeg/ffmpeg/libavformat
In directory mail:/var2/tmp/cvs-serv7794/libavformat

Modified Files:
	ogg.c 
Log Message:
fix unused variable warnings

Index: ogg.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/ogg.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- ogg.c	15 Aug 2005 20:42:56 -0000	1.24
+++ ogg.c	21 Sep 2005 23:09:16 -0000	1.25
@@ -34,7 +34,7 @@
 {
     OggContext *context = avfcontext->priv_data;
     ogg_packet *op= &context->op;    
-    int n, i;
+    int n;
 
     ogg_stream_init(&context->os, 31415);
     
@@ -44,7 +44,7 @@
         int headers_len = codec->extradata_size;
         uint8_t *header_start[3];
         int header_len[3];
-        int i, j, hdr_type;
+        int i, j;
         
         av_set_pts_info(avfcontext->streams[n], 60, 1, AV_TIME_BASE);
 





More information about the ffmpeg-cvslog mailing list