Commit f4b7aa82 authored by Steve Lhomme's avatar Steve Lhomme

mkv.cpp: try to decode H.264 with the avc1 FourCC (same as used for the MP4 source)

parent 0dd3733c
......@@ -760,7 +760,7 @@ static int Open( vlc_object_t * p_this )
}
else if( !strcmp( tk.psz_codec, "V_MPEG4/ISO/AVC" ) )
{
tk.fmt.i_codec = VLC_FOURCC( 'h', '2', '6', '4' );
tk.fmt.i_codec = VLC_FOURCC( 'a', 'v', 'c', '1' );
tk.fmt.b_packetized = VLC_FALSE;
tk.fmt.i_extra = tk.i_extra_data;
tk.fmt.p_extra = malloc( tk.i_extra_data );
......
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