use shared usersettings

This commit is contained in:
Luke Pulverenti 2016-03-01 23:46:10 -05:00
parent b2d922e305
commit e52eb2219b

View file

@ -10,11 +10,11 @@ namespace MediaBrowser.Server.Implementations.Sync
{
if (string.Equals(quality, "medium", StringComparison.OrdinalIgnoreCase))
{
profileBitrate = Math.Min(Convert.ToInt32(profileBitrate.Value * .7), 4000000);
profileBitrate = Math.Min(profileBitrate.Value, 4000000);
}
else if (string.Equals(quality, "low", StringComparison.OrdinalIgnoreCase))
{
profileBitrate = Math.Min(Convert.ToInt32(profileBitrate.Value * .5), 1500000);
profileBitrate = Math.Min(profileBitrate.Value, 1500000);
}
}