FFmpeg is providing 'vp09', but we expect 'VP90'.
From: Brendan McGrath bmcgrath@codeweavers.com
FFmpeg is providing 'vp09', but we expect 'VP90'. --- dlls/winedmo/unix_media_type.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/winedmo/unix_media_type.c b/dlls/winedmo/unix_media_type.c index ff4625530aa..9ce61cfed55 100644 --- a/dlls/winedmo/unix_media_type.c +++ b/dlls/winedmo/unix_media_type.c @@ -240,6 +240,7 @@ static void mf_video_format_init( const AVCodecParameters *params, MFVIDEOFORMAT format->guidFormat = MFVideoFormat_Base; if (params->codec_id == AV_CODEC_ID_MPEG1VIDEO) format->guidFormat = MEDIASUBTYPE_MPEG1Payload; else if (params->codec_id == AV_CODEC_ID_H264) format->guidFormat.Data1 = MFVideoFormat_H264.Data1; + else if (params->codec_id == AV_CODEC_ID_VP9) format->guidFormat.Data1 = MFVideoFormat_VP90.Data1; else if (params->codec_tag) format->guidFormat.Data1 = params->codec_tag; else format->guidFormat.Data1 = video_format_tag_from_codec_id( params->codec_id ); }