mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
							parent
							
								
									b36543275f
								
							
						
					
					
						commit
						73117b079c
					
				@ -4317,14 +4317,18 @@ namespace MediaBrowser.Controller.MediaEncoding
 | 
			
		||||
        protected string GetHardwareVideoDecoder(EncodingJobInfo state, EncodingOptions options)
 | 
			
		||||
        {
 | 
			
		||||
            var videoStream = state.VideoStream;
 | 
			
		||||
            if (videoStream == null)
 | 
			
		||||
            var mediaSource = state.MediaSource;
 | 
			
		||||
            if (videoStream == null || mediaSource == null)
 | 
			
		||||
            {
 | 
			
		||||
                return null;
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // Only use alternative encoders for video files.
 | 
			
		||||
            var videoType = state.MediaSource.VideoType ?? VideoType.VideoFile;
 | 
			
		||||
            if (videoType != VideoType.VideoFile)
 | 
			
		||||
            // HWA decoders can handle both video files and video folders.
 | 
			
		||||
            var videoType = mediaSource.VideoType;
 | 
			
		||||
            if (videoType != VideoType.VideoFile
 | 
			
		||||
                && videoType != VideoType.Iso
 | 
			
		||||
                && videoType != VideoType.Dvd
 | 
			
		||||
                && videoType != VideoType.BluRay)
 | 
			
		||||
            {
 | 
			
		||||
                return null;
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user