From c873b3838717a4a144a4d0357a7115acf59097d3 Mon Sep 17 00:00:00 2001 From: xperia64 Date: Thu, 11 Jun 2020 22:05:29 -0400 Subject: [PATCH] Update codec information --- src/core/dumping/ffmpeg_backend.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/dumping/ffmpeg_backend.cpp b/src/core/dumping/ffmpeg_backend.cpp index 41dbd5954..dc7928fe0 100644 --- a/src/core/dumping/ffmpeg_backend.cpp +++ b/src/core/dumping/ffmpeg_backend.cpp @@ -128,8 +128,8 @@ bool FFmpegVideoStream::Init(FFmpegMuxer& muxer, const Layout::FramebufferLayout // TODO(xperia64): While these numbers from core timing work fine, certain video codecs do not // support the strange resulting timebase (280071/16756991); Addressing this issue would require // resampling the video - // Known working: mjpeg, libx264 - // Known not working: mpeg2, mpeg4 + // List of codecs known broken by this change: mpeg1, mpeg2, mpeg4, libxvid + // See https://github.com/citra-emu/citra/pull/5273#issuecomment-643023325 for more information codec_context->time_base.num = static_cast(GPU::frame_ticks); codec_context->time_base.den = static_cast(BASE_CLOCK_RATE_ARM11); codec_context->gop_size = 12;