code cleanup (#743)

* update tools

* run code cleanup

* update dependencies
This commit is contained in:
Jason Dove
2022-04-19 17:47:18 -05:00
committed by GitHub
parent e250e93a8e
commit c02b83d0d6
1223 changed files with 5487 additions and 5547 deletions
+3 -1
View File
@@ -4,7 +4,9 @@ namespace ErsatzTV.FFmpeg.Encoder;
public class EncoderMpeg2Video : EncoderBase
{
public override FrameState NextState(FrameState currentState) => currentState with { VideoFormat = VideoFormat.Mpeg2Video };
public override string Name => "mpeg2video";
public override StreamKind Kind => StreamKind.Video;
public override FrameState NextState(FrameState currentState) =>
currentState with { VideoFormat = VideoFormat.Mpeg2Video };
}