mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
924 B
23 lines
924 B
namespace ErsatzTV.FFmpeg.Filter; |
|
|
|
public class HardwareUploadFilter : BaseFilter |
|
{ |
|
private readonly FFmpegState _ffmpegState; |
|
|
|
public HardwareUploadFilter(FFmpegState ffmpegState) => _ffmpegState = ffmpegState; |
|
|
|
public override string Filter => _ffmpegState.EncoderHardwareAccelerationMode switch |
|
{ |
|
HardwareAccelerationMode.None => string.Empty, |
|
HardwareAccelerationMode.Nvenc => "hwupload_cuda", |
|
HardwareAccelerationMode.Qsv => $"hwupload=extra_hw_frames={_ffmpegState.QsvExtraHardwareFrames}", |
|
HardwareAccelerationMode.Vaapi => "format=nv12|p010le|vaapi,hwupload", |
|
_ => "hwupload" |
|
}; |
|
|
|
public override FrameState NextState(FrameState currentState) => _ffmpegState.EncoderHardwareAccelerationMode switch |
|
{ |
|
HardwareAccelerationMode.None => currentState, |
|
_ => currentState with { FrameDataLocation = FrameDataLocation.Hardware } |
|
}; |
|
}
|
|
|