[FFmpeg-cvslog] r18992 - trunk/libavformat/mov.c

bcoudurier subversion
Sat May 30 08:15:27 CEST 2009


Author: bcoudurier
Date: Sat May 30 08:15:27 2009
New Revision: 18992

Log:
return AVERROR_EOF

Modified:
   trunk/libavformat/mov.c

Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c	Sat May 30 06:08:43 2009	(r18991)
+++ trunk/libavformat/mov.c	Sat May 30 08:15:27 2009	(r18992)
@@ -2025,7 +2025,7 @@ static int mov_read_packet(AVFormatConte
         if (!url_is_streamed(s->pb) ||
             mov_read_default(mov, s->pb, (MOVAtom){ 0, 0, INT64_MAX }) < 0 ||
             url_feof(s->pb))
-            return -1;
+            return AVERROR_EOF;
         dprintf(s, "read fragments, offset 0x%llx\n", url_ftell(s->pb));
         goto retry;
     }



More information about the ffmpeg-cvslog mailing list