summaryrefslogtreecommitdiffstats
path: root/Android.mk
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'LA.BF.1.1.3_rb1.7' of git://codeaurora.org/platform/system/bt ↵Steve Kondik2016-01-081-0/+5
|\ | | | | | | | | | | into cm-13.0 Change-Id: Ic7851f38b6ca4b82ab9a0b96e7e494849944e5c6
| * Split A2dp implementationAyan Ghosh2015-12-011-0/+5
| | | | | | | | | | | | | | | | | | | | Implement Split A2dp to process AVDTP Signalling commands from host and media packet handling from Controller. Host uses vendor specific commands to let controller know the media channel configurations for controller to form the media packets accordingly. Change-Id: I7a98177a8125fd70b057bb514f0d870971a45bcf
* | bt: Enable Bluedroid debugging only on eng.Aaron Kling2016-01-071-1/+1
| | | | | | | | | | | | | | Debugging enables memory allocation tracking and audio track usage, which does not need to be enabled on most end user devices. Change-Id: I8848d37cc2d6d4e080118882bb4be55d6e731922
* | Merge branch 'LA.BF.1.1.3_rb1.3' of git://codeaurora.org/platform/system/bt ↵Steve Kondik2015-10-311-0/+1
|\| | | | | | | into cm-13.0
| * A2DP_Sink: add support for AudioTrackAnubhavGupta2015-10-151-0/+1
| | | | | | | | | | | | | | | | - add support for AudioTrack to be used for rendering audio data - add support for requesting and updating audio focus Change-Id: If2832e9dd4a070977edc38f1c142a91336a9822c
* | bt: Remove extra parenthesisAndrew Bartholomew2015-10-121-1/+1
|/ | | | Change-Id: I6e7594f2f935b89595d5b63e65c3926a903f86d7
* Bluetooth: Disable SOC logging for ROME targetsSrinu Jella2015-10-061-0/+2
| | | | | | Disable SOC logging for ROME targets Change-Id: Ifbb99900d8596932e514582619aaf775dacd3c33
* QLogKit: Enable FW Logging and Set Stack Trace LevelSai Aitharaju2015-10-061-0/+4
| | | | | | | | | | | | - Enables FW Logging during BT On and disables the FW Logging during BT Off in userdebug builds only. - Provides an interface to set trace level for all the stack layers of bluedroid. CRs-Fixed: 866285 Change-Id: Ib12d220e0aa4845d04b05b7fbea079d30c308004
* Bluetooth-Wipower: Enable WiPower feature.Kiran Kelageri2015-10-061-0/+4
| | | | | | | | Enabling WiPower feature on lastest PL, this feature enables wireless charging capablity on the target. Change-Id: I133a00b17efa5a89a764230864b9c2db252aea26
* Fix A2DP source double initialization problemAndre Eisenbach2015-04-211-1/+0
| | | | | | | | Fixed a problem where A2DP source was initialized twice. Once before btif was properly initialize and then a second time when the JNI requests A2DP to be initialized, which would then fail. Change-Id: Ia5f10a5bda344fe3bd66818a302b6b3f9db32a20
* Fix build issues after the mergeVinit Deshpande2015-04-151-1/+1
| | | | Change-Id: Ia856311187a0b2168cb859bd8b2300ff59df6569
* Enable allocation tracking for eng and userdebug builds.Sharvil Nanavati2015-03-161-0/+4
| | | | | This change will result in a constant increase in memory utilization per allocation but will help us catch memory errors earlier.
* Make build more strict by adding more warning flags.Sharvil Nanavati2015-03-161-4/+8
| | | | | | This change introduces -Wunused-but-set-variable to help catch programming errors. It also undefines NDEBUG so assertions are fatal and defines LOG_NDEBUG=1 to suppress LOGV.
* Enable assertions.Sharvil Nanavati2015-03-161-1/+1
|
* Bluetooth: Rename BTA_AVK_INCLUDED flag to BTA_AV_SINK_INCLUDED (bt_target.h)lungtsai_lin2014-07-071-1/+0
| | | | | | | Now OEM could enable/disable A2DP SINK role Change-Id: I62cf17b0397a86c5f886a2c1ca724ca77a7f9bd4 Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
* Add BOARD_BLUETOOTH_BDROID_HCILP_INCLUDEDRichie Hsieh2014-07-011-0/+4
| | | | | | | Added CleanSpec.mk change Signed-off-by: Richie Hsieh <richie.hsieh@mediatek.com> Change-Id: Ice2a514f3d24859dbf091aae30e5c8781e90b7fd (cherry picked from commit d343338cb4c42e62ac97c451bc23fb36d9b58d3f)
* Add A2DP Sink SupportHemant Gupta2014-06-121-0/+1
| | | | Change-Id: I9affefdd2d00597545e49c593ef3bddb110d4c9c
* Revert "Add -Wno-error=maybe-uninitialized to bdroid_CFLAGS"Matthew Xie2014-05-081-1/+1
| | | | This reverts commit 5e18c1746f086f46177d64563b25db6bdd31223a.
* Add -Wno-error=maybe-uninitialized to bdroid_CFLAGSJi-Hwan Lee2014-05-081-1/+1
| | | | | | To fix x86 build. Change-Id: I14e1a418c19987fb76c71ab1bbb8dcb181b833ce
* Eliminate warnings, add -Wall and -Werror to all projects.Sharvil Nanavati2014-05-061-0/+2
| | | | | | | | | | | | This change enables all warnings and treats warnings as errors. As a result, nobody should be able to submit new code to bluedroid that contains compiler warnings. Instead, they should fix the warnings before submitting. This change has already caught a type mismatch bug in stack/avrc/avrc_api.c where an integer was being stored in a boolean. Change-Id: Ic41960754b39a1a6aa37f1c1095003195f466183
* Various fixes for LP64Kévin PETIT2014-02-271-2/+4
| | | | | | | | | | | | | | Changes include - Cast numbers to their proper length before casting to a pointer. - Use intptr_t when pointers are stored as integers. - Eliminate 'implicit declaration' warnings Signed-off-by: Matthew Leach <matthew.leach@arm.com> Signed-off-by: Ashok Bhat <ashok.bhat@arm.com> Signed-off-by: Marcus Oakland <marcus.oakland@arm.com> Signed-off-by: Kévin PETIT <kevin.petit@arm.com> Change-Id: I5664a087c5fbc322baa9178552404dbe9a992359
* Fix uipc.c to never pass -1 to FD_ISSET.Elliott Hughes2013-10-021-1/+1
| | | | | | | | | | | | | | | The behavior of FD_ISSET when passed -1 is undefined. I checked all calls of FD_SET and FD_CLR in this file, and they all seem to be correctly guarded. None of the FD_ISSET calls were, so I added a SAFE_FD_ISSET macro to return false when passed -1, which is presumably what the callers intended. This allows Bluetooth to be enabled on a device where the C library aborts if passed any out of range fd. Bug: 11047121 Change-Id: I261404a5a80884d5e9edab8beb3c93969113dc76
* Remove bluedroid configuration warningConley Owens2013-03-051-1/+0
| | | | | | | | This warning is fired on every full-eng build. It seems excessive given that there are very few other warning fired on a full-eng build and 0 seems like a reasonable goal to shoot for. Change-Id: I2fb2b5342dee35b3ed05343466309f6c335022ef
* Snapshot cdeccf6fdd8c2d494ea2867cb37a025bf8879bafThe Android Open Source Project2012-12-121-0/+17
Change-Id: Ia2de32ccb97a9641462c72363b0a8c4288f4f36d