mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
improve debug
This commit is contained in:
parent
6d494c120f
commit
316a96d501
3 changed files with 24 additions and 9 deletions
|
|
@ -595,9 +595,10 @@ static void a2dp_on_timeout(struct spa_source *source)
|
|||
|
||||
static int do_start(struct impl *this)
|
||||
{
|
||||
int res, val;
|
||||
int i, res, val, size;
|
||||
struct port *port;
|
||||
socklen_t len;
|
||||
uint8_t *conf;
|
||||
|
||||
if (this->started)
|
||||
return 0;
|
||||
|
|
@ -613,6 +614,12 @@ static int do_start(struct impl *this)
|
|||
|
||||
port = &this->port;
|
||||
|
||||
conf = this->transport->configuration;
|
||||
size = this->transport->configuration_len;
|
||||
|
||||
for (i = 0; i < size; i++)
|
||||
spa_log_debug(this->log, " %d: %02x", i, conf[i]);
|
||||
|
||||
this->codec_data = this->codec->init(this->codec, 0,
|
||||
this->transport->configuration,
|
||||
this->transport->configuration_len,
|
||||
|
|
|
|||
|
|
@ -45,6 +45,7 @@
|
|||
#include <spa/utils/type.h>
|
||||
#include <spa/utils/keys.h>
|
||||
#include <spa/utils/names.h>
|
||||
#include <spa/utils/result.h>
|
||||
|
||||
#include "a2dp-codecs.h"
|
||||
#include "defs.h"
|
||||
|
|
@ -112,7 +113,7 @@ static DBusHandlerResult endpoint_select_configuration(DBusConnection *conn, DBu
|
|||
uint8_t *pconf = (uint8_t *) config;
|
||||
DBusMessage *r;
|
||||
DBusError err;
|
||||
int size, res;
|
||||
int i, size, res;
|
||||
const struct a2dp_codec *codec;
|
||||
|
||||
dbus_error_init(&err);
|
||||
|
|
@ -126,6 +127,8 @@ static DBusHandlerResult endpoint_select_configuration(DBusConnection *conn, DBu
|
|||
return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
|
||||
}
|
||||
spa_log_info(monitor->log, "%p: %s select conf %d", monitor, path, size);
|
||||
for (i = 0; i < size; i++)
|
||||
spa_log_debug(monitor->log, " %d: %02x", i, cap[i]);
|
||||
|
||||
codec = a2dp_endpoint_to_codec(path);
|
||||
if (codec != NULL)
|
||||
|
|
@ -133,13 +136,16 @@ static DBusHandlerResult endpoint_select_configuration(DBusConnection *conn, DBu
|
|||
else
|
||||
res = -ENOTSUP;
|
||||
|
||||
if (res < 0) {
|
||||
if (res < 0 || res != size) {
|
||||
spa_log_error(monitor->log, "can't select config: %d (%s)",
|
||||
res, spa_strerror(res));
|
||||
if ((r = dbus_message_new_error(m, "org.bluez.Error.InvalidArguments",
|
||||
"Unable to select configuration")) == NULL)
|
||||
return DBUS_HANDLER_RESULT_NEED_MEMORY;
|
||||
goto exit_send;
|
||||
}
|
||||
size = res;
|
||||
for (i = 0; i < size; i++)
|
||||
spa_log_debug(monitor->log, " %d: %02x", i, pconf[i]);
|
||||
|
||||
if ((r = dbus_message_new_method_return(m)) == NULL)
|
||||
return DBUS_HANDLER_RESULT_NEED_MEMORY;
|
||||
|
|
@ -784,8 +790,8 @@ static int transport_update_props(struct spa_bt_transport *transport,
|
|||
}
|
||||
else if (strcmp(key, "Configuration") == 0) {
|
||||
DBusMessageIter iter;
|
||||
char *value;
|
||||
int len;
|
||||
uint8_t *value;
|
||||
int i, len;
|
||||
|
||||
if (!check_iter_signature(&it[1], "ay"))
|
||||
goto next;
|
||||
|
|
@ -794,6 +800,8 @@ static int transport_update_props(struct spa_bt_transport *transport,
|
|||
dbus_message_iter_get_fixed_array(&iter, &value, &len);
|
||||
|
||||
spa_log_debug(monitor->log, "transport %p: %s=%d", transport, key, len);
|
||||
for (i = 0; i < len; i++)
|
||||
spa_log_debug(monitor->log, " %d: %02x", i, value[i]);
|
||||
|
||||
free(transport->configuration);
|
||||
transport->configuration_len = 0;
|
||||
|
|
@ -961,8 +969,8 @@ static DBusHandlerResult endpoint_set_configuration(DBusConnection *conn,
|
|||
|
||||
spa_bt_transport_set_implementation(transport, &transport_impl, transport);
|
||||
}
|
||||
transport_update_props(transport, &it[1], NULL);
|
||||
transport->a2dp_codec = codec;
|
||||
transport_update_props(transport, &it[1], NULL);
|
||||
|
||||
if (transport->device == NULL) {
|
||||
spa_log_warn(monitor->log, "no device found for transport");
|
||||
|
|
|
|||
|
|
@ -371,7 +371,7 @@ static void on_server_need_flush(void *data)
|
|||
struct client_data *this = data;
|
||||
struct pw_impl_client *client = this->client;
|
||||
|
||||
pw_log_debug("need flush");
|
||||
pw_log_trace("need flush");
|
||||
this->need_flush = true;
|
||||
|
||||
if (this->source && !(this->source->mask & SPA_IO_OUT)) {
|
||||
|
|
@ -831,7 +831,7 @@ static void on_client_need_flush(void *data)
|
|||
{
|
||||
struct client *impl = data;
|
||||
|
||||
pw_log_debug("need flush");
|
||||
pw_log_trace("need flush");
|
||||
impl->need_flush = true;
|
||||
|
||||
if (impl->source && !(impl->source->mask & SPA_IO_OUT)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue