changeset 857:26aaf3eed638 libavformat

fix unused variable warnings
author aurel
date Wed, 21 Sep 2005 23:09:16 +0000
parents acad29abfb70
children 66cc656ea404
files ogg.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ogg.c	Tue Sep 20 23:52:29 2005 +0000
+++ b/ogg.c	Wed Sep 21 23:09:16 2005 +0000
@@ -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);