2017-05-23 19:15:33 +02:00
|
|
|
/* PipeWire
|
2016-09-15 17:51:34 +02:00
|
|
|
*
|
2018-11-05 17:48:52 +01:00
|
|
|
* Copyright © 2018 Wim Taymans
|
2016-09-15 17:51:34 +02:00
|
|
|
*
|
2018-11-05 17:48:52 +01:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
2016-09-15 17:51:34 +02:00
|
|
|
*
|
2018-11-05 17:48:52 +01:00
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
|
* Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
2016-09-15 17:51:34 +02:00
|
|
|
*/
|
|
|
|
|
|
2019-01-14 12:58:23 +01:00
|
|
|
#ifndef PIPEWIRE_SPA_MONITOR_H
|
|
|
|
|
#define PIPEWIRE_SPA_MONITOR_H
|
2016-09-15 17:51:34 +02:00
|
|
|
|
2017-11-10 13:36:14 +01:00
|
|
|
#include <spa/monitor/monitor.h>
|
2016-09-15 17:51:34 +02:00
|
|
|
|
2017-07-11 15:57:20 +02:00
|
|
|
#include <pipewire/core.h>
|
|
|
|
|
|
2016-11-10 15:42:14 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
2016-09-15 17:51:34 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
struct pw_spa_monitor {
|
2017-05-26 08:05:01 +02:00
|
|
|
struct spa_monitor *monitor;
|
2016-11-14 12:42:00 +01:00
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
char *lib;
|
|
|
|
|
char *factory_name;
|
|
|
|
|
char *system_name;
|
|
|
|
|
struct spa_handle *handle;
|
2019-05-31 15:06:44 +02:00
|
|
|
struct pw_properties *properties;
|
2017-08-22 18:30:10 +02:00
|
|
|
|
|
|
|
|
void *user_data;
|
2016-09-15 17:51:34 +02:00
|
|
|
};
|
|
|
|
|
|
2017-05-26 08:05:01 +02:00
|
|
|
struct pw_spa_monitor *
|
|
|
|
|
pw_spa_monitor_load(struct pw_core *core,
|
2017-07-18 14:58:14 +02:00
|
|
|
struct pw_global *parent,
|
2017-06-19 12:19:22 +02:00
|
|
|
const char *dir,
|
2017-05-26 08:05:01 +02:00
|
|
|
const char *lib,
|
2017-08-22 18:30:10 +02:00
|
|
|
const char *factory_name,
|
|
|
|
|
const char *system_name,
|
2019-05-31 15:06:44 +02:00
|
|
|
struct pw_properties *properties,
|
2017-08-22 18:30:10 +02:00
|
|
|
size_t user_data_size);
|
2017-05-26 08:05:01 +02:00
|
|
|
void
|
|
|
|
|
pw_spa_monitor_destroy(struct pw_spa_monitor *monitor);
|
2016-09-15 17:51:34 +02:00
|
|
|
|
2016-11-10 15:42:14 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2016-09-15 17:51:34 +02:00
|
|
|
|
2019-01-14 12:58:23 +01:00
|
|
|
#endif /* PIPEWIRE_SPA_MONITOR_H */
|