mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-01 22:58:50 -04:00
Unify input and output io areas. Add support for ranges in the io area. Automatically recycle buffers in the output areas in process_output Improve the mixer, add use_buffer support, use a queue of input buffers, fix mixing, add support for ranges. Fix mixer and v4l2 tests
79 lines
2.1 KiB
C
79 lines
2.1 KiB
C
/* Pinos
|
|
* Copyright (C) 2015 Wim Taymans <wim.taymans@gmail.com>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include <pinos/client/log.h>
|
|
#include <pinos/client/proxy.h>
|
|
#include <pinos/client/protocol-native.h>
|
|
|
|
typedef struct {
|
|
PinosProxy this;
|
|
} PinosProxyImpl;
|
|
|
|
PinosProxy *
|
|
pinos_proxy_new (PinosContext *context,
|
|
uint32_t id,
|
|
uint32_t type)
|
|
{
|
|
PinosProxyImpl *impl;
|
|
PinosProxy *this;
|
|
|
|
impl = calloc (1, sizeof (PinosProxyImpl));
|
|
if (impl == NULL)
|
|
return NULL;
|
|
|
|
this = &impl->this;
|
|
this->context = context;
|
|
this->type = type;
|
|
|
|
pinos_signal_init (&this->destroy_signal);
|
|
|
|
if (id == SPA_ID_INVALID) {
|
|
id = pinos_map_insert_new (&context->objects, this);
|
|
} else if (!pinos_map_insert_at (&context->objects, id, this))
|
|
goto in_use;
|
|
|
|
this->id = id;
|
|
|
|
pinos_protocol_native_client_setup (this);
|
|
|
|
spa_list_insert (&this->context->proxy_list, &this->link);
|
|
|
|
pinos_log_trace ("proxy %p: new %u", this, this->id);
|
|
|
|
return this;
|
|
|
|
in_use:
|
|
pinos_log_error ("proxy %p: id %u in use for context %p", this, id, context);
|
|
free (impl);
|
|
return NULL;
|
|
}
|
|
|
|
void
|
|
pinos_proxy_destroy (PinosProxy *proxy)
|
|
{
|
|
PinosProxyImpl *impl = SPA_CONTAINER_OF (proxy, PinosProxyImpl, this);
|
|
|
|
pinos_log_trace ("proxy %p: destroy %u", proxy, proxy->id);
|
|
pinos_signal_emit (&proxy->destroy_signal, proxy);
|
|
|
|
pinos_map_remove (&proxy->context->objects, proxy->id);
|
|
spa_list_remove (&proxy->link);
|
|
|
|
free (impl);
|
|
}
|