blob: 634e67e6dcfcdb00b2a8b73eb3c059fed26bce54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.FSE.Common.RemoteDesktop
{
public class VideoConfiguration
{
public int FrameWidth { get; set; }
public int FrameHeight { get; set; }
public double FrameRate { get; set; }
public VideoQuality Quality { get; set; }
public VideoConfiguration()
{
FrameWidth = 800;
FrameHeight = 1280;
FrameRate = 5;
Quality = VideoQuality.Low;
}
}
}
|