decrease gop size (keyint)

this makes seeking a lot smoother (especially at high resolutions), while only adding less than 1% of filesize with this codec.
This commit is contained in:
feos 2019-03-11 01:30:12 +03:00
parent 005e60fa22
commit 7fd940411b
1 changed files with 1 additions and 1 deletions
Source/Core/VideoCommon

View File

@ -190,7 +190,7 @@ bool AVIDump::CreateVideoFile()
s_codec_context->height = s_height;
s_codec_context->time_base.num = 1;
s_codec_context->time_base.den = VideoInterface::GetTargetRefreshRate();
s_codec_context->gop_size = 12;
s_codec_context->gop_size = 1;
s_codec_context->pix_fmt = g_Config.bUseFFV1 ? AV_PIX_FMT_BGR0 : AV_PIX_FMT_YUV420P;
if (output_format->flags & AVFMT_GLOBALHEADER)