diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-11 11:36:25 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-11 11:36:25 -0400 |
| commit | f5261fc4b7b78b5b7bfd9f0e78338f0905eb3bb5 (patch) | |
| tree | 5ffceeb4239ecd3be8cfe33bc31bd6c524886ace /MediaBrowser.Api/Playback/BaseStreamingService.cs | |
| parent | efef76424e6db71b139a13a51f56f043902b31de (diff) | |
extract nowplayingbar into standalone widget to work with any player
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
| -rw-r--r-- | MediaBrowser.Api/Playback/BaseStreamingService.cs | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs index 4b0406cde..d7f7e2f98 100644 --- a/MediaBrowser.Api/Playback/BaseStreamingService.cs +++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs @@ -1590,7 +1590,7 @@ namespace MediaBrowser.Api.Playback } } - return SupportsAutomaticVideoStreamCopy; + return request.EnableAutoStreamCopy; } private bool CanStreamCopyAudio(StreamRequest request, MediaStream audioStream, List<string> supportedAudioCodecs) @@ -1632,14 +1632,6 @@ namespace MediaBrowser.Api.Playback return true; } - protected virtual bool SupportsAutomaticVideoStreamCopy - { - get - { - return false; - } - } - private void ApplyDeviceProfileSettings(StreamState state) { var headers = new Dictionary<string, string>(); |
