diff options
| author | Bond-009 <bond.009@outlook.com> | 2025-03-30 23:12:53 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-30 23:12:53 +0200 |
| commit | 476a0d6932aa5a2ffee9b5849dc9d042684b39cc (patch) | |
| tree | 2553f02bebbe0a4801be5824cffbb1798c642377 /MediaBrowser.Controller/MediaEncoding/IMediaEncoder.cs | |
| parent | d75216cf3a9bb3f869415bed829dca996f4ee7c9 (diff) | |
| parent | c69e9d8f2cac26a832f0ee09bed2809aae1872bf (diff) | |
Merge pull request #13194 from gnattu/av1-videotoolbox
Enable VideoToolbox AV1 decode
Diffstat (limited to 'MediaBrowser.Controller/MediaEncoding/IMediaEncoder.cs')
| -rw-r--r-- | MediaBrowser.Controller/MediaEncoding/IMediaEncoder.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/MediaEncoding/IMediaEncoder.cs b/MediaBrowser.Controller/MediaEncoding/IMediaEncoder.cs index c767b4a51..a60f52340 100644 --- a/MediaBrowser.Controller/MediaEncoding/IMediaEncoder.cs +++ b/MediaBrowser.Controller/MediaEncoding/IMediaEncoder.cs @@ -76,6 +76,12 @@ namespace MediaBrowser.Controller.MediaEncoding bool IsVaapiDeviceSupportVulkanDrmInterop { get; } /// <summary> + /// Gets a value indicating whether av1 decoding is available via VideoToolbox. + /// </summary> + /// <value><c>true</c> if the av1 is available via VideoToolbox, <c>false</c> otherwise.</value> + bool IsVideoToolboxAv1DecodeAvailable { get; } + + /// <summary> /// Whether given encoder codec is supported. /// </summary> /// <param name="encoder">The encoder.</param> |
