Commit 5916ab40 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Patch from thedj to recognize the vbi header in the PES.

parent 79f46d52
......@@ -101,6 +101,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