diff --git a/CHANGELOG.md b/CHANGELOG.md index a39418748..e89488e3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Unlock playout when playout build fails - Ignore errors deleting old HLS segments; this should improve stream reliability - Update show year when changed within Plex +- Fix crop scale mode with NVIDIA acceleration ### Changed - Upgrade from .NET 7 to .NET 8 diff --git a/ErsatzTV.FFmpeg/Pipeline/NvidiaPipelineBuilder.cs b/ErsatzTV.FFmpeg/Pipeline/NvidiaPipelineBuilder.cs index 338475371..1edb6cea9 100644 --- a/ErsatzTV.FFmpeg/Pipeline/NvidiaPipelineBuilder.cs +++ b/ErsatzTV.FFmpeg/Pipeline/NvidiaPipelineBuilder.cs @@ -160,6 +160,7 @@ public class NvidiaPipelineBuilder : SoftwarePipelineBuilder currentState = SetDeinterlace(videoInputFile, context, currentState); currentState = SetScale(videoInputFile, videoStream, context, ffmpegState, desiredState, currentState); currentState = SetPad(videoInputFile, videoStream, desiredState, currentState); + currentState = SetCrop(videoInputFile, desiredState, currentState); if (currentState.BitDepth == 8 && context.HasSubtitleOverlay || context.HasWatermark) {