mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	pw_core -> pw_context
The proxy API is the one that we would like to expose for applications and the other API is used internally when implementing modules or factories. The current pw_core object is really a context for all objects so name it that way. It also makes it possible to rename pw_core_proxy to pw_proxy later.
This commit is contained in:
		
							parent
							
								
									42103a8218
								
							
						
					
					
						commit
						8ea78c2e3f
					
				
					 113 changed files with 905 additions and 906 deletions
				
			
		| 
						 | 
				
			
			@ -294,7 +294,7 @@ static int endpoint_link_bind(void *_data, struct pw_client *client,
 | 
			
		|||
int endpoint_link_init(struct endpoint_link *this,
 | 
			
		||||
		uint32_t id, uint32_t session_id,
 | 
			
		||||
		struct client_session *client_sess,
 | 
			
		||||
		struct pw_core *core,
 | 
			
		||||
		struct pw_context *context,
 | 
			
		||||
		struct pw_properties *properties)
 | 
			
		||||
{
 | 
			
		||||
	pw_log_debug(NAME" %p: new", this);
 | 
			
		||||
| 
						 | 
				
			
			@ -309,7 +309,7 @@ int endpoint_link_init(struct endpoint_link *this,
 | 
			
		|||
	if (!properties)
 | 
			
		||||
		goto no_mem;
 | 
			
		||||
 | 
			
		||||
	this->global = pw_global_new (core,
 | 
			
		||||
	this->global = pw_global_new(context,
 | 
			
		||||
			PW_TYPE_INTERFACE_EndpointLink,
 | 
			
		||||
			PW_VERSION_ENDPOINT_LINK_PROXY,
 | 
			
		||||
			properties, endpoint_link_bind, this);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue