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

bluray: add couple of missing libbluray events

Avoids logging these as unhandled events.
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 0ff9caf6
......@@ -1969,8 +1969,12 @@ static void blurayHandleEvent(demux_t *p_demux, const BD_EVENT *e)
p_demux->info.i_seekpoint = 0;
p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT;
break;
case BD_EVENT_PLAYMARK:
case BD_EVENT_ANGLE:
break;
case BD_EVENT_UO_MASK_CHANGED:
/* This event could be used to grey out unselectable items in title menu */
break;
case BD_EVENT_MENU:
p_sys->b_menu_open = e->param;
break;
......@@ -2006,6 +2010,11 @@ static void blurayHandleEvent(demux_t *p_demux, const BD_EVENT *e)
blurayStreamSelect(p_demux, e->event, e->param);
break;
case BD_EVENT_IG_STREAM:
case BD_EVENT_SECONDARY_AUDIO:
case BD_EVENT_SECONDARY_AUDIO_STREAM:
case BD_EVENT_SECONDARY_VIDEO:
case BD_EVENT_SECONDARY_VIDEO_STREAM:
case BD_EVENT_SECONDARY_VIDEO_SIZE:
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