[FFmpeg-soc] [soc]: r4887 - in concat/libavformat: m3u.c pls.c xspf.c

gkovacs subversion at mplayerhq.hu
Sat Aug 1 05:17:30 CEST 2009


Author: gkovacs
Date: Sat Aug  1 05:17:30 2009
New Revision: 4887

Log:
removing unused variables

Modified:
   concat/libavformat/m3u.c
   concat/libavformat/pls.c
   concat/libavformat/xspf.c

Modified: concat/libavformat/m3u.c
==============================================================================
--- concat/libavformat/m3u.c	Sat Aug  1 05:16:43 2009	(r4886)
+++ concat/libavformat/m3u.c	Sat Aug  1 05:17:30 2009	(r4887)
@@ -79,7 +79,6 @@ static int m3u_list_files(ByteIOContext 
 static int m3u_read_header(AVFormatContext *s,
                            AVFormatParameters *ap)
 {
-    int i;
     PlaylistContext *ctx = av_mallocz(sizeof(*ctx));
     m3u_list_files(s->pb, ctx, s->filename);
     s->priv_data = ctx;

Modified: concat/libavformat/pls.c
==============================================================================
--- concat/libavformat/pls.c	Sat Aug  1 05:16:43 2009	(r4886)
+++ concat/libavformat/pls.c	Sat Aug  1 05:17:30 2009	(r4887)
@@ -103,7 +103,6 @@ static int pls_list_files(ByteIOContext 
 static int pls_read_header(AVFormatContext *s,
                            AVFormatParameters *ap)
 {
-    int i;
     PlaylistContext *ctx = av_mallocz(sizeof(*ctx));
     if (pls_list_files(s->pb, ctx, s->filename)) {
         fprintf(stderr, "no playlist items found in %s\n", s->filename);

Modified: concat/libavformat/xspf.c
==============================================================================
--- concat/libavformat/xspf.c	Sat Aug  1 05:16:43 2009	(r4886)
+++ concat/libavformat/xspf.c	Sat Aug  1 05:17:30 2009	(r4887)
@@ -105,7 +105,6 @@ static int xspf_list_files(ByteIOContext
 static int xspf_read_header(AVFormatContext *s,
                             AVFormatParameters *ap)
 {
-    int i;
     PlaylistContext *ctx = av_mallocz(sizeof(*ctx));
     if (xspf_list_files(s->pb, ctx, s->filename)) {
         fprintf(stderr, "no playlist items found in %s\n", s->filename);


More information about the FFmpeg-soc mailing list