diff options
author | Peter Ross <pross@xvid.org> | 2009-02-19 12:19:33 +0000 |
---|---|---|
committer | Peter Ross <pross@xvid.org> | 2009-02-19 12:19:33 +0000 |
commit | 1e04bbeede593ac0b84c684838cb4e76e294ae5b (patch) | |
tree | a47d066c1f257f47610eb318ced2e0c4a43ba9d7 /libavformat/avidec.c | |
parent | 9bf1b724059619e0757918110c46ace219f65d85 (diff) | |
download | ffmpeg-1e04bbeede593ac0b84c684838cb4e76e294ae5b.tar.gz |
AVI demuxer: return AVERROR_EOF upon detection of end of file.
Originally committed as revision 17456 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avidec.c')
-rw-r--r-- | libavformat/avidec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avidec.c b/libavformat/avidec.c index 69c9051cea..e3cc14c958 100644 --- a/libavformat/avidec.c +++ b/libavformat/avidec.c @@ -870,7 +870,7 @@ resync: } } - return -1; + return AVERROR_EOF; } /* XXX: We make the implicit supposition that the positions are sorted |