mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
jvdec: don't use deprecated url_feof()
This commit is contained in:
parent
79414257e2
commit
1dac4d5547
@ -139,7 +139,7 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
AVIOContext *pb = s->pb;
|
||||
AVStream *ast = s->streams[0];
|
||||
|
||||
while (!url_feof(s->pb) && jv->pts < ast->nb_index_entries) {
|
||||
while (!s->pb->eof_reached && jv->pts < ast->nb_index_entries) {
|
||||
const AVIndexEntry *e = ast->index_entries + jv->pts;
|
||||
const JVFrame *jvf = jv->frames + jv->pts;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user