mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
920 B
36 lines
920 B
using ErsatzTV.FFmpeg.Format; |
|
|
|
namespace ErsatzTV.FFmpeg.Encoder.Vaapi; |
|
|
|
public class EncoderMpeg2Vaapi : EncoderBase |
|
{ |
|
private readonly RateControlMode _rateControlMode; |
|
|
|
public EncoderMpeg2Vaapi(RateControlMode rateControlMode) => _rateControlMode = rateControlMode; |
|
|
|
public override string Name => "mpeg2_vaapi"; |
|
|
|
public override StreamKind Kind => StreamKind.Video; |
|
|
|
public override IList<string> OutputOptions |
|
{ |
|
get |
|
{ |
|
IList<string> result = base.OutputOptions; |
|
|
|
if (_rateControlMode == RateControlMode.CQP) |
|
{ |
|
result.Add("-rc_mode"); |
|
result.Add("1"); |
|
} |
|
|
|
return result; |
|
} |
|
} |
|
|
|
public override FrameState NextState(FrameState currentState) => currentState with |
|
{ |
|
VideoFormat = VideoFormat.Mpeg2Video |
|
// don't change the frame data location |
|
}; |
|
}
|
|
|