* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
17 lines
463 B
C#
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); |