X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=libavformat%2Fiff.c;h=a46bc92ceab642dca178a7db0b474773ebf1d513;hb=ed488d1535d9e7b729dda2a6ffe8ecff481dad83;hp=62f0b8387c297d35e1d209ff3cc14bf2c1a84fa1;hpb=77aafadc5655401e5806daed58300a2cccb19fb8;p=ffmpeg diff --git a/libavformat/iff.c b/libavformat/iff.c index 62f0b8387c2..a46bc92ceab 100644 --- a/libavformat/iff.c +++ b/libavformat/iff.c @@ -363,7 +363,7 @@ static int iff_read_header(AVFormatContext *s) iff->maud_bits = -1; iff->maud_compression = -1; - while(!url_feof(pb)) { + while(!avio_feof(pb)) { uint64_t orig_pos; int res; const char *metadata_tag = NULL; @@ -584,7 +584,7 @@ static int iff_read_header(AVFormatContext *s) } break; case 2: - tag = ref < FF_ARRAY_ELEMS(dsd_source_comment) ? dsd_history_comment[ref] : "source_comment"; + tag = ref < FF_ARRAY_ELEMS(dsd_source_comment) ? dsd_source_comment[ref] : "source_comment"; break; case 3: tag = ref < FF_ARRAY_ELEMS(dsd_history_comment) ? dsd_history_comment[ref] : "file_history";