mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
Changed RawVideoPipeDataWriter StreamFormat, Width, Height to be readonly
This commit is contained in:
parent
f132a3b731
commit
df63417e11
1 changed files with 3 additions and 3 deletions
|
@ -11,9 +11,9 @@ namespace FFMpegCore.FFMPEG.Pipes
|
|||
/// </summary>
|
||||
public class RawVideoPipeDataWriter : IPipeDataWriter
|
||||
{
|
||||
public string StreamFormat { get; set; }
|
||||
public int Width { get; set; }
|
||||
public int Height { get; set; }
|
||||
public string StreamFormat { get; private set; }
|
||||
public int Width { get; private set; }
|
||||
public int Height { get; private set; }
|
||||
public int FrameRate { get; set; } = 25;
|
||||
private IEnumerator<IVideoFrame> framesEnumerator;
|
||||
|
||||
|
|
Loading…
Reference in a new issue