mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			718 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			718 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
 | 
						|
namespace Emby.Server.Implementations.Sync
 | 
						|
{
 | 
						|
    public class SyncHelper
 | 
						|
    {
 | 
						|
        public static int? AdjustBitrate(int? profileBitrate, string quality)
 | 
						|
        {
 | 
						|
            if (profileBitrate.HasValue)
 | 
						|
            {
 | 
						|
                if (string.Equals(quality, "medium", StringComparison.OrdinalIgnoreCase))
 | 
						|
                {
 | 
						|
                    profileBitrate = Math.Min(profileBitrate.Value, 4000000);
 | 
						|
                }
 | 
						|
                else if (string.Equals(quality, "low", StringComparison.OrdinalIgnoreCase))
 | 
						|
                {
 | 
						|
                    profileBitrate = Math.Min(profileBitrate.Value, 1500000);
 | 
						|
                }
 | 
						|
            }
 | 
						|
 | 
						|
            return profileBitrate;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |