diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-01-03 00:15:59 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-01-03 00:15:59 -0500 |
| commit | 60666191387b0ebdb12d2fb7b18018a2cc922087 (patch) | |
| tree | 051fac59cc6b8871042b27eaea52d8897d71551e /Emby.Server.Implementations | |
| parent | 4c08d26ad43de931223cf349729d7cf57e22bbc1 (diff) | |
handle bitrate overflow
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/Sync/SyncHelper.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Sync/SyncHelper.cs b/Emby.Server.Implementations/Sync/SyncHelper.cs index da475f003..7fe703796 100644 --- a/Emby.Server.Implementations/Sync/SyncHelper.cs +++ b/Emby.Server.Implementations/Sync/SyncHelper.cs @@ -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) { |
