mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-12-24 11:52:06 +08:00
typo, fix eof check
Originally committed as revision 18064 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -67,7 +67,7 @@ static int ffm_is_avail_data(AVFormatContext *s, int size)
|
||||
return 1;
|
||||
pos = url_ftell(s->pb);
|
||||
if (!ffm->write_index) {
|
||||
if (pos == ffm->file_size);
|
||||
if (pos == ffm->file_size)
|
||||
return AVERROR_EOF;
|
||||
avail_size = ffm->file_size - pos;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user