read_packet return value must be < 0 when no packet is returned, including EOF.
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>
Sun, 11 Jun 2006 10:09:33 +0000 (10:09 +0000)
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>
Sun, 11 Jun 2006 10:09:33 +0000 (10:09 +0000)
Originally committed as revision 5466 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/nuv.c

index e707854..5cb1a3c 100644 (file)
@@ -186,7 +186,7 @@ static int nuv_packet(AVFormatContext *s, AVPacket *pkt) {
     while (!url_feof(pb)) {
         ret = get_buffer(pb, hdr, HDRSIZE);
         if (ret <= 0)
-            return ret;
+            return ret ? ret : -1;
         frametype = hdr[0];
         size = PKTSIZE(LE_32(&hdr[8]));
         switch (frametype) {