From 2be322acbb59468d664cda7a7d3959211691332d Mon Sep 17 00:00:00 2001 From: esoptron <29593369+esoptron@users.noreply.github.com> Date: Fri, 22 Dec 2017 17:24:13 -0500 Subject: [PATCH] Disable Temporal Interpolation by default in internal FFmpeg core --- cores/libretro-ffmpeg/ffmpeg_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cores/libretro-ffmpeg/ffmpeg_core.c b/cores/libretro-ffmpeg/ffmpeg_core.c index 1842f59809..e7703702f5 100644 --- a/cores/libretro-ffmpeg/ffmpeg_core.c +++ b/cores/libretro-ffmpeg/ffmpeg_core.c @@ -272,7 +272,7 @@ void CORE_PREFIX(retro_set_environment)(retro_environment_t cb) { static const struct retro_variable vars[] = { #if defined(HAVE_OPENGL) || defined(HAVE_OPENGLES) - { "ffmpeg_temporal_interp", "Temporal Interpolation; enabled|disabled" }, + { "ffmpeg_temporal_interp", "Temporal Interpolation; disabled|enabled" }, #ifdef HAVE_GL_FFT { "ffmpeg_fft_resolution", "FFT Resolution; 1280x720|1920x1080|2560x1440|3840x2160|640x360|320x180" }, { "ffmpeg_fft_multisample", "FFT Multisample; 1x|2x|4x" },