mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	pulse-server: always asks for more data when underrun
Even when prebuffer is active, we need to ask for more data to resolve the underrun.
This commit is contained in:
		
							parent
							
								
									97cad7284a
								
							
						
					
					
						commit
						1b94b66924
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -1241,7 +1241,6 @@ static void stream_process(void *data)
 | 
			
		|||
				pd.underrun = true;
 | 
			
		||||
			}
 | 
			
		||||
			if (stream->attr.prebuf == 0 && !stream->corked) {
 | 
			
		||||
				pd.missing = size;
 | 
			
		||||
				pd.playing_for = size;
 | 
			
		||||
				if (avail > 0) {
 | 
			
		||||
					index += avail;
 | 
			
		||||
| 
						 | 
				
			
			@ -1249,8 +1248,9 @@ static void stream_process(void *data)
 | 
			
		|||
				}
 | 
			
		||||
				spa_ringbuffer_read_update(&stream->ring, index);
 | 
			
		||||
			}
 | 
			
		||||
			pw_log_debug("%p: [%s] underrun read:%u avail:%d max:%u",
 | 
			
		||||
					stream, client->name, index, avail, minreq);
 | 
			
		||||
			pd.missing = size;
 | 
			
		||||
			pw_log_debug("%p: [%s] underrun read:%u avail:%d max:%u size:%u missing:%u",
 | 
			
		||||
					stream, client->name, index, avail, minreq, size, pd.missing);
 | 
			
		||||
		} else {
 | 
			
		||||
			if (avail > (int32_t)stream->attr.maxlength) {
 | 
			
		||||
				uint32_t skip = avail - stream->attr.maxlength;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue