File tree Expand file tree Collapse file tree 10 files changed +15
-4
lines changed Expand file tree Collapse file tree 10 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1
1
unreleased
2
2
==========
3
3
4
+ bluez-alsa v3.0.0 (2020-09-15)
5
+ ==============================
6
+
4
7
- separate D-Bus paths for PCM sink and source (API breakage)
8
+ - store PCM sample physical width in the D-Bus format property
5
9
- list available and supported audio codecs via D-Bus API
6
10
- support for A2DP audio codec selection or reconfiguration
7
11
- fix SBC encoder bit-pool selection (support SBC XQ quality)
8
12
- allow to disable software volume scaling via D-Bus API
9
13
- great improvement to the PCM I/O plug-in (thanks to @borine)
14
+ - install bluez-alsa manual pages (optional, requires pandoc)
10
15
- bluealsa-aplay: list connected BT devices and available PCMs
11
16
- bluealsa-aplay: fix PCM corruption due to out-of-bounds read
12
17
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ Dependencies:
53
53
` --enable-aptx ` and/or ` --enable-aptx-hd ` )
54
54
- [ libldac] ( https://github.com/EHfive/ldacBT ) (when LDAC encoding support is enabled with
55
55
` --enable-ldac ` )
56
- - [ pandoc] ( https://pandoc.org/ ) (when man pages building is enabled with ` --enable-manpages ` )
56
+ - [ pandoc] ( https://pandoc.org/ ) (when man pages build is enabled with ` --enable-manpages ` )
57
57
58
58
Dependencies for client applications (e.g. ` bluealsa-aplay ` ):
59
59
Original file line number Diff line number Diff line change 3
3
4
4
AC_PREREQ ( [ 2.60] )
5
5
AC_INIT ( [ BlueALSA] ,
6
- [ m4_normalize ( esyscmd ( [ test -d .git && git describe || echo v2.1 .0] ) ) ] ,
6
+ [ m4_normalize ( esyscmd ( [ test -d .git && git describe || echo v3.0 .0] ) ) ] ,
7
7
[ [email protected] ] ,
[ bluez-alsa] ,
[ https://github.com/Arkq/bluez-alsa] )
8
8
AM_INIT_AUTOMAKE ( [ foreign subdir-objects -Wall -Werror] )
9
9
Original file line number Diff line number Diff line change 11
11
#include "audio.h"
12
12
13
13
#include <endian.h>
14
+ #include <stdbool.h>
14
15
#include <string.h>
15
16
16
17
#include <glib.h>
Original file line number Diff line number Diff line change 11
11
#include "ba-adapter.h"
12
12
13
13
#include <errno.h>
14
- #include <stdint.h>
15
14
#include <stdio.h>
16
15
#include <stdlib.h>
17
16
#include <string.h>
Original file line number Diff line number Diff line change 10
10
11
11
#include "bluealsa-iface.h"
12
12
13
+ #include <stddef.h>
14
+
13
15
static const GDBusArgInfo arg_codec = {
14
16
-1 , "codec" , "s" , NULL
15
17
};
Original file line number Diff line number Diff line change 14
14
#include <stdbool.h>
15
15
#include <string.h>
16
16
17
+ #include <glib-object.h>
18
+
17
19
#include "shared/defs.h"
18
20
#include "shared/log.h"
19
21
Original file line number Diff line number Diff line change 10
10
11
11
#include "ofono-iface.h"
12
12
13
+ #include <stddef.h>
14
+
13
15
static const GDBusArgInfo arg_card = {
14
16
-1 , "card" , "o" , NULL
15
17
};
Original file line number Diff line number Diff line change 12
12
#define BLUEALSA_SHARED_DBUSCLIENT_H_
13
13
14
14
#include <poll.h>
15
+ #include <stddef.h>
15
16
#include <bluetooth/bluetooth.h>
16
17
#include <dbus/dbus.h>
17
18
Original file line number Diff line number Diff line change 17
17
18
18
#include <stdbool.h>
19
19
#include <stdint.h>
20
- #include <time.h>
21
20
22
21
#include <bluetooth/bluetooth.h>
23
22
You can’t perform that action at this time.
0 commit comments