Another AVI fix for WinAPI importers

When not using native resolution, FFMPEG automatically selects FFV1 version 3 for whatever reason, and that can't be decoded by VirtualDub/AVISynth.
This commit is contained in:
feos 2019-10-05 23:29:55 +03:00
parent 3c6c94a04a
commit 5d03d5dde0
1 changed files with 1 additions and 0 deletions

View File

@ -191,6 +191,7 @@ bool FrameDump::CreateVideoFile()
s_codec_context->time_base.num = 1;
s_codec_context->time_base.den = VideoInterface::GetTargetRefreshRate();
s_codec_context->gop_size = 1;
s_codec_context->level = 1;
s_codec_context->pix_fmt = g_Config.bUseFFV1 ? AV_PIX_FMT_BGR0 : AV_PIX_FMT_YUV420P;
if (output_format->flags & AVFMT_GLOBALHEADER)