From 3c1e0c904a6a2ef516671ed3b7078c272f487528 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Sun, 21 Oct 2018 19:02:36 -0300 Subject: [PATCH] Correct spacing --- Ryujinx.Graphics/VideoDecoding/FFmpeg.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Ryujinx.Graphics/VideoDecoding/FFmpeg.cs b/Ryujinx.Graphics/VideoDecoding/FFmpeg.cs index 24e108a8a2..d980b89710 100644 --- a/Ryujinx.Graphics/VideoDecoding/FFmpeg.cs +++ b/Ryujinx.Graphics/VideoDecoding/FFmpeg.cs @@ -33,9 +33,9 @@ namespace Ryujinx.Graphics.VideoDecoding Uninitialize(); } - Codec = ffmpeg.avcodec_find_decoder(CodecId); - Context = ffmpeg.avcodec_alloc_context3(Codec); - Frame = ffmpeg.av_frame_alloc(); + Codec = ffmpeg.avcodec_find_decoder(CodecId); + Context = ffmpeg.avcodec_alloc_context3(Codec); + Frame = ffmpeg.av_frame_alloc(); ffmpeg.avcodec_open2(Context, Codec, null);