1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-23 21:54:53 +02:00

replace calls to url_feof() with avio_feof()

Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
James Almer
2014-08-07 17:12:41 -03:00
committed by Michael Niedermayer
parent 5c3c67126f
commit d34ec64a22
96 changed files with 160 additions and 160 deletions

View File

@@ -113,7 +113,7 @@ static int read_packet(AVFormatContext *avctx, AVPacket *pkt)
TtyDemuxContext *s = avctx->priv_data;
int n;
if (url_feof(avctx->pb))
if (avio_feof(avctx->pb))
return AVERROR_EOF;
n = s->chars_per_frame;