fix thread sync bug in hls segmenter (#676)

This commit is contained in:
Jason Dove
2022-03-05 11:26:29 -06:00
committed by GitHub
parent 6c06fbe621
commit a2e7e6df1e
5 changed files with 96 additions and 48 deletions
@@ -1,7 +1,10 @@
namespace ErsatzTV.Core.Interfaces.FFmpeg;
using ErsatzTV.Core.FFmpeg;
namespace ErsatzTV.Core.Interfaces.FFmpeg;
public interface IHlsSessionWorker
{
DateTimeOffset PlaylistStart { get; }
void Touch();
Task<Option<TrimPlaylistResult>> TrimPlaylist(DateTimeOffset filterBefore, CancellationToken cancellationToken);
}