[vlc-commits] Support TrueHD/DD+ in EVOB files
Jean-Baptiste Kempf
git at videolan.org
Sun Aug 10 08:54:03 CEST 2014
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Aug 10 02:11:12 2014 +0200| [c128bd73243d1e8aa6cc1cb0220c333767b06d90] | committer: Jean-Baptiste Kempf
Support TrueHD/DD+ in EVOB files
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c128bd73243d1e8aa6cc1cb0220c333767b06d90
---
modules/demux/ps.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/demux/ps.h b/modules/demux/ps.h
index ba5fe90..7053afe 100644
--- a/modules/demux/ps.h
+++ b/modules/demux/ps.h
@@ -98,8 +98,8 @@ static inline int ps_track_fill( ps_track_t *tk, ps_psm_t *p_psm, int i_id )
}
else if( (i_id&0xf0) == 0xb0 ) /* 0xb0 -> 0xbf */
{
- es_format_Init( &tk->fmt, AUDIO_ES, VLC_CODEC_MLP );
- /* FIXME / untested ... */
+ es_format_Init( &tk->fmt, AUDIO_ES, VLC_CODEC_TRUEHD );
+ tk->i_skip = 5;
}
else if( ( i_id&0xe0 ) == 0x20 ) /* 0x20 -> 0x3f */
{
More information about the vlc-commits
mailing list