Commit 445d60a3 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen Committed by Jean-Baptiste Kempf

bluray: Fix seekpoint updating.

(cherry picked from commit c68373380984bbf16687997e426b25ac90558751)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent e0bd1e86
...@@ -959,7 +959,7 @@ static void blurayHandleEvent( demux_t *p_demux, const BD_EVENT *e ) ...@@ -959,7 +959,7 @@ static void blurayHandleEvent( demux_t *p_demux, const BD_EVENT *e )
break; break;
case BD_EVENT_CHAPTER: case BD_EVENT_CHAPTER:
p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT; p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT;
p_demux->info.i_seekpoint = 0; p_demux->info.i_seekpoint = e->param;
break; break;
case BD_EVENT_ANGLE: case BD_EVENT_ANGLE:
case BD_EVENT_IG_STREAM: case BD_EVENT_IG_STREAM:
......
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