handle bitrate overflow

This commit is contained in:
Luke Pulverenti
2017-01-03 00:15:59 -05:00
parent 4c08d26ad4
commit 6066619138
9 changed files with 27 additions and 29 deletions

View File

@@ -4,7 +4,7 @@ namespace Emby.Server.Implementations.Sync
{
public class SyncHelper
{
public static int? AdjustBitrate(int? profileBitrate, string quality)
public static long? AdjustBitrate(long? profileBitrate, string quality)
{
if (profileBitrate.HasValue)
{