mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-03 22:40:09 +00:00
EncodingHelper hwaccel pipelines refactor
separate the HW pipeline according to HWA method for maintainability.
This commit is contained in:
parent
976e3160b8
commit
4b9c84c52e
9 changed files with 2967 additions and 1730 deletions
|
|
@ -60,6 +60,24 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
/// <returns><c>true</c> if the filter is supported, <c>false</c> otherwise.</returns>
|
||||
bool SupportsFilterWithOption(FilterOptionType option);
|
||||
|
||||
/// <summary>
|
||||
/// Whether the configured Vaapi device is from AMD(radeonsi/r600 Mesa driver).
|
||||
/// </summary>
|
||||
/// <returns><c>true</c> if the Vaapi device is an AMD(radeonsi/r600 Mesa driver) GPU, <c>false</c> otherwise.</returns>
|
||||
bool IsVaapiDeviceAmd();
|
||||
|
||||
/// <summary>
|
||||
/// Whether the configured Vaapi device is from Intel(iHD driver).
|
||||
/// </summary>
|
||||
/// <returns><c>true</c> if the Vaapi device is an Intel(iHD driver) GPU, <c>false</c> otherwise.</returns>
|
||||
bool IsVaapiDeviceInteliHD();
|
||||
|
||||
/// <summary>
|
||||
/// Whether the configured Vaapi device is from Intel(legacy i965 driver).
|
||||
/// </summary>
|
||||
/// <returns><c>true</c> if the Vaapi device is an Intel(legacy i965 driver) GPU, <c>false</c> otherwise.</returns>
|
||||
bool IsVaapiDeviceInteli965();
|
||||
|
||||
/// <summary>
|
||||
/// Get the version of media encoder.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue