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

Francois Cartegnie git at videolan.org
Mon Jan 21 19:31:40 CET 2019


vlc/vlc-3.0 | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Mon Jan 21 19:18:41 2019 +0100| [7af4ddf42980dd05d2545e9ee0ec601a38953987] | committer: Francois Cartegnie

access: bluray: fix PG range

(cherry picked from commit 5a335557bc2b8b424bfe01881d82866c270095f4)

> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=7af4ddf42980dd05d2545e9ee0ec601a38953987
---

 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 5656eaccb9..52baa6b59d 100644
--- a/modules/access/bluray.c
+++ b/modules/access/bluray.c
@@ -2171,7 +2171,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