Commit e9c4604d authored by Jean-Paul Saman's avatar Jean-Paul Saman Committed by Jean-Paul Saman

Patch from thedj to detect vbi date in PES.

parent 385ff17d
......@@ -2,7 +2,7 @@
* ps.h: Program Stream demuxer helper
*****************************************************************************
* Copyright (C) 2004 the VideoLAN team
* $Id$
* $Id: 856b365d3b7c96a767f70d9c1eeb45d154e85756 $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
......@@ -92,6 +92,10 @@ static inline int ps_track_fill( ps_track_t *tk, ps_psm_t *p_psm, int i_id )
{
es_format_Init( &tk->fmt, SPU_ES, VLC_FOURCC('c','v','d',' ') );
}
else if( ( i_id&0xff ) == 0x10 )
{
es_format_Init( &tk->fmt, SPU_ES, VLC_FOURCC('t','e','l','x') );
}
else
{
es_format_Init( &tk->fmt, UNKNOWN_ES, 0 );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment