mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	gst: Don't reconnect gstpipewiresrc
Clients connecting via the gstreamer plugin can stall a stream when reconnecting to it. Disable reconnection until the gstreamer plugin has improved.
This commit is contained in:
		
							parent
							
								
									d28b36bb93
								
							
						
					
					
						commit
						2aabc4610b
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -714,7 +714,7 @@ gst_pipewire_src_negotiate (GstBaseSrc * basesrc)
 | 
				
			||||||
  pw_stream_connect (pwsrc->stream,
 | 
					  pw_stream_connect (pwsrc->stream,
 | 
				
			||||||
                     PW_DIRECTION_INPUT,
 | 
					                     PW_DIRECTION_INPUT,
 | 
				
			||||||
                     pwsrc->path ? (uint32_t)atoi(pwsrc->path) : PW_ID_ANY,
 | 
					                     pwsrc->path ? (uint32_t)atoi(pwsrc->path) : PW_ID_ANY,
 | 
				
			||||||
                     PW_STREAM_FLAG_AUTOCONNECT,
 | 
					                     PW_STREAM_FLAG_AUTOCONNECT | PW_STREAM_FLAG_DONT_RECONNECT,
 | 
				
			||||||
                     (const struct spa_pod **)possible->pdata,
 | 
					                     (const struct spa_pod **)possible->pdata,
 | 
				
			||||||
                     possible->len);
 | 
					                     possible->len);
 | 
				
			||||||
  g_ptr_array_free (possible, TRUE);
 | 
					  g_ptr_array_free (possible, TRUE);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue