diff options
author | Piotr Bandurski <ami_stuff@o2.pl> | 2012-11-24 15:04:32 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-11-24 15:04:32 +0000 |
commit | 081bf60ec6a377d53dda979b7e9cf812c4882dc1 (patch) | |
tree | 9246703b0e0b3962dab7de531dbe0d1cea8ba368 /libavformat/c93.c | |
parent | 05b02e9c0f2fc33f61f75ae3977fd2cd0e6b81e3 (diff) | |
download | ffmpeg-081bf60ec6a377d53dda979b7e9cf812c4882dc1.tar.gz |
c93: signal EOF
Diffstat (limited to 'libavformat/c93.c')
-rw-r--r-- | libavformat/c93.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/c93.c b/libavformat/c93.c index 66516e9c39..93a61be838 100644 --- a/libavformat/c93.c +++ b/libavformat/c93.c @@ -133,7 +133,7 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt) } if (c93->current_frame >= br->frames) { if (c93->current_block >= 511 || !br[1].length) - return AVERROR(EIO); + return AVERROR_EOF; br++; c93->current_block++; c93->current_frame = 0; |