2018-01-11 10:23:37 +01:00
|
|
|
/* Spa Volume plugin
|
|
|
|
|
*
|
2018-11-05 17:48:52 +01:00
|
|
|
* Copyright © 2018 Wim Taymans
|
2018-01-11 10:23:37 +01: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:
|
2018-01-11 10:23:37 +01: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.
|
2018-01-11 10:23:37 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
#include <spa/support/plugin.h>
|
|
|
|
|
|
2019-09-20 13:04:14 +02:00
|
|
|
extern const struct spa_handle_factory spa_bluez5_dbus_factory;
|
2019-06-07 09:19:40 +02:00
|
|
|
extern const struct spa_handle_factory spa_bluez5_device_factory;
|
|
|
|
|
extern const struct spa_handle_factory spa_a2dp_sink_factory;
|
|
|
|
|
extern const struct spa_handle_factory spa_a2dp_source_factory;
|
2019-07-31 12:11:56 -04:00
|
|
|
extern const struct spa_handle_factory spa_sco_sink_factory;
|
|
|
|
|
extern const struct spa_handle_factory spa_sco_source_factory;
|
2018-01-11 10:23:37 +01:00
|
|
|
|
2019-02-06 13:24:41 +01:00
|
|
|
SPA_EXPORT
|
|
|
|
|
int spa_handle_factory_enum(const struct spa_handle_factory **factory, uint32_t *index)
|
2018-01-11 10:23:37 +01:00
|
|
|
{
|
|
|
|
|
spa_return_val_if_fail(factory != NULL, -EINVAL);
|
|
|
|
|
spa_return_val_if_fail(index != NULL, -EINVAL);
|
|
|
|
|
|
2019-02-06 11:38:12 +01:00
|
|
|
switch (*index) {
|
|
|
|
|
case 0:
|
2019-09-20 13:04:14 +02:00
|
|
|
*factory = &spa_bluez5_dbus_factory;
|
2019-02-06 11:38:12 +01:00
|
|
|
break;
|
2019-06-07 09:19:40 +02:00
|
|
|
case 1:
|
|
|
|
|
*factory = &spa_bluez5_device_factory;
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
*factory = &spa_a2dp_sink_factory;
|
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
*factory = &spa_a2dp_source_factory;
|
|
|
|
|
break;
|
2019-07-31 12:11:56 -04:00
|
|
|
case 4:
|
|
|
|
|
*factory = &spa_sco_sink_factory;
|
|
|
|
|
break;
|
|
|
|
|
case 5:
|
|
|
|
|
*factory = &spa_sco_source_factory;
|
|
|
|
|
break;
|
2019-02-06 11:38:12 +01:00
|
|
|
default:
|
2018-01-11 10:23:37 +01:00
|
|
|
return 0;
|
2019-02-06 11:38:12 +01:00
|
|
|
}
|
|
|
|
|
(*index)++;
|
2018-01-11 10:23:37 +01:00
|
|
|
return 1;
|
|
|
|
|
}
|