mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
avio: deprecate url_feof
AVIOContext.eof_reached should be used directly instead. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:

committed by
Ronald S. Bultje

parent
6a7e074eb9
commit
66e5b1df36
@ -46,7 +46,7 @@ static int flac_read_header(AVFormatContext *s,
|
||||
}
|
||||
|
||||
/* process metadata blocks */
|
||||
while (!url_feof(s->pb) && !metadata_last) {
|
||||
while (!s->pb->eof_reached && !metadata_last) {
|
||||
avio_read(s->pb, header, 4);
|
||||
ff_flac_parse_block_header(header, &metadata_last, &metadata_type,
|
||||
&metadata_size);
|
||||
|
Reference in New Issue
Block a user