Fix build and address comments

This commit is contained in:
Bond_009
2019-12-26 23:09:00 +01:00
committed by dkanada
parent aca31457c0
commit a253fa616d
9 changed files with 82 additions and 97 deletions

View File

@@ -2,14 +2,14 @@ using System.IO;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Model.MediaInfo;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Controller.MediaEncoding
{
public interface IAttachmentExtractor
{
Task<(MediaAttachment attachment, Stream stream)> GetAttachment(BaseItem item,
Task<(MediaAttachment attachment, Stream stream)> GetAttachment(
BaseItem item,
string mediaSourceId,
int attachmentStreamIndex,
CancellationToken cancellationToken);