]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/pjsdec.c
Move WMA case from ff_get_audio_frame_size() to av_get_audio_frame_duration()
[ffmpeg] / libavformat / pjsdec.c
index 6f5db3788667b70525dba6508a8e1aa80ffed393..5129b70e5fb1736fc53f49cfcc326eec858779e3 100644 (file)
@@ -73,7 +73,7 @@ static int pjs_read_header(AVFormatContext *s)
     st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
     st->codec->codec_id   = AV_CODEC_ID_PJS;
 
-    while (!url_feof(s->pb)) {
+    while (!avio_feof(s->pb)) {
         char line[4096];
         char *p = line;
         const int64_t pos = avio_tell(s->pb);