mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 01:05:19 +03:00
34 lines
816 B
C#
34 lines
816 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Model.IO;
|
|
using File = TagLib.File;
|
|
|
|
namespace Emby.Photos
|
|
{
|
|
public class StreamFileAbstraction : File.IFileAbstraction
|
|
{
|
|
public StreamFileAbstraction(string name, Stream readStream)
|
|
{
|
|
// TODO: Fix deadlock when setting an actual writable Stream
|
|
WriteStream = readStream;
|
|
ReadStream = readStream;
|
|
Name = name;
|
|
}
|
|
|
|
public string Name { get; private set; }
|
|
|
|
public Stream ReadStream { get; private set; }
|
|
|
|
public Stream WriteStream { get; private set; }
|
|
|
|
public void CloseStream(Stream stream)
|
|
{
|
|
stream.Dispose();
|
|
}
|
|
}
|
|
}
|