Commit eadf3063 authored by Steve Lhomme's avatar Steve Lhomme Committed by Jean-Baptiste Kempf

MKV: VP9 has incremental frames, no B-frames

Fixes #11690

#11690 still fails to play with avcodec after that fix but is fine with libvpx
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent d5adfb2d
......@@ -1373,6 +1373,7 @@ int32_t matroska_segment_c::TrackInit( mkv_track_t * p_tk )
{
p_tk->fmt.i_codec = VLC_CODEC_VP9;
p_tk->fmt.b_packetized = false;
p_tk->b_pts_only = true;
fill_extra_data( p_tk, 0 );
}
else if( !strncmp( p_tk->psz_codec, "V_MPEG4", 7 ) )
......
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