* 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
10 lines
261 B
C#
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);
|
|
}
|