diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-03-20 01:39:55 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-03-20 01:39:55 +0000 |
commit | 21c6438f2c353b4e0a5bb16bb5861fb8a799e121 (patch) | |
tree | 0d1f9ec441797fa24b0174f3865c0d8ade75bfea /libavformat/ffmdec.c | |
parent | b9edbe9953d43b1bfff6ed5ffe8e615289a5d944 (diff) | |
download | ffmpeg-21c6438f2c353b4e0a5bb16bb5861fb8a799e121.tar.gz |
typo, fix eof check
Originally committed as revision 18064 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/ffmdec.c')
-rw-r--r-- | libavformat/ffmdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/ffmdec.c b/libavformat/ffmdec.c index 180762b4df..cc2769316e 100644 --- a/libavformat/ffmdec.c +++ b/libavformat/ffmdec.c @@ -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 { |