diff options
author | Piotr Bandurski <ami_stuff@o2.pl> | 2012-11-21 17:04:22 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-11-21 23:22:38 +0100 |
commit | 1ed7ca00dccb7dfe821be324c62e7937a1327393 (patch) | |
tree | 611cb6babf7ce5a5cde6682ccbe754b9a51a2491 /libavformat/bethsoftvid.c | |
parent | 425d0888c3e855dafbe7b4d8bcb1a337f5a33728 (diff) | |
download | ffmpeg-1ed7ca00dccb7dfe821be324c62e7937a1327393.tar.gz |
bethsoftvid: signal EOF
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/bethsoftvid.c')
-rw-r--r-- | libavformat/bethsoftvid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/bethsoftvid.c b/libavformat/bethsoftvid.c index f17031a41f..831bdd2f88 100644 --- a/libavformat/bethsoftvid.c +++ b/libavformat/bethsoftvid.c @@ -210,7 +210,7 @@ static int vid_read_packet(AVFormatContext *s, int ret_value; if(vid->is_finished || url_feof(pb)) - return AVERROR(EIO); + return AVERROR_EOF; block_type = avio_r8(pb); switch(block_type){ |