diff options
| author | Tim Hobbs <jesus.tesh@gmail.com> | 2014-04-18 11:51:53 -0700 |
|---|---|---|
| committer | Tim Hobbs <jesus.tesh@gmail.com> | 2014-04-18 11:51:53 -0700 |
| commit | b0bab9299aba29fa64bd25b50fd0fb85c3509dc4 (patch) | |
| tree | bd54e8945bee9cc987e3e38720fe97eb435788d1 /MediaBrowser.Api/Playback/BaseStreamingService.cs | |
| parent | 1da36ba59d7449c0f6bf3bb83456fe0ac47a56b2 (diff) | |
| parent | 5170042eb5efee7be005dcc5aca863b66c23a6f2 (diff) | |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
| -rw-r--r-- | MediaBrowser.Api/Playback/BaseStreamingService.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs index 04deea3cf..ff9596757 100644 --- a/MediaBrowser.Api/Playback/BaseStreamingService.cs +++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs @@ -380,7 +380,7 @@ namespace MediaBrowser.Api.Playback if (isVc1) { - profileScore ++; + profileScore++; // Max of 2 profileScore = Math.Min(profileScore, 2); } @@ -445,7 +445,7 @@ namespace MediaBrowser.Api.Playback { if (state.AudioStream != null && state.AudioStream.Channels.HasValue && state.AudioStream.Channels.Value > 5) { - volParam = ",volume=2.000000"; + volParam = ",volume=" + ServerConfigurationManager.Configuration.DownMixAudioBoost.ToString(UsCulture); } } |
