[Ffmpeg-cvslog] CVS: ffmpeg ffplay.c,1.44,1.45

Michael Niedermayer CVS michael
Tue Jun 28 10:35:40 CEST 2005


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

Modified Files:
	ffplay.c 
Log Message:
ffplay seeking because url_feof() not working patch by (Andy Parkins: andyparkins, gmail com)


Index: ffplay.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/ffplay.c,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- ffplay.c	24 Jun 2005 08:32:55 -0000	1.44
+++ ffplay.c	28 Jun 2005 08:35:38 -0000	1.45
@@ -1463,7 +1463,7 @@
         }
         ret = av_read_frame(ic, pkt);
         if (ret < 0) {
-	    if (url_feof(&ic->pb) && url_ferror(&ic->pb) == 0) {
+	    if (url_ferror(&ic->pb) == 0) {
                 SDL_Delay(100); /* wait for user event */
 		continue;
 	    } else





More information about the ffmpeg-cvslog mailing list