]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/rpl.c
Move frame_size fallback from ff_get_audio_frame_size() to av_get_audio_frame_duration()
[ffmpeg] / libavformat / rpl.c
index 46a5796414ef74e0f2b322b852b115b737414411..c1229e85eb8a6fc4c1b3cdd14cdc0f831623e689 100644 (file)
@@ -60,7 +60,7 @@ static int read_line(AVIOContext * pb, char* line, int bufsize)
             break;
         if (b == '\n') {
             line[i] = '\0';
-            return url_feof(pb) ? -1 : 0;
+            return avio_feof(pb) ? -1 : 0;
         }
         line[i] = b;
     }