Commit d5bf3a64 authored by Petri Hintukainen's avatar Petri Hintukainen Committed by Jean-Baptiste Kempf

bluray: signal EOF at the end of title when playing without menus

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent fa5081cc
......@@ -2139,6 +2139,9 @@ static int blurayDemux(demux_t *p_demux)
msg_Err(p_demux, "bluray: stopping playback after fatal error\n");
return VLC_DEMUXER_EGENERIC;
}
if (!p_sys->b_menu) {
return VLC_DEMUXER_EOF;
}
return VLC_DEMUXER_SUCCESS;
}
......
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