mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	minor changes
This commit is contained in:
		
							parent
							
								
									e0ee61d114
								
							
						
					
					
						commit
						dd3f3089ef
					
				@ -1587,7 +1587,7 @@ namespace MediaBrowser.Controller.MediaEncoding
 | 
				
			|||||||
                // For VAAPI and CUVID decoder
 | 
					                // For VAAPI and CUVID decoder
 | 
				
			||||||
                // these encoders cannot automatically adjust the size of graphical subtitles to fit the output video,
 | 
					                // these encoders cannot automatically adjust the size of graphical subtitles to fit the output video,
 | 
				
			||||||
                // thus needs to be manually adjusted.
 | 
					                // thus needs to be manually adjusted.
 | 
				
			||||||
                if (string.Equals(options.HardwareAccelerationType, "vaapi", StringComparison.OrdinalIgnoreCase)
 | 
					                if ((IsVaapiSupported(state) && string.Equals(options.HardwareAccelerationType, "vaapi", StringComparison.OrdinalIgnoreCase))
 | 
				
			||||||
                    || (videoDecoder ?? string.Empty).IndexOf("cuvid", StringComparison.OrdinalIgnoreCase) != -1)
 | 
					                    || (videoDecoder ?? string.Empty).IndexOf("cuvid", StringComparison.OrdinalIgnoreCase) != -1)
 | 
				
			||||||
                {
 | 
					                {
 | 
				
			||||||
                    var videoStream = state.VideoStream;
 | 
					                    var videoStream = state.VideoStream;
 | 
				
			||||||
@ -1996,7 +1996,7 @@ namespace MediaBrowser.Controller.MediaEncoding
 | 
				
			|||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            // If we're hardware VAAPI decoding and software encoding, download frames from the decoder first
 | 
					            // If we're hardware VAAPI decoding and software encoding, download frames from the decoder first
 | 
				
			||||||
            else if (IsVaapiSupported(state) && (videoDecoder ?? string.Empty).IndexOf("vaapi", StringComparison.OrdinalIgnoreCase) != -1
 | 
					            else if (IsVaapiSupported(state) && string.Equals(options.HardwareAccelerationType, "vaapi", StringComparison.OrdinalIgnoreCase)
 | 
				
			||||||
                && string.Equals(outputVideoCodec, "libx264", StringComparison.OrdinalIgnoreCase))
 | 
					                && string.Equals(outputVideoCodec, "libx264", StringComparison.OrdinalIgnoreCase))
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
                var codec = videoStream.Codec.ToLowerInvariant();
 | 
					                var codec = videoStream.Codec.ToLowerInvariant();
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user