mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	v4l2: remove format checks
When a caller sets a format, we do this regardless of the currently configured format.
This commit is contained in:
		
							parent
							
								
									6e74edc14e
								
							
						
					
					
						commit
						67b692396b
					
				
					 1 changed files with 0 additions and 19 deletions
				
			
		| 
						 | 
				
			
			@ -603,33 +603,14 @@ static int port_set_format(void *object,
 | 
			
		|||
				spa_log_error(this->log, "can't parse video raw");
 | 
			
		||||
				return -EINVAL;
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			if (port->have_format && info.media_type == port->current_format.media_type &&
 | 
			
		||||
			    info.media_subtype == port->current_format.media_subtype &&
 | 
			
		||||
			    info.info.raw.format == port->current_format.info.raw.format &&
 | 
			
		||||
			    info.info.raw.size.width == port->current_format.info.raw.size.width &&
 | 
			
		||||
			    info.info.raw.size.height == port->current_format.info.raw.size.height)
 | 
			
		||||
				return 0;
 | 
			
		||||
			break;
 | 
			
		||||
		case SPA_MEDIA_SUBTYPE_mjpg:
 | 
			
		||||
			if (spa_format_video_mjpg_parse(format, &info.info.mjpg) < 0)
 | 
			
		||||
				return -EINVAL;
 | 
			
		||||
 | 
			
		||||
			if (port->have_format && info.media_type == port->current_format.media_type &&
 | 
			
		||||
			    info.media_subtype == port->current_format.media_subtype &&
 | 
			
		||||
			    info.info.mjpg.size.width == port->current_format.info.mjpg.size.width &&
 | 
			
		||||
			    info.info.mjpg.size.height == port->current_format.info.mjpg.size.height)
 | 
			
		||||
				return 0;
 | 
			
		||||
			break;
 | 
			
		||||
		case SPA_MEDIA_SUBTYPE_h264:
 | 
			
		||||
			if (spa_format_video_h264_parse(format, &info.info.h264) < 0)
 | 
			
		||||
				return -EINVAL;
 | 
			
		||||
 | 
			
		||||
			if (port->have_format && info.media_type == port->current_format.media_type &&
 | 
			
		||||
			    info.media_subtype == port->current_format.media_subtype &&
 | 
			
		||||
			    info.info.h264.size.width == port->current_format.info.h264.size.width &&
 | 
			
		||||
			    info.info.h264.size.height == port->current_format.info.h264.size.height)
 | 
			
		||||
				return 0;
 | 
			
		||||
			break;
 | 
			
		||||
		default:
 | 
			
		||||
			return -EINVAL;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue