Commit 1ed7ca00 authored by Piotr Bandurski's avatar Piotr Bandurski Committed by Michael Niedermayer

bethsoftvid: signal EOF

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 425d0888
...@@ -210,7 +210,7 @@ static int vid_read_packet(AVFormatContext *s, ...@@ -210,7 +210,7 @@ static int vid_read_packet(AVFormatContext *s,
int ret_value; int ret_value;
if(vid->is_finished || url_feof(pb)) if(vid->is_finished || url_feof(pb))
return AVERROR(EIO); return AVERROR_EOF;
block_type = avio_r8(pb); block_type = avio_r8(pb);
switch(block_type){ switch(block_type){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment