Files
ersatztv/ErsatzTV.Infrastructure/Runtime/RuntimeInfo.cs
T
Jason DoveandGitHub d669e8114b more scaling fixes (#948)
* remove force_original_aspect_ratio from scale_cuda

* remove force_original_aspect_ratio from scale_cuda

* fix qsv scaling

* fix qsv scaling on linux

* fix vaapi scaling edge cases

* update changelog
2022-09-03 20:28:18 -05:00

10 lines
261 B
C#

using System.Runtime.InteropServices;
using ErsatzTV.FFmpeg.Runtime;
namespace ErsatzTV.Infrastructure.Runtime;
public class RuntimeInfo : IRuntimeInfo
{
public bool IsOSPlatform(OSPlatform osPlatform) => RuntimeInformation.IsOSPlatform(osPlatform);
}