Commit 2e1f2e3d authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

MKV: support of PGS (BD subs) in .mkv

parent 91b3352a
...@@ -1154,6 +1154,10 @@ bool matroska_segment_c::Select( mtime_t i_start_time ) ...@@ -1154,6 +1154,10 @@ bool matroska_segment_c::Select( mtime_t i_start_time )
} }
} }
} }
else if( !strcmp( tracks[i_track]->psz_codec, "S_HDMV/PGS" ) )
{
tracks[i_track]->fmt.i_codec = VLC_CODEC_BD_PG;
}
else if( !strcmp( tracks[i_track]->psz_codec, "B_VOBBTN" ) ) else if( !strcmp( tracks[i_track]->psz_codec, "B_VOBBTN" ) )
{ {
tracks[i_track]->fmt.i_cat = NAV_ES; tracks[i_track]->fmt.i_cat = NAV_ES;
......
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