Browse Source

fix fallback filler looping (#1146)

pull/1147/head
Jason Dove 4 years ago committed by GitHub
parent
commit
93fc1e4eb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 2
      ErsatzTV.Core/FFmpeg/FFmpegLibraryProcessService.cs

1
CHANGELOG.md

@ -12,6 +12,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Fix MPEG2 video format with QSV and VAAPI acceleration - Fix MPEG2 video format with QSV and VAAPI acceleration
- Fix playback of content with undefined colorspace - Fix playback of content with undefined colorspace
- Fix NVIDIA color normalization with VP9 sources - Fix NVIDIA color normalization with VP9 sources
- Fix fallback filler looping
### Changed ### Changed
- Merge generated `Other Video` folder tags with tags from sidecar NFO - Merge generated `Other Video` folder tags with tags from sidecar NFO

2
ErsatzTV.Core/FFmpeg/FFmpegLibraryProcessService.cs

@ -216,7 +216,7 @@ public class FFmpegLibraryProcessService : IFFmpegProcessService
var desiredState = new FrameState( var desiredState = new FrameState(
playbackSettings.RealtimeOutput, playbackSettings.RealtimeOutput,
false, // TODO: fallback filler needs to loop fillerKind == FillerKind.Fallback,
videoFormat, videoFormat,
Optional(videoStream.Profile), Optional(videoStream.Profile),
Optional(desiredPixelFormat), Optional(desiredPixelFormat),

Loading…
Cancel
Save