[vlc-commits] access: bluray: fix PG range

Francois Cartegnie git at videolan.org
Mon Jan 21 19:30:57 CET 2019


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Mon Jan 21 19:18:41 2019 +0100| [5a335557bc2b8b424bfe01881d82866c270095f4] | committer: Francois Cartegnie

access: bluray: fix PG range

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5a335557bc2b8b424bfe01881d82866c270095f4
---

 modules/access/bluray.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/access/bluray.c b/modules/access/bluray.c
index e8f0b6fde1..d258a7fc55 100644
--- a/modules/access/bluray.c
+++ b/modules/access/bluray.c
@@ -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) {



More information about the vlc-commits mailing list