Files
FileFlowsPlugins/VideoNodes/Helpers/VaapiHelper.cs
john 767aaac83b refactored video hw testing
removed obsolete plugins
2022-11-04 13:08:29 +13:00

11 lines
282 B
C#

namespace FileFlows.VideoNodes.Helpers;
/// <summary>
/// Helper for Vaapi
/// </summary>
class VaapiHelper
{
internal static bool VaapiLinux => OperatingSystem.IsLinux() && File.Exists(VaapiRenderDevice);
internal const string VaapiRenderDevice = "/dev/dri/renderD128";
}