Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fix invalid local auth type checking | Johan Hedberg | 2009-02-04 | 1 | -1/+1 | |
| | ||||||
* | Add check for invalid auth requirement | Johan Hedberg | 2009-02-04 | 1 | -1/+2 | |
| | ||||||
* | Copy remote auth requirements if the kernel returns 0xff | Johan Hedberg | 2009-02-04 | 1 | -0/+3 | |
| | ||||||
* | Don't store the link key for "no bonding" cases | Johan Hedberg | 2009-02-04 | 2 | -5/+14 | |
| | | | | | We should not store the link key if either side had "no bonding" as their authentication requirement. | |||||
* | Proper fix for the SLC check | Johan Hedberg | 2009-02-04 | 1 | -1/+2 | |
| | ||||||
* | Fix new key type passing | Johan Hedberg | 2009-02-04 | 1 | -1/+1 | |
| | ||||||
* | Move link key writing from security.c to dbus-hci.c | Johan Hedberg | 2009-02-04 | 3 | -13/+26 | |
| | | | | | This refactoring is preparation for more fine-grained link key writing control with e.g. SSP "no bonding" use cases. | |||||
* | Fix SLC completion check | Johan Hedberg | 2009-02-04 | 1 | -1/+1 | |
| | | | | | We should check HF and not AG features when determining whether the SLC creation is complete or not. | |||||
* | Store the old link key type for changed combination keys | Marcel Holtmann | 2009-02-04 | 1 | -5/+12 | |
| | ||||||
* | Don't make use of debug combination keys for further connections | Marcel Holtmann | 2009-02-04 | 1 | -1/+3 | |
| | ||||||
* | Don't clear the authentication request completely on SSP complete | Johan Hedberg | 2009-02-04 | 1 | -3/+0 | |
| | ||||||
* | Add icon for other audio devices | Marcel Holtmann | 2009-02-04 | 1 | -0/+2 | |
| | ||||||
* | Delay AVRCP connection when remote device connects A2DP | Johan Hedberg | 2009-02-04 | 4 | -3/+53 | |
| | | | | | | | The audio profile coexistence whitepaper recommends that the initiator of the A2DP connection also initiates the AVRCP connection. This patch adds a two second delay before we attempt connecting AVRCP after the remote device has connected A2DP to us. | |||||
* | Add missing three-way calling feature bit | Johan Hedberg | 2009-02-04 | 1 | -1/+2 | |
| | ||||||
* | Refactor adapter and device struct fetching into a single function | Johan Hedberg | 2009-02-03 | 1 | -149/+56 | |
| | ||||||
* | Add support for HCI_Simple_Pairing_Complete event | Johan Hedberg | 2009-02-03 | 5 | -0/+53 | |
| | | | | | | When we are the acceptors of a pairing request and we have used the Agent.DisplayPasskey we need to use the Simple Pairing Complete HCI event for calling Agent.Cancel. | |||||
* | Fix authentication replies when disconnected | Johan Hedberg | 2009-02-03 | 3 | -6/+8 | |
| | | | | | This patch makes sure that we don't reply to the authentiction requests if we get disconnected before authentication has completed. | |||||
* | Set up a stream for incoming connections if the sink doesn't do it | Johan Hedberg | 2009-02-02 | 3 | -26/+70 | |
| | | | | | | | | | | | | | | Some headsets when acting as initiators of an AVDTP connection create the AVDTP signaling channel but don't do anything else over it (i.e. they expect us to set up a stream when needed). This patch makes bluetoothd do the same as AudioSink.Connect() if no AVDTP commands have been received from the sink within one second after it has created the AVDTP signaling channel to us. Setting up a stream is also important because the AudioSink Connected property is bound to the existence of a configured stream (which makes sense since an AVDTP connection as such tells us nothing about what sinks and sources there are or even if audio or video will be used). | |||||
* | Fix callheld indicator updating | Johan Hedberg | 2009-02-02 | 1 | -0/+14 | |
| | ||||||
* | Add delay to have 2.1 setup settle before requesting features again | Marcel Holtmann | 2009-02-03 | 1 | -0/+1 | |
| | ||||||
* | Decrease AVDTP idle timeout to 1 second | Johan Hedberg | 2009-02-02 | 1 | -1/+1 | |
| | ||||||
* | Set AVRCP version 1.0 since nothing else is implemented | Johan Hedberg | 2009-02-02 | 1 | -2/+2 | |
| | ||||||
* | Release 4.284.28 | Marcel Holtmann | 2009-02-02 | 2 | -1/+11 | |
| | ||||||
* | Fix setting revents in bluetooth_playback_poll_revents | Johan Hedberg | 2009-02-01 | 1 | -2/+1 | |
| | | | | | | | | | | This fix will unfortunately break any applications that make use of snd_pcm_wait (audacious is one of them). However, without this fix most applications using snd_pcm_poll_descriptors_revents will cause access to invalid memory as they only pass a single integer (while snd_pcm_wait_nocheck passes a full array). The following thread on the alsa mailing list has more information: http://mailman.alsa-project.org/pipermail/alsa-devel/2009-February/014392.html | |||||
* | Remove BT_SUSPEND_STREAM and BT_RESUME_STREAM since they are not used | Johan Hedberg | 2009-02-01 | 1 | -2/+0 | |
| | ||||||
* | Mention Lennart's contributions | Marcel Holtmann | 2009-02-02 | 1 | -0/+1 | |
| | ||||||
* | Use 'unsigned' instead of uint8_t for bitfields | Lennart Poettering | 2009-02-01 | 1 | -22/+22 | |
| | | | | | Using 'uint8_t' for bitfields doesn't make a lot of sense and is not allowed in ANSI C. Use 'unsigned' instead. | |||||
* | make check_mmx_support() a proper C function | Lennart Poettering | 2009-02-01 | 1 | -1/+1 | |
| | | | | Signed-off-by: Lennart Poettering <lennart@poettering.net> | |||||
* | Don't try to send an invalid SCO fd over the unix socket | Johan Hedberg | 2009-02-01 | 1 | -2/+7 | |
| | ||||||
* | Use %zd instead of %ld for size_t | Marcel Holtmann | 2009-01-30 | 1 | -2/+2 | |
| | ||||||
* | Fix another signed/unsigned comparison warning | Marcel Holtmann | 2009-01-30 | 1 | -1/+1 | |
| | ||||||
* | Fix signed/unsigned comparison issue within GStreamer plugin | Marcel Holtmann | 2009-01-30 | 4 | -6/+6 | |
| | ||||||
* | Fix signed/unsigned comparison issues within AVDTP/A2DP code | Marcel Holtmann | 2009-01-30 | 4 | -19/+19 | |
| | ||||||
* | Fix signed/unsigned comparison of ALSA plugin | Marcel Holtmann | 2009-01-30 | 2 | -9/+11 | |
| | ||||||
* | Fix SDP code to allow compilation with -Wsign-compare | Marcel Holtmann | 2009-01-30 | 2 | -31/+32 | |
| | ||||||
* | Fix SBC to compile cleanly with -Wsign-compare | Marcel Holtmann | 2009-01-30 | 2 | -6/+9 | |
| | ||||||
* | Fix for SBC encoding with block sizes other than 16 | Siarhei Siamashka | 2009-01-29 | 1 | -6/+13 | |
| | | | | | | Thanks to Christian Hoene for finding and reporting the problem. This regression was intruduced in commit 19af3c49e61aa046375497108e05a3a0605da158 | |||||
* | Fix mostly every warning caused by -Wsign-compare | Marcel Holtmann | 2009-01-29 | 27 | -60/+73 | |
| | ||||||
* | Add -Wno-sign-compare until the SDP functions get fixed | Marcel Holtmann | 2009-01-29 | 1 | -0/+2 | |
| | ||||||
* | Add -Wno-sign-compare for the library and fix the other warnings | Marcel Holtmann | 2009-01-29 | 4 | -6/+7 | |
| | ||||||
* | Fix signed/unsigned integer comparison for helpers | Marcel Holtmann | 2009-01-29 | 4 | -5/+5 | |
| | ||||||
* | Fix signed/unsigned integer comparison | Marcel Holtmann | 2009-01-29 | 1 | -2/+4 | |
| | ||||||
* | SBC encoder scale factors calculation optimized with __builtin_clz | Siarhei Siamashka | 2009-01-29 | 3 | -16/+50 | |
| | | | | | | | | | Count leading zeros operation is often implemented using a special instruction for it on various architectures (at least this is true for ARM and x86). Using __builtin_clz gcc intrinsic allows to eliminate innermost loop in scale factors calculation and improve performance. Also scale factors calculation can be optimized even more using SIMD instructions. | |||||
* | Implement AVDTP signal fragmentation support | Johan Hedberg | 2009-01-28 | 1 | -293/+487 | |
| | | | | | | This patch implements AVDTP signal fragmentation. Even though it's a mandatory feature it in practice it never gets used with A2DP as it requires messages that exceed 48 bytes (the minimum L2CAP MTU). | |||||
* | Fix uninitialized address variable | Johan Hedberg | 2009-01-28 | 1 | -0/+2 | |
| | ||||||
* | Performance optimizations for input data processing in SBC encoder | Siarhei Siamashka | 2009-01-28 | 5 | -203/+258 | |
| | | | | | | | | Channels deinterleaving, endian conversion and samples reordering is done in one pass, avoiding the use of intermediate buffer. Also this code is implemented as a new "performance primitive", which allows further platform specific optimizations (ARMv6 and ARM NEON should gain quite a lot from assembly optimizations here). | |||||
* | Don't auto-disconnect explicitly created A2DP connections | Johan Hedberg | 2009-01-27 | 3 | -1/+18 | |
| | | | | | | | | | This patch makes sure that explicitly created connections (remotely initiated or using AudioSink.Connect()) stay up until explictly disconnected. The control for this needs to be in the stream timer and not the disconnect timer since our AVDTP state machine always tries to keep one stream in configured state (i.e. it should be ok to always disconnect if we stay too long in IDLE state). | |||||
* | Set the Alias only after checking the EIR data | Johan Hedberg | 2009-01-27 | 1 | -11/+11 | |
| | ||||||
* | Fix DBusError usage with dbus_message_get_args | Johan Hedberg | 2009-01-26 | 1 | -2/+2 | |
| | ||||||
* | Use of -funroll-loops option to improve SBC encoder performance | Siarhei Siamashka | 2009-01-23 | 3 | -17/+41 | |
| | | | | | | | | | Added the use of -funroll-loops gcc option for SBC. Also in order to gain better effect, 'sbc_pack_frame' function body moved to an inline function, which gets instantiated for 4 different subbands/channels combinations. So that 'frame_subbands' and 'frame_channels' arguments become compile time constants and can be better optimized by the compiler. |