aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/BaseStreamingService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-02-13 11:38:43 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-02-13 11:38:43 -0500
commitbe1ce0f80275a1718dc89dd65e2919e9eab8eb7b (patch)
tree68dc8095701f4b8c45a073c46f4097827e6627c3 /MediaBrowser.Api/Playback/BaseStreamingService.cs
parenteec9e0482525c400e9dc7cb17bc000434adba105 (diff)
convert static remote streaming to use internal interfaces
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs21
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;
+ }
+ }
}
}