mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-01 15:59:29 -06:00
11 lines
292 B
C#
11 lines
292 B
C#
namespace FileFlows.VideoNodes.Helpers;
|
|
|
|
/// <summary>
|
|
/// Helper for Vaapi
|
|
/// </summary>
|
|
class VaapiHelper
|
|
{
|
|
internal static bool VaapiLinux => OperatingSystem.IsLinux() && System.IO.File.Exists(VaapiRenderDevice);
|
|
|
|
internal const string VaapiRenderDevice = "/dev/dri/renderD128";
|
|
} |