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

bluray: handle BD_EVENT_DISCONTINUITY

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 99baabc3
......@@ -1502,6 +1502,11 @@ static void blurayHandleEvent(demux_t *p_demux, const BD_EVENT *e)
case BD_EVENT_IG_STREAM:
break;
case BD_EVENT_DISCONTINUITY:
/* reset demuxer (partially decoded PES packets must be dropped) */
blurayResetParser(p_demux);
break;
default:
msg_Warn(p_demux, "event: %d param: %d", e->event, e->param);
break;
......
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