aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/BaseStreamingService.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-12-26 12:48:24 -0500
committerGitHub <noreply@github.com>2016-12-26 12:48:24 -0500
commit6a89ec6556b47f46b6a87240a82bc872fed5a972 (patch)
tree3485585ebd551109e7dbfb61a587f7cf6c0b72e3 /MediaBrowser.Api/Playback/BaseStreamingService.cs
parenta8381586237a3294476c55b3af63cb7c162adfea (diff)
parent325066f7edb52481e93be3b3d90db45645d6924b (diff)
Merge pull request #2366 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs
index 6545d995c..5e450567a 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -1467,7 +1467,7 @@ namespace MediaBrowser.Api.Playback
}
// h264
- return string.Format(" -b:v {0} -maxrate {0} -bufsize {1}",
+ return string.Format(" -maxrate {0} -bufsize {1}",
bitrate.Value.ToString(UsCulture),
(bitrate.Value * 2).ToString(UsCulture));
}