Commit cb4ba4c0 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

PS: add alternative StreamID for VC-1 in evob

parent fe07d496
...@@ -132,7 +132,8 @@ static inline int ps_track_fill( ps_track_t *tk, ps_psm_t *p_psm, int i_id ) ...@@ -132,7 +132,8 @@ static inline int ps_track_fill( ps_track_t *tk, ps_psm_t *p_psm, int i_id )
else if( (i_id&0xff00) == 0xfd00 ) /* 0xFD00 -> 0xFDFF */ else if( (i_id&0xff00) == 0xfd00 ) /* 0xFD00 -> 0xFDFF */
{ {
uint8_t i_sub_id = i_id & 0xff; uint8_t i_sub_id = i_id & 0xff;
if( i_sub_id >= 0x55 && i_sub_id <= 0x5f ) if( i_sub_id >= 0x55 && i_sub_id <= 0x5f ||
i_sub_id >= 0x75 && i_sub_id <= 0x7f )
{ {
es_format_Init( &tk->fmt, VIDEO_ES, VLC_CODEC_VC1 ); es_format_Init( &tk->fmt, VIDEO_ES, VLC_CODEC_VC1 );
} }
......
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