summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc-André Lureau <marc-andre.lureau@nokia.com>2009-02-13 15:09:16 +0200
committerMarc-André Lureau <marc-andre.lureau@nokia.com>2009-02-18 15:20:48 +0200
commit38ded3bb31bc49664641965f856a35f432a8a956 (patch)
tree9f594bb20d0456a64a320ce9c2bc3b45719065a5
parentb4c391ee5eaa61c31fa297b6b3f6e3a65d662948 (diff)
bluetooth: print SBC encoder implementation info
The encoder initialization is done lazily, so we can only get the information once encoding start. This is abit annoying..
-rw-r--r--src/modules/bluetooth/module-bluetooth-device.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/modules/bluetooth/module-bluetooth-device.c b/src/modules/bluetooth/module-bluetooth-device.c
index 748a2d4d..b8f67299 100644
--- a/src/modules/bluetooth/module-bluetooth-device.c
+++ b/src/modules/bluetooth/module-bluetooth-device.c
@@ -904,6 +904,11 @@ static int a2dp_process_render(struct userdata *u) {
(void*) p, u->write_memchunk.length,
d, left,
&written);
+
+ PA_ONCE_BEGIN {
+ pa_log_debug("Using SBC encoder implementation: %s", pa_strnull(sbc_get_implementation_info(&a2dp->sbc)));
+ } PA_ONCE_END;
+
pa_memblock_release(u->write_memchunk.memblock);
if (encoded <= 0) {