You've already forked FFmpeg
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:
committed by
Michael Niedermayer
parent
5c3c67126f
commit
d34ec64a22
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user