* add transcoding tests * dont use full paths for transcoding tests * add error details * use 1-second videos for transcoding tests * vaapi fixes * include format in scale_vaapi * more vaapi fixes * unsupported errors * fix unsupported checks * maybe not failure? * fix formatting * ignore nvdec warnings * update changelog * fix tests
15 lines
356 B
C#
15 lines
356 B
C#
using ErsatzTV.Core.Interfaces.FFmpeg;
|
|
|
|
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public class Resolution : IDisplaySize
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public int Height { get; set; }
|
|
public int Width { get; set; }
|
|
|
|
public override string ToString() => $"{Width}x{Height}";
|
|
}
|
|
}
|