using MediaBrowser.Model.Entities; using MediaBrowser.Model.IO; using System.Collections.Generic; using System.IO; namespace MediaBrowser.Api.Playback { public class StreamState { public string RequestedUrl { get; set; } public StreamRequest Request { get; set; } public VideoStreamRequest VideoRequest { get { return (VideoStreamRequest) Request; } } /// /// Gets or sets the log file stream. /// /// The log file stream. public Stream LogFileStream { get; set; } public MediaStream AudioStream { get; set; } public MediaStream VideoStream { get; set; } public MediaStream SubtitleStream { get; set; } /// /// Gets or sets the iso mount. /// /// The iso mount. public IIsoMount IsoMount { get; set; } public string MediaPath { get; set; } public bool IsRemote { get; set; } public bool IsInputVideo { get; set; } public VideoType VideoType { get; set; } public IsoType? IsoType { get; set; } public List PlayableStreamFileNames { get; set; } public bool HasMediaStreams { get; set; } } }