Correct spacing

This commit is contained in:
gdkchan 2018-10-21 19:02:36 -03:00
parent 4aa9ace3e3
commit 3c1e0c904a

View file

@ -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);