]> git.sesse.net Git - vlc/commitdiff
demux: ts: add HDMV VC-1 registration
authorFrancois Cartegnie <fcvlcdev@free.fr>
Thu, 5 Feb 2015 20:42:17 +0000 (21:42 +0100)
committerFrancois Cartegnie <fcvlcdev@free.fr>
Thu, 5 Feb 2015 20:43:09 +0000 (21:43 +0100)
refs issues/TS/IMAX.Blue.Planet.ts

modules/demux/ts.c

index 00f161dfa791e18c7c39e8fd286e43876f2fa974..fdc2093922910774809d81db19c9d7b1c1b21b7e 100644 (file)
@@ -4723,6 +4723,10 @@ static bool PMTSetupEsHDMV( demux_t *p_demux, ts_pid_t *pid,
     case 0x91: /* Interactive graphics */
     case 0x92: /* Subtitle */
         return false;
+    case 0xEA:
+        p_fmt->i_cat = VIDEO_ES;
+        p_fmt->i_codec = VLC_CODEC_VC1;
+        break;
     default:
         msg_Info( p_demux, "HDMV registration not implemented for pid 0x%x type 0x%x",
                   p_es->i_pid, p_es->i_type );