[FFmpeg-cvslog] Revert "jvdec: don't use deprecated url_feof()"

Michael Niedermayer git at videolan.org
Thu Mar 17 17:49:26 CET 2011


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Mar 17 17:02:54 2011 +0100| [afbfb2a81dde6d154216b72ac839aa4585a80d1c] | committer: Michael Niedermayer

Revert "jvdec: don't use deprecated url_feof()"

This reverts commit 1dac4d554734b16757b36a0adc71642c5ef2c4e6.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=afbfb2a81dde6d154216b72ac839aa4585a80d1c
---

 libavformat/jvdec.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavformat/jvdec.c b/libavformat/jvdec.c
index 175cd9f..9235e51 100644
--- a/libavformat/jvdec.c
+++ b/libavformat/jvdec.c
@@ -139,7 +139,7 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt)
     AVIOContext *pb = s->pb;
     AVStream *ast = s->streams[0];
 
-    while (!s->pb->eof_reached && jv->pts < ast->nb_index_entries) {
+    while (!url_feof(s->pb) && jv->pts < ast->nb_index_entries) {
         const AVIndexEntry *e   = ast->index_entries + jv->pts;
         const JVFrame      *jvf = jv->frames + jv->pts;
 




More information about the ffmpeg-cvslog mailing list