1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-04 09:11:33 +02:00

access: bluray: fix PG range

This commit is contained in:
Francois Cartegnie 2019-01-21 19:18:41 +01:00
parent 4a9dc2a626
commit 5a335557bc

View File

@ -2341,7 +2341,7 @@ static void blurayOnUserStreamSelection(demux_sys_t *p_sys, int i_pid)
break;
}
}
} else if ((i_pid & 0xff00) == 0x1400 || i_pid == 0x1800) {
} else if ((i_pid & 0xff00) == 0x1200 || i_pid == 0x1800) {
// subtitle
for (int i_id = 0; i_id < p_sys->p_clip_info->pg_stream_count; i_id++) {
if (i_pid == p_sys->p_clip_info->pg_streams[i_id].pid) {