diff options
Diffstat (limited to 'stream/stream_dvdnav.h')
-rw-r--r-- | stream/stream_dvdnav.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/stream/stream_dvdnav.h b/stream/stream_dvdnav.h index e27af6eb1e..9accf0c87a 100644 --- a/stream/stream_dvdnav.h +++ b/stream/stream_dvdnav.h @@ -35,8 +35,11 @@ enum mp_nav_event_type { MP_NAV_EVENT_HIGHLIGHT, // highlight changed MP_NAV_EVENT_MENU_MODE, // menu mode on/off MP_NAV_EVENT_EOF, // it's over + MP_NAV_EVENT_OVERLAY, // overlay changed }; +struct sub_bitmap; + struct mp_nav_event { enum mp_nav_event_type event; union { @@ -51,6 +54,9 @@ struct mp_nav_event { struct { bool enable; } menu_mode; + struct { + struct sub_bitmap *images[2]; + } overlay; } u; }; |