diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-11-21 16:36:05 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-11-21 16:39:44 +0000 |
commit | e4e7846db830d25e68beb3908a14408fe60747a0 (patch) | |
tree | 16093d5f397f12b94fa138cba0c2c1d4bb646531 /libavformat/cdxl.c | |
parent | f6c439537486e09997661c10edd739561af1e331 (diff) | |
download | ffmpeg-e4e7846db830d25e68beb3908a14408fe60747a0.tar.gz |
cdxl: use url_feof()
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat/cdxl.c')
-rw-r--r-- | libavformat/cdxl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/cdxl.c b/libavformat/cdxl.c index 76bca578fb..185b745bb0 100644 --- a/libavformat/cdxl.c +++ b/libavformat/cdxl.c @@ -110,7 +110,7 @@ static int cdxl_read_packet(AVFormatContext *s, AVPacket *pkt) int64_t pos; int ret; - if (pb->eof_reached) + if (url_feof(pb)) return AVERROR_EOF; pos = avio_tell(pb); |