Commit 94dfa75a authored by Clément Stenac's avatar Clément Stenac

H264 support in mkv, patch by Steve Lhomme

parent fdb80c42
......@@ -569,6 +569,10 @@ static int Open( vlc_object_t * p_this )
{
tk.fmt.i_codec = VLC_FOURCC( 'D', 'I', 'V', '3' );
}
else if( !strcmp( tk.psz_codec, "V_MPEG4/ISO/AVC" ) )
{
tk.fmt.i_codec = VLC_FOURCC( 'h', '2', '6', '4' );
}
else
{
tk.fmt.i_codec = VLC_FOURCC( 'm', 'p', '4', 'v' );
......
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