mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	pw_endpoint_stream_proxy -> pw_endpoint_stream
This commit is contained in:
		
							parent
							
								
									9b53c65c72
								
							
						
					
					
						commit
						3805d5dfa2
					
				
					 5 changed files with 58 additions and 58 deletions
				
			
		| 
						 | 
				
			
			@ -47,7 +47,7 @@ struct resource_data {
 | 
			
		|||
};
 | 
			
		||||
 | 
			
		||||
#define pw_endpoint_stream_resource(r,m,v,...)	\
 | 
			
		||||
	pw_resource_call(r,struct pw_endpoint_stream_proxy_events,m,v,__VA_ARGS__)
 | 
			
		||||
	pw_resource_call(r,struct pw_endpoint_stream_events,m,v,__VA_ARGS__)
 | 
			
		||||
#define pw_endpoint_stream_resource_info(r,...)	\
 | 
			
		||||
	pw_endpoint_stream_resource(r,info,0,__VA_ARGS__)
 | 
			
		||||
#define pw_endpoint_stream_resource_param(r,...)	\
 | 
			
		||||
| 
						 | 
				
			
			@ -123,8 +123,8 @@ static int endpoint_stream_set_param (void *object, uint32_t id, uint32_t flags,
 | 
			
		|||
	return 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static const struct pw_endpoint_stream_proxy_methods methods = {
 | 
			
		||||
	PW_VERSION_ENDPOINT_STREAM_PROXY_METHODS,
 | 
			
		||||
static const struct pw_endpoint_stream_methods methods = {
 | 
			
		||||
	PW_VERSION_ENDPOINT_STREAM_METHODS,
 | 
			
		||||
	.subscribe_params = endpoint_stream_subscribe_params,
 | 
			
		||||
	.enum_params = endpoint_stream_enum_params,
 | 
			
		||||
	.set_param = endpoint_stream_set_param,
 | 
			
		||||
| 
						 | 
				
			
			@ -293,7 +293,7 @@ int endpoint_stream_init(struct endpoint_stream *this,
 | 
			
		|||
 | 
			
		||||
	this->global = pw_global_new (context,
 | 
			
		||||
			PW_TYPE_INTERFACE_EndpointStream,
 | 
			
		||||
			PW_VERSION_ENDPOINT_STREAM_PROXY,
 | 
			
		||||
			PW_VERSION_ENDPOINT_STREAM,
 | 
			
		||||
			properties, endpoint_stream_bind, this);
 | 
			
		||||
	if (!this->global)
 | 
			
		||||
		goto no_mem;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1245,7 +1245,7 @@ static void endpoint_stream_marshal_info (void *object,
 | 
			
		|||
	struct spa_pod_builder *b;
 | 
			
		||||
 | 
			
		||||
	b = pw_protocol_native_begin_resource(resource,
 | 
			
		||||
		PW_ENDPOINT_STREAM_PROXY_EVENT_INFO, NULL);
 | 
			
		||||
		PW_ENDPOINT_STREAM_EVENT_INFO, NULL);
 | 
			
		||||
 | 
			
		||||
	marshal_pw_endpoint_stream_info(b, info);
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -1260,7 +1260,7 @@ static void endpoint_stream_marshal_param (void *object, int seq, uint32_t id,
 | 
			
		|||
	struct spa_pod_builder *b;
 | 
			
		||||
 | 
			
		||||
	b = pw_protocol_native_begin_resource(resource,
 | 
			
		||||
		PW_ENDPOINT_STREAM_PROXY_EVENT_PARAM, NULL);
 | 
			
		||||
		PW_ENDPOINT_STREAM_EVENT_PARAM, NULL);
 | 
			
		||||
 | 
			
		||||
	spa_pod_builder_add_struct(b,
 | 
			
		||||
				SPA_POD_Int(seq),
 | 
			
		||||
| 
						 | 
				
			
			@ -1274,7 +1274,7 @@ static void endpoint_stream_marshal_param (void *object, int seq, uint32_t id,
 | 
			
		|||
 | 
			
		||||
static int endpoint_stream_marshal_add_listener(void *object,
 | 
			
		||||
			struct spa_hook *listener,
 | 
			
		||||
			const struct pw_endpoint_stream_proxy_events *events,
 | 
			
		||||
			const struct pw_endpoint_stream_events *events,
 | 
			
		||||
			void *data)
 | 
			
		||||
{
 | 
			
		||||
	struct pw_proxy *proxy = object;
 | 
			
		||||
| 
						 | 
				
			
			@ -1289,7 +1289,7 @@ static int endpoint_stream_marshal_subscribe_params(void *object,
 | 
			
		|||
	struct spa_pod_builder *b;
 | 
			
		||||
 | 
			
		||||
	b = pw_protocol_native_begin_proxy(proxy,
 | 
			
		||||
		PW_ENDPOINT_STREAM_PROXY_METHOD_SUBSCRIBE_PARAMS, NULL);
 | 
			
		||||
		PW_ENDPOINT_STREAM_METHOD_SUBSCRIBE_PARAMS, NULL);
 | 
			
		||||
 | 
			
		||||
	spa_pod_builder_add_struct(b,
 | 
			
		||||
			SPA_POD_Array(sizeof(uint32_t), SPA_TYPE_Id, n_ids, ids));
 | 
			
		||||
| 
						 | 
				
			
			@ -1307,7 +1307,7 @@ static int endpoint_stream_marshal_enum_params(void *object,
 | 
			
		|||
	struct spa_pod_builder *b;
 | 
			
		||||
 | 
			
		||||
	b = pw_protocol_native_begin_proxy(proxy,
 | 
			
		||||
		PW_ENDPOINT_STREAM_PROXY_METHOD_ENUM_PARAMS, &msg);
 | 
			
		||||
		PW_ENDPOINT_STREAM_METHOD_ENUM_PARAMS, &msg);
 | 
			
		||||
 | 
			
		||||
	spa_pod_builder_add_struct(b,
 | 
			
		||||
			SPA_POD_Int(SPA_RESULT_RETURN_ASYNC(msg->seq)),
 | 
			
		||||
| 
						 | 
				
			
			@ -1327,7 +1327,7 @@ static int endpoint_stream_marshal_set_param(void *object,
 | 
			
		|||
	struct spa_pod_builder *b;
 | 
			
		||||
 | 
			
		||||
	b = pw_protocol_native_begin_proxy(proxy,
 | 
			
		||||
		PW_ENDPOINT_STREAM_PROXY_METHOD_SET_PARAM, NULL);
 | 
			
		||||
		PW_ENDPOINT_STREAM_METHOD_SET_PARAM, NULL);
 | 
			
		||||
 | 
			
		||||
	spa_pod_builder_add_struct(b,
 | 
			
		||||
			SPA_POD_Id(id),
 | 
			
		||||
| 
						 | 
				
			
			@ -1350,7 +1350,7 @@ static int endpoint_stream_demarshal_info(void *object,
 | 
			
		|||
 | 
			
		||||
	demarshal_pw_endpoint_stream_info(&prs, &f, &info);
 | 
			
		||||
 | 
			
		||||
	return pw_proxy_notify(proxy, struct pw_endpoint_stream_proxy_events,
 | 
			
		||||
	return pw_proxy_notify(proxy, struct pw_endpoint_stream_events,
 | 
			
		||||
				info, 0, &info);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -1372,7 +1372,7 @@ static int endpoint_stream_demarshal_param(void *object,
 | 
			
		|||
				SPA_POD_Pod(¶m)) < 0)
 | 
			
		||||
		return -EINVAL;
 | 
			
		||||
 | 
			
		||||
	return pw_proxy_notify(proxy, struct pw_endpoint_stream_proxy_events,
 | 
			
		||||
	return pw_proxy_notify(proxy, struct pw_endpoint_stream_events,
 | 
			
		||||
				param, 0, seq, id, index, next, param);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -1392,7 +1392,7 @@ static int endpoint_stream_demarshal_subscribe_params(void *object,
 | 
			
		|||
	if (ctype != SPA_TYPE_Id)
 | 
			
		||||
		return -EINVAL;
 | 
			
		||||
 | 
			
		||||
	return pw_resource_notify(resource, struct pw_endpoint_stream_proxy_methods,
 | 
			
		||||
	return pw_resource_notify(resource, struct pw_endpoint_stream_methods,
 | 
			
		||||
				subscribe_params, 0, ids, n_ids);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -1414,7 +1414,7 @@ static int endpoint_stream_demarshal_enum_params(void *object,
 | 
			
		|||
				SPA_POD_Pod(&filter)) < 0)
 | 
			
		||||
		return -EINVAL;
 | 
			
		||||
 | 
			
		||||
	return pw_resource_notify(resource, struct pw_endpoint_stream_proxy_methods,
 | 
			
		||||
	return pw_resource_notify(resource, struct pw_endpoint_stream_methods,
 | 
			
		||||
				enum_params, 0, seq, id, index, num, filter);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -1433,25 +1433,25 @@ static int endpoint_stream_demarshal_set_param(void *object,
 | 
			
		|||
				SPA_POD_Pod(¶m)) < 0)
 | 
			
		||||
		return -EINVAL;
 | 
			
		||||
 | 
			
		||||
	return pw_resource_notify(resource, struct pw_endpoint_stream_proxy_methods,
 | 
			
		||||
	return pw_resource_notify(resource, struct pw_endpoint_stream_methods,
 | 
			
		||||
				set_param, 0, id, flags, param);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static const struct pw_endpoint_stream_proxy_events pw_protocol_native_endpoint_stream_event_marshal = {
 | 
			
		||||
	PW_VERSION_ENDPOINT_STREAM_PROXY_EVENTS,
 | 
			
		||||
static const struct pw_endpoint_stream_events pw_protocol_native_endpoint_stream_event_marshal = {
 | 
			
		||||
	PW_VERSION_ENDPOINT_STREAM_EVENTS,
 | 
			
		||||
	.info = endpoint_stream_marshal_info,
 | 
			
		||||
	.param = endpoint_stream_marshal_param,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static const struct pw_protocol_native_demarshal
 | 
			
		||||
pw_protocol_native_endpoint_stream_event_demarshal[PW_ENDPOINT_STREAM_PROXY_EVENT_NUM] =
 | 
			
		||||
pw_protocol_native_endpoint_stream_event_demarshal[PW_ENDPOINT_STREAM_EVENT_NUM] =
 | 
			
		||||
{
 | 
			
		||||
	[PW_ENDPOINT_STREAM_PROXY_EVENT_INFO] = { endpoint_stream_demarshal_info, 0 },
 | 
			
		||||
	[PW_ENDPOINT_STREAM_PROXY_EVENT_PARAM] = { endpoint_stream_demarshal_param, 0 },
 | 
			
		||||
	[PW_ENDPOINT_STREAM_EVENT_INFO] = { endpoint_stream_demarshal_info, 0 },
 | 
			
		||||
	[PW_ENDPOINT_STREAM_EVENT_PARAM] = { endpoint_stream_demarshal_param, 0 },
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static const struct pw_endpoint_stream_proxy_methods pw_protocol_native_endpoint_stream_method_marshal = {
 | 
			
		||||
	PW_VERSION_ENDPOINT_STREAM_PROXY_METHODS,
 | 
			
		||||
static const struct pw_endpoint_stream_methods pw_protocol_native_endpoint_stream_method_marshal = {
 | 
			
		||||
	PW_VERSION_ENDPOINT_STREAM_METHODS,
 | 
			
		||||
	.add_listener = endpoint_stream_marshal_add_listener,
 | 
			
		||||
	.subscribe_params = endpoint_stream_marshal_subscribe_params,
 | 
			
		||||
	.enum_params = endpoint_stream_marshal_enum_params,
 | 
			
		||||
| 
						 | 
				
			
			@ -1459,20 +1459,20 @@ static const struct pw_endpoint_stream_proxy_methods pw_protocol_native_endpoint
 | 
			
		|||
};
 | 
			
		||||
 | 
			
		||||
static const struct pw_protocol_native_demarshal
 | 
			
		||||
pw_protocol_native_endpoint_stream_method_demarshal[PW_ENDPOINT_STREAM_PROXY_METHOD_NUM] =
 | 
			
		||||
pw_protocol_native_endpoint_stream_method_demarshal[PW_ENDPOINT_STREAM_METHOD_NUM] =
 | 
			
		||||
{
 | 
			
		||||
	[PW_ENDPOINT_STREAM_PROXY_METHOD_ADD_LISTENER] = { NULL, 0 },
 | 
			
		||||
	[PW_ENDPOINT_STREAM_PROXY_METHOD_SUBSCRIBE_PARAMS] = { endpoint_stream_demarshal_subscribe_params, 0 },
 | 
			
		||||
	[PW_ENDPOINT_STREAM_PROXY_METHOD_ENUM_PARAMS] = { endpoint_stream_demarshal_enum_params, 0 },
 | 
			
		||||
	[PW_ENDPOINT_STREAM_PROXY_METHOD_SET_PARAM] = { endpoint_stream_demarshal_set_param, PW_PERM_W },
 | 
			
		||||
	[PW_ENDPOINT_STREAM_METHOD_ADD_LISTENER] = { NULL, 0 },
 | 
			
		||||
	[PW_ENDPOINT_STREAM_METHOD_SUBSCRIBE_PARAMS] = { endpoint_stream_demarshal_subscribe_params, 0 },
 | 
			
		||||
	[PW_ENDPOINT_STREAM_METHOD_ENUM_PARAMS] = { endpoint_stream_demarshal_enum_params, 0 },
 | 
			
		||||
	[PW_ENDPOINT_STREAM_METHOD_SET_PARAM] = { endpoint_stream_demarshal_set_param, PW_PERM_W },
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static const struct pw_protocol_marshal pw_protocol_native_endpoint_stream_marshal = {
 | 
			
		||||
	PW_TYPE_INTERFACE_EndpointStream,
 | 
			
		||||
	PW_VERSION_ENDPOINT_STREAM_PROXY,
 | 
			
		||||
	PW_VERSION_ENDPOINT_STREAM,
 | 
			
		||||
	0,
 | 
			
		||||
	PW_ENDPOINT_STREAM_PROXY_METHOD_NUM,
 | 
			
		||||
	PW_ENDPOINT_STREAM_PROXY_EVENT_NUM,
 | 
			
		||||
	PW_ENDPOINT_STREAM_METHOD_NUM,
 | 
			
		||||
	PW_ENDPOINT_STREAM_EVENT_NUM,
 | 
			
		||||
	&pw_protocol_native_endpoint_stream_method_marshal,
 | 
			
		||||
	&pw_protocol_native_endpoint_stream_method_demarshal,
 | 
			
		||||
	&pw_protocol_native_endpoint_stream_event_marshal,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue