* add qsv transcoding support * add basic nvenc support * add nvenc to docker-compose * add vaapi hardware acceleration * add vaapi driver to dockerfile * raise ffmpeg log level * lots of progress with nvenc, qsv and vaapi remain untested * qsv fixes * code cleanup
11 lines
163 B
C#
11 lines
163 B
C#
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public enum HardwareAccelerationKind
|
|
{
|
|
None = 0,
|
|
Qsv = 1,
|
|
Nvenc = 2,
|
|
Vaapi = 3
|
|
}
|
|
}
|