summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Technical debt paydownPaul McLean2014-12-153-87/+2
| | | | | | | | Removed unused function. Removed unused data table. Cleaned up TAG strings. Change-Id: I4c5dbd72f7363dd0a7a60eb2498e122adda43211
* am 5c8b899d: am 2cbdfa9c: usbaudio: reset profile on device disconnectHaynes Mathew George2014-12-121-3/+8
|\ | | | | | | | | * commit '5c8b899d7c80f012599b984143cb31334ee61372': usbaudio: reset profile on device disconnect
| * am 2cbdfa9c: usbaudio: reset profile on device disconnectHaynes Mathew George2014-12-121-3/+8
| |\ | | | | | | | | | | | | * commit '2cbdfa9c991fc63f52f48831e5509fcc2889db77': usbaudio: reset profile on device disconnect
| | * usbaudio: reset profile on device disconnectHaynes Mathew George2014-12-111-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reset ALSA device profile on disconnect event. Entries like supported sample rates, channel counts, formats will be repopulated on next connect. CRs-Fixed: 765434 Change-Id: I27d3b7fd7ff22646996f58c53de08547b1a1fb6a Bug: 18606219
* | | am de148628: am 257fde6e: Reroute submix HAL: fix race condition on output stateJean-Michel Trivi2014-12-101-3/+4
|\ \ \ | |/ / | | | | | | | | | * commit 'de148628b9850492fad26c801d0eb663d14400cb': Reroute submix HAL: fix race condition on output state
| * | am 257fde6e: Reroute submix HAL: fix race condition on output stateJean-Michel Trivi2014-12-101-3/+4
| |\ \ | | |/ | | | | | | | | | * commit '257fde6eb533b890776c8c45be8b61c48ab04945': Reroute submix HAL: fix race condition on output state
| | * Reroute submix HAL: fix race condition on output stateJean-Michel Trivi2014-12-091-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When reading from a pipe, the output may have been previously closed, therefore the output state should only be read if it is still available. This fixes a race condition observed between in_read() (which accesses the output stream) and adev_close_output_stream() (which sets the output reference to NULL). No issue with out_write() which checks the input reference. Bug 16009464 Change-Id: I979bc12c8fe91fad9b6f6c9e0be107c1bacae360
* | | am c5f5daff: am 719b8423: Merge "Remove ARCH_X86."Elliott Hughes2014-12-051-8/+0
|\ \ \ | |/ / | | | | | | | | | * commit 'c5f5daffb520017f2d6d99d245866b448723c876': Remove ARCH_X86.
| * | am 719b8423: Merge "Remove ARCH_X86."Elliott Hughes2014-12-051-8/+0
| |\ \ | | | | | | | | | | | | | | | | * commit '719b8423102e469b5a537321f02011415b376dbe': Remove ARCH_X86.
| | * \ Merge "Remove ARCH_X86."Elliott Hughes2014-12-051-8/+0
| | |\ \
| | | * | Remove ARCH_X86.Elliott Hughes2014-12-041-8/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Should have been __GLIBC__, but the code is dead anyway. Change-Id: I773f296a9c31949fa631cad863b841584c71f0ef
* | | | | am c18a034e: am 47c0fcd0: Merge "initialization of defined variables"Kenny Root2014-12-051-8/+9
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | * commit 'c18a034e1654f3c6dfbb73212630465c33f0a07e': initialization of defined variables
| * | | | am 47c0fcd0: Merge "initialization of defined variables"Kenny Root2014-12-041-8/+9
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | * commit '47c0fcd0841764a50d05e1fa4831f3002258ae22': initialization of defined variables
| | * | | Merge "initialization of defined variables"Kenny Root2014-12-041-8/+9
| | |\ \ \
| | | * | | initialization of defined variablesAndrei V. FOMITCHEV2014-04-301-8/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Because in functions of hardware.c, the variables are not initialized when they are defined, valgrind indicates that these variables are used as uninitialised! So, the purpose of this patch is initialization of varaibles. In the same way, the patch fixes the compilation warning (unused variable). Change-Id: Ibaab89d7b57eb9e3a1f46c3af61705a39be10e16 Signed-off-by: Andrei V. FOMITCHEV <andreix.fomitchev@intel.com> Signed-off-by: Jin Wei <wei.a.jin@intel.com>
* | | | | | am 34a93da9: am 285fed09: Add server-side callback for change in MTU (1/4)Andre Eisenbach2014-12-021-0/+4
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | | | | | | | * commit '34a93da9bab2e9a1a56a2b9d7ce664c172e2e041': Add server-side callback for change in MTU (1/4)
| * | | | | am 285fed09: Add server-side callback for change in MTU (1/4)Andre Eisenbach2014-12-021-0/+4
| |\ \ \ \ \ | | | |_|_|/ | | |/| | | | | | | | | | | | | | | * commit '285fed09639f66923529289d71cc633ad738c96c': Add server-side callback for change in MTU (1/4)
| | * | | | Add server-side callback for change in MTU (1/4)Andre Eisenbach2014-11-261-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a client requests to update the LE transport MTU, the server currently does not get notified and can therefor not properly size notifications appropriate to the current MTU. Bug: 18388114 Change-Id: I136f32cba48da3302e13fb9a9ec81b8e01712138
* | | | | | am df44fe72: am 32fb8b2d: Merge "Fix C++11 build."Dan Albert2014-11-281-5/+5
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | | | | | | | * commit 'df44fe72a6a9d163bb23a0808cf74241006600b0': Fix C++11 build.
| * | | | | am 32fb8b2d: Merge "Fix C++11 build."Dan Albert2014-11-281-5/+5
| |\ \ \ \ \ | | | |/ / / | | |/| | | | | | | | | | | | | | | * commit '32fb8b2d9f8399a745a26dddc031cc16867ada2d': Fix C++11 build.
| | * | | | Merge "Fix C++11 build."Dan Albert2014-11-281-5/+5
| | |\ \ \ \ | | | |_|_|/ | | |/| | |
| | | * | | Fix C++11 build.Dan Albert2014-11-271-5/+5
| | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | Not sure how this slipped past my checkbuild... Change-Id: Id238887a2a47ced387a6128a772fad3e468096be
* | | | | am 9d018618: am 58afe329: Merge "Use an older C++ standard."Dan Albert2014-11-201-1/+1
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | * commit '9d018618c4a467ed19ce96c04d6fe13fd125fcba': Use an older C++ standard.
| * | | | am 58afe329: Merge "Use an older C++ standard."Dan Albert2014-11-201-1/+1
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | * commit '58afe329533dc60618186f414d945829706ed772': Use an older C++ standard.
| | * | | Merge "Use an older C++ standard."Dan Albert2014-11-201-1/+1
| | |\ \ \
| | | * | | Use an older C++ standard.Dan Albert2014-11-201-1/+1
| | |/ / / | | | | | | | | | | | | | | | Bug: 18466763 Change-Id: Ibea0eb2617f13bacca0a662fe4ca88fc8a168cd7
* | | | | am 59134344: am b73bc860: Support multiple pipes for reroutingJean-Michel Trivi2014-11-191-140/+295
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | * commit '591343449a2bfd7ec33bfcbc27e55e1c1c71c5a7': Support multiple pipes for rerouting
| * | | | am b73bc860: Support multiple pipes for reroutingJean-Michel Trivi2014-11-191-140/+295
| |\ \ \ \ | | | |/ / | | |/| | | | | | | | | | | | * commit 'b73bc86089b8a65da88776bafcf48529431150b8': Support multiple pipes for rerouting
| | * | | Support multiple pipes for reroutingJean-Michel Trivi2014-11-171-140/+295
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The implementation for "remote submix" supported only one pipe to capture the output of a mix. This CL adds support for multiple pipes to support capturing multiple audio routes. The structure for the r_submix audio device holds an array of route configurations (route_config), each referencing the input and output of the pipe dedicated to this route. Each route is associated to a unique address. Standby status is maintained per stream. Bug 16009464 Change-Id: Ie164c4ad2a6d8138f825484e7faf29a974ccf82e
* | | | | am be9083bd: am 40d48e17: Merge "Stop using stlport."Dan Albert2014-11-171-5/+0
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | * commit 'be9083bd65a9dc2f91bb1e512e15ead120f508c3': Stop using stlport.
| * | | | am 40d48e17: Merge "Stop using stlport."Dan Albert2014-11-171-5/+0
| |\ \ \ \ | | | |/ / | | |/| | | | | | | | | | | | * commit '40d48e177f243c6093a45301db122a0475cc1124': Stop using stlport.
| | * | | Merge "Stop using stlport."Dan Albert2014-11-171-5/+0
| | |\ \ \
| | | * | | Stop using stlport.Dan Albert2014-11-171-5/+0
| | |/ / / | | | | | | | | | | | | | | | | | | | | Bug: 15193147 Change-Id: I5d53338f239ba18a2b007b345ba050d1560220b4
* | | | | am 1497e7e7: am e0e834e3: Merge "Add a BufferItem parameter to ↵Dan Stoza2014-11-073-3/+3
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | onFrameAvailable" into lmp-mr1-dev * commit '1497e7e76784c01043cf328177de076c70db6e86': Add a BufferItem parameter to onFrameAvailable
| * | | | am e0e834e3: Merge "Add a BufferItem parameter to onFrameAvailable" into ↵Dan Stoza2014-11-073-3/+3
| |\ \ \ \ | | | |/ / | | |/| | | | | | | | | | | | | | | | | | | | | | lmp-mr1-dev * commit 'e0e834e3fe5561bf87aac7f88faaed39f0937a64': Add a BufferItem parameter to onFrameAvailable
| | * | | Merge "Add a BufferItem parameter to onFrameAvailable" into lmp-mr1-devDan Stoza2014-11-073-3/+3
| | |\ \ \
| | | * | | Add a BufferItem parameter to onFrameAvailableDan Stoza2014-11-043-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Passes the BufferItem for the queued buffer to the onFrameAvailable callback so the consumer can track the BufferQueue's contents. Bug: 18111837 Change-Id: If9d07229c9b586c668e5f99074e9b63b0468feb0
* | | | | | am 3d31e157: am 8d3acf6e: Merge "Camera2/3 HAL test: cleanup deprecated ↵Yin-Chia Yeh2014-11-076-103/+273
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | keys" into lmp-mr1-dev * commit '3d31e157d0df55287aa53adabbaf6884fd12e911': Camera2/3 HAL test: cleanup deprecated keys
| * | | | | am 8d3acf6e: Merge "Camera2/3 HAL test: cleanup deprecated keys" into ↵Yin-Chia Yeh2014-11-076-103/+273
| |\ \ \ \ \ | | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | lmp-mr1-dev * commit '8d3acf6e6e58c392fcdc4913e49c6b1ded8117c8': Camera2/3 HAL test: cleanup deprecated keys
| | * | | | Merge "Camera2/3 HAL test: cleanup deprecated keys" into lmp-mr1-devYin-Chia Yeh2014-11-076-103/+273
| | |\ \ \ \
| | | * | | | Camera2/3 HAL test: cleanup deprecated keysYin-Chia Yeh2014-11-066-103/+273
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug:16877860 Change-Id: I1eddec02cefa39692f63cc54cc40b75f449516a7
* | | | | | | am 1bb4d46c: am 700d2c2c: Merge "Fix typo and add more detailed comments on ↵Daniel Estrada Alva2014-11-071-7/+38
|\ \ \ \ \ \ \ | |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | what we expect from GPS HAL. b/16727892" into lmp-mr1-dev * commit '1bb4d46ccf8d36389acaf58321da4a35fc610afe': Fix typo and add more detailed comments on what we expect from GPS HAL. b/16727892
| * | | | | | am 700d2c2c: Merge "Fix typo and add more detailed comments on what we ↵Daniel Estrada Alva2014-11-071-7/+38
| |\ \ \ \ \ \ | | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | expect from GPS HAL. b/16727892" into lmp-mr1-dev * commit '700d2c2cf512b1b2c167aa8a1841ea3ba5778279': Fix typo and add more detailed comments on what we expect from GPS HAL. b/16727892
| | * | | | | Merge "Fix typo and add more detailed comments on what we expect from GPS ↵Daniel Estrada Alva2014-11-061-7/+38
| | |\ \ \ \ \ | | | |_|/ / / | | |/| | | | | | | | | | | HAL. b/16727892" into lmp-mr1-dev
| | | * | | | Fix typo and add more detailed comments on what we expect from GPS HAL.Tsuwei Chen2014-10-311-7/+38
| | | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | b/16727892 Change-Id: I73d3ea3e743846b9e579c78b80d7a393319c09f1
* | | | | | am 0da47779: am 0e6a158e: Merge "power: Adds setFeature functionality for ↵Ruchi Kandoi2014-11-011-0/+20
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the power module" into lmp-mr1-dev * commit '0da47779b033266672fc511604df0bc02530ddb7': power: Adds setFeature functionality for the power module
| * | | | | am 0e6a158e: Merge "power: Adds setFeature functionality for the power ↵Ruchi Kandoi2014-11-011-0/+20
| |\ \ \ \ \ | | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | module" into lmp-mr1-dev * commit '0e6a158eaf1cb3309ea8737b268fb726324fa7fe': power: Adds setFeature functionality for the power module
| | * | | | Merge "power: Adds setFeature functionality for the power module" into ↵Ruchi Kandoi2014-10-311-0/+20
| | |\ \ \ \ | | | |/ / / | | |/| | | | | | | | | lmp-mr1-dev
| | | * | | power: Adds setFeature functionality for the power moduleRuchi Kandoi2014-10-311-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds the setFeature callback which could be used to enable/disable power as well as performance specific features. POWER_FEATURE_DOUBLE_TAP_WAKE is added which uses the setFeature callback to enable/disable the double-tap feature. Bug: 16875464 Change-Id: I5ed9b5be8fddedf9861eedd962def421d9fac5bf
* | | | | | am a7e50f68: am 5b592d7c: am 793a854e: Fix remote submix crash on null sinkJean-Michel Trivi2014-10-270-0/+0
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | * commit 'a7e50f68e9437b51ca843b8d5b6ebf60d225eb5f':