From 7fd940411b375e2d7b17b6d219927842d95a1ee2 Mon Sep 17 00:00:00 2001 From: feos Date: Mon, 11 Mar 2019 01:30:12 +0300 Subject: [PATCH] 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. --- Source/Core/VideoCommon/AVIDump.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/AVIDump.cpp b/Source/Core/VideoCommon/AVIDump.cpp index 118c869b9a..5eaa31213c 100644 --- a/Source/Core/VideoCommon/AVIDump.cpp +++ b/Source/Core/VideoCommon/AVIDump.cpp @@ -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)