[vlc-commits] demux: ts: add HDMV VC-1 registration
Francois Cartegnie
git at videolan.org
Thu Feb 5 21:43:18 CET 2015
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Thu Feb 5 21:42:17 2015 +0100| [dfc13bc50d5ff9c1405c303eb8b23519a4853060] | committer: Francois Cartegnie
demux: ts: add HDMV VC-1 registration
refs issues/TS/IMAX.Blue.Planet.ts
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=dfc13bc50d5ff9c1405c303eb8b23519a4853060
---
modules/demux/ts.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/modules/demux/ts.c b/modules/demux/ts.c
index 00f161d..fdc2093 100644
--- a/modules/demux/ts.c
+++ b/modules/demux/ts.c
@@ -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 );
More information about the vlc-commits
mailing list