mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	loop: fix clang compilation
This commit is contained in:
		
							parent
							
								
									0b87144d26
								
							
						
					
					
						commit
						eb33145691
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
					@ -228,10 +228,11 @@ loop_invoke(void *object,
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct impl *impl = object;
 | 
						struct impl *impl = object;
 | 
				
			||||||
	struct invoke_item *item;
 | 
						struct invoke_item *item;
 | 
				
			||||||
	int res;
 | 
						int res, suppressed;
 | 
				
			||||||
	int32_t filled;
 | 
						int32_t filled;
 | 
				
			||||||
	uint32_t avail, idx, offset, l0;
 | 
						uint32_t avail, idx, offset, l0;
 | 
				
			||||||
	size_t need;
 | 
						size_t need;
 | 
				
			||||||
 | 
						uint64_t nsec;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* the ringbuffer can only be written to from one thread, if we are
 | 
						/* the ringbuffer can only be written to from one thread, if we are
 | 
				
			||||||
	 * in the same thread as the loop, don't write into the ringbuffer
 | 
						 * in the same thread as the loop, don't write into the ringbuffer
 | 
				
			||||||
| 
						 | 
					@ -311,8 +312,7 @@ retry:
 | 
				
			||||||
	return res;
 | 
						return res;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
xrun:
 | 
					xrun:
 | 
				
			||||||
	int suppressed;
 | 
						nsec = get_time_ns(impl->system);
 | 
				
			||||||
	uint64_t nsec = get_time_ns(impl->system);
 | 
					 | 
				
			||||||
	if ((suppressed = spa_ratelimit_test(&impl->rate_limit, nsec)) >= 0) {
 | 
						if ((suppressed = spa_ratelimit_test(&impl->rate_limit, nsec)) >= 0) {
 | 
				
			||||||
		spa_log_warn(impl->log, "%p: queue full %d, need %zd (%d suppressed)",
 | 
							spa_log_warn(impl->log, "%p: queue full %d, need %zd (%d suppressed)",
 | 
				
			||||||
				impl, avail, need, suppressed);
 | 
									impl, avail, need, suppressed);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue