Files
ersatztv/ErsatzTV.FFmpeg/FrameState.cs
T
Jason DoveandGitHub 1ab98578ab refactor namespaces and imports (#670)
* re-namespace

* optimize usings

* more usings

* more of the same

* more implicit/global usings

* cleanup all usings

* minor fixes
2022-03-03 15:36:07 -06:00

17 lines
463 B
C#

using ErsatzTV.FFmpeg.Format;
namespace ErsatzTV.FFmpeg;
public record FrameState(
bool Realtime,
bool InfiniteLoop,
string VideoFormat,
Option<IPixelFormat> PixelFormat,
FrameSize ScaledSize,
FrameSize PaddedSize,
Option<int> FrameRate,
Option<int> VideoBitrate,
Option<int> VideoBufferSize,
Option<int> VideoTrackTimeScale,
bool Deinterlaced,
FrameDataLocation FrameDataLocation = FrameDataLocation.Unknown);