From d34ec64a22907173c13e687b815d94618d2dc85b Mon Sep 17 00:00:00 2001 From: James Almer Date: Thu, 7 Aug 2014 17:12:41 -0300 Subject: replace calls to url_feof() with avio_feof() Signed-off-by: James Almer Signed-off-by: Michael Niedermayer --- libavformat/tmv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/tmv.c') diff --git a/libavformat/tmv.c b/libavformat/tmv.c index 8be4dbffaf..ad172f4308 100644 --- a/libavformat/tmv.c +++ b/libavformat/tmv.c @@ -154,7 +154,7 @@ static int tmv_read_packet(AVFormatContext *s, AVPacket *pkt) int ret, pkt_size = tmv->stream_index ? tmv->audio_chunk_size : tmv->video_chunk_size; - if (url_feof(pb)) + if (avio_feof(pb)) return AVERROR_EOF; ret = av_get_packet(pb, pkt, pkt_size); -- cgit v1.2.3