* 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
11 lines
254 B
C#
11 lines
254 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace ErsatzTV.FFmpeg.Runtime;
|
|
|
|
public interface IRuntimeInfo
|
|
{
|
|
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
|
bool IsOSPlatform(OSPlatform osPlatform);
|
|
}
|