[FFmpeg-cvslog] r18416 - trunk/libavformat/ffmdec.c

aurel subversion
Fri Apr 10 14:49:53 CEST 2009


Author: aurel
Date: Fri Apr 10 14:49:53 2009
New Revision: 18416

Log:
remove useless duplication of what av_new_stream() already does

Modified:
   trunk/libavformat/ffmdec.c

Modified: trunk/libavformat/ffmdec.c
==============================================================================
--- trunk/libavformat/ffmdec.c	Fri Apr 10 14:18:04 2009	(r18415)
+++ trunk/libavformat/ffmdec.c	Fri Apr 10 14:49:53 2009	(r18416)
@@ -287,7 +287,6 @@ static int ffm_read_header(AVFormatConte
         st = av_new_stream(s, 0);
         if (!st)
             goto fail;
-        s->streams[i] = st;
 
         av_set_pts_info(st, 64, 1, 1000000);
 



More information about the ffmpeg-cvslog mailing list