[vlc-commits] access: bluray: disable ts hotfixes and force standard

Francois Cartegnie git at videolan.org
Wed Oct 24 22:17:00 CEST 2018


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Wed Oct 24 17:48:27 2018 +0200| [ef38c066047348d6ae5b706ee24d746b97afdd59] | committer: Francois Cartegnie

access: bluray: disable ts hotfixes and force standard

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

 modules/access/bluray.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/modules/access/bluray.c b/modules/access/bluray.c
index 3af21d719a..f0cbf15550 100644
--- a/modules/access/bluray.c
+++ b/modules/access/bluray.c
@@ -865,6 +865,14 @@ static int blurayOpen(vlc_object_t *object)
        file concatenation are just resetting counters... */
     var_Create( p_demux, "ts-cc-check", VLC_VAR_BOOL );
     var_SetBool( p_demux, "ts-cc-check", false );
+    var_Create( p_demux, "ts-standard", VLC_VAR_STRING );
+    var_SetString( p_demux, "ts-standard", "mpeg" );
+    var_Create( p_demux, "ts-pmtfix-waitdata", VLC_VAR_BOOL );
+    var_SetBool( p_demux, "ts-pmtfix-waitdata", false );
+    var_Create( p_demux, "ts-patfix", VLC_VAR_BOOL );
+    var_SetBool( p_demux, "ts-patfix", false );
+    var_Create( p_demux, "ts-pcr-offsetfix", VLC_VAR_BOOL );
+    var_SetBool( p_demux, "ts-pcr-offsetfix", false );
 
 #ifdef DEBUG_BLURAY
     p_bluray_DebugObject = VLC_OBJECT(p_demux);



More information about the vlc-commits mailing list