diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-13 11:38:43 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-13 11:38:43 -0500 |
| commit | be1ce0f80275a1718dc89dd65e2919e9eab8eb7b (patch) | |
| tree | 68dc8095701f4b8c45a073c46f4097827e6627c3 /MediaBrowser.Api/Playback/BaseStreamingService.cs | |
| parent | eec9e0482525c400e9dc7cb17bc000434adba105 (diff) | |
convert static remote streaming to use internal interfaces
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
| -rw-r--r-- | MediaBrowser.Api/Playback/BaseStreamingService.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs index fa4969878..5705d4cd8 100644 --- a/MediaBrowser.Api/Playback/BaseStreamingService.cs +++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs @@ -1222,6 +1222,27 @@ namespace MediaBrowser.Api.Playback { request.AudioChannels = int.Parse(val, UsCulture); } + else if (i == 8) + { + if (videoRequest != null) + { + request.StartTimeTicks = long.Parse(val, UsCulture); + } + } + else if (i == 9) + { + if (videoRequest != null) + { + videoRequest.Profile = val; + } + } + else if (i == 10) + { + if (videoRequest != null) + { + videoRequest.Level = val; + } + } } } |
