# HG changeset patch # User ben # Date 1212834649 0 # Node ID 2b6d87a076121fd7a88f6cf0dd5983cbd7c11ea2 # Parent 5b162ba7cee8c1c1327fcf86eb564ce405943bef Save DVDNAV palette info. diff -r 5b162ba7cee8 -r 2b6d87a07612 stream/stream_dvdnav.c --- a/stream/stream_dvdnav.c Sat Jun 07 10:25:07 2008 +0000 +++ b/stream/stream_dvdnav.c Sat Jun 07 10:30:49 2008 +0000 @@ -823,6 +823,7 @@ hl->sy = hlev.sy; hl->ex = hlev.ex; hl->ey = hlev.ey; + hl->palette = hlev.palette; } void mp_dvdnav_switch_title (stream_t *stream, int title) { diff -r 5b162ba7cee8 -r 2b6d87a07612 stream/stream_dvdnav.h --- a/stream/stream_dvdnav.h Sat Jun 07 10:25:07 2008 +0000 +++ b/stream/stream_dvdnav.h Sat Jun 07 10:30:49 2008 +0000 @@ -13,6 +13,7 @@ typedef struct { uint16_t sx, sy; uint16_t ex, ey; + uint32_t palette; } nav_highlight_t; int dvdnav_number_of_subs(stream_t *stream);