summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* camera: Use int values instead of floats where applicableSteve Kondik2010-09-132-51/+51
| | | | | Settings for brightness/contrast/saturation/sharpness are integers, not floats. Update API to reflect this.
* Fix the logic around killing sound & vibrations for quiet hours.Evan Charlton2010-09-111-2/+4
| | | | | | | The logic for quiet hours was wrong; this was causing sound & vibration to be killed when it shouldn't be. Change-Id: I7f3094de03e46c418f46608d46056005a1fb0684
* Merge "Updated French translations: - Reboot options - Application killed" ↵Steve Kondik2010-09-112-0/+28
|\ | | | | | | into froyo
| * Updated French translations:Sébastien Vaucher2010-09-102-0/+28
| | | | | | | | | | | | | | - Reboot options - Application killed Change-Id: I6b9db0f9d39cc52feab6aba307728650c010cea5
* | Make ProgressBar correctly invalidate itself on state change.Evan Charlton2010-09-101-1/+2
|/ | | | | | | ProgressBar doesn't correctly invalidate itself when state changes from indeterminate to determinate and back. This fixes it. Change-Id: I6d27b4c246eff8ddd8ca33ad662ab1f81d4173d2
* Merge "Updated Italian Translation: long press close toast message" into froyoSteve Kondik2010-09-101-0/+2
|\
| * Updated Italian Translation: long press close toast messageEug892010-09-101-0/+2
| |
* | Merge "Allow the user to define 'quiet hours' for notifications." into froyoSteve Kondik2010-09-102-15/+113
|\ \
| * | Allow the user to define 'quiet hours' for notifications.Evan Charlton2010-09-092-15/+113
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Introduces a notion of user-defined 'quiet hours'. During this period, notifications will be: (1) silenced, (2) have vibrations removed, and (3) have their requested colors muted (to dim the LED on capable hardware). Note that (3) works well on Nexus One and gracefully degrades on sapphire. That is, LED colors are reduced, but hardware still displays them the same. Bug: 2164 Bug: 2252 Change-Id: I66b4dbab8ccc30741b15629fb713ff18b4511b47
* | | Merge "Update Japanese translation: "toast_reboot_recommend" and ↵Steve Kondik2010-09-101-0/+6
|\ \ \ | | | | | | | | | | | | "app_killed_message"" into froyo
| * | | Update Japanese translation: "toast_reboot_recommend" and "app_killed_message"Takuo Kitame2010-09-101-0/+6
| | |/ | |/|
* | | Merge "Use floating point DSP on armeabi-v7a" into froyoSteve Kondik2010-09-103-108/+264
|\ \ \ | |/ / |/| |
| * | Use floating point DSP on armeabi-v7aAntti S. Lankila2010-09-093-108/+264
| |/
* | Add string for longpress close toast messagekmobs2010-09-091-0/+3
|/
* Merge "Kill foreground process by long-pressing BACK" into froyoSteve Kondik2010-09-091-0/+7
|\
| * Kill foreground process by long-pressing BACKEvan Charlton2010-09-071-0/+7
| | | | | | | | | | | | | | | | | | | | This patch allows the user to force the running foreground application to be killed. One example use case for this is applications which trap buttons, leaving the user stuck. Another would be a memory-heavy application that traps the BACK button (so they user wouldn't want to leave it in memory by pressing HOME). Browser is a good example of this second use case. Change-Id: If86b9adebbec6bf88a5682ac612a505d4b26fe66
* | Merge "camera: Add autofocus support to the media recorder" into froyoSteve Kondik2010-09-0713-1/+85
|\ \
| * | camera: Add autofocus support to the media recorderSteve Kondik2010-09-0613-1/+85
| |/
* | Merge "Add noise-shaped dithering support" into froyoSteve Kondik2010-09-074-23/+63
|\ \ | |/ |/|
| * Add noise-shaped dithering supportAntti S. Lankila2010-09-064-23/+63
| | | | | | | | | | | | | | Used rectangular probability distribution function before by accident, depite calculating the high-passed triangular probability density function I intended to use. This commit rectifies the mistake and also adds noise-shaped error feedback similar to JACK.
* | Merge "Camera : Clean up old camera client properly" into froyoSteve Kondik2010-09-051-4/+14
|\ \
| * | Camera : Clean up old camera client properlySravank2010-09-051-4/+14
| |/ | | | | | | | | | | | | | | | | Terminate the old client connection properly when an ANR occurs and the user requests to re-launch the camera application. CRs-fixed: 250354 Change-Id: I9989aa32ff1ecd1a3a49a3155a27d02a18a5a87d
* | Merge "Memory leak in TextKeyListener." into froyoSteve Kondik2010-09-051-2/+5
|\ \
| * | Memory leak in TextKeyListener.Mathias Jeppsson2010-09-041-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If a call to getPrefs is made after weak reference to content resolver is gone, a new observer will be created and registered at the resolver. At registration, the resolver will allocate ObserverEntry objects that will eventually fill the JNI global reference pool. There is no need to create and register a new observer if one is already registered. Change-Id: If8442b3370299980b73d4ea83757c5eae6a85408
* | | Merge "Prevent key dispatch ANR on rapid change of orientation." into froyoSteve Kondik2010-09-051-0/+2
|\ \ \ | |_|/ |/| |
| * | Prevent key dispatch ANR on rapid change of orientation.Marcus Oakland2010-09-041-0/+2
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rapidly opening and closing the keyboard slider while playing a track on the music player and touching the screen to start the key dispatch timer, an ANR could occur because the 500ms timeout occured with mWasFrozen true, causing waitedFor to be set to zero and mWasFrozen to be set to false. If the 500ms timeout then occured again before the mWasFrozen frozen flag was set to true again, the value of waitedFor was recalculated and if this indicated that the keyDispatchingTimeout had elapsed then a "key dispatching" ANR was raised. The intention was to restart the timeout checks if we were frozen during configuration change, and this is properly achieved by setting startTime to the current time so that the subsequent recalculation of waitedFor is from this new point. Change-Id: I6626c4bfff82ebe3d3401fed15263d09fe2b69ad
* | fix buildKoushik Dutta2010-09-032-0/+3
|/ | | | Change-Id: I7394b9f97c82d27fe65e010ef8cfb990ff466b75
* Merge "Framework fixes required to work with the fixed wifi proxy settings." ↵Steve Kondik2010-09-032-9/+77
|\ | | | | | | into froyo
| * Framework fixes required to work with the fixed wifi proxy settings.Alex Boag-Munroe2010-09-032-9/+77
| |
* | Merge "framework: Fix for race condition in NativeDaemonConnector." into froyoSteve Kondik2010-09-031-1/+2
|\ \ | |/ |/|
| * framework: Fix for race condition in NativeDaemonConnector.Alexey Roslyakov2010-09-021-1/+2
| | | | | | | | | | | | | | | | NativeDaemonConnector calls onDaemonConnected() callback function. In case of MountService callback function calls mConnector.doListCommand, and exception occurs since mOutputStream is not initialized yet. Change-Id: I5ecd3980a5e5098bce9bae434ac6e3cab9bf7067
* | Merge "Add lowpass fix variable, alter constants, replace for loop." into froyoSteve Kondik2010-09-031-12/+60
|\ \
| * | Add lowpass fix variable, alter constants, replace for loop.optedoblivion2010-08-271-12/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed whitespace issues. Fix moar whitespaces changed to if else if Take out tabs
* | | Merge "Estimate center channel and avoid DSP on it" into froyoSteve Kondik2010-09-032-7/+25
|\ \ \
| * | | Estimate center channel and avoid DSP on itAntti S. Lankila2010-09-022-7/+25
| | | | | | | | | | | | | | | | | | | | Also fixes reverb like I originally intended it and tweaks parameters a little.
* | | | This change is a component of CMParts theme load/save changes:mtwebster2010-09-022-11/+33
| | | | | | | | | | | | | | | | | | | | Removed a couple color setting that shouldn't be "backed up" here (use xml files instead like everything else) Added an HDPI-only setting to aid theme builders with battery alignment issues. This will be settable ONLY in xml files.
* | | | Merge "use local variable p" into froyoSteve Kondik2010-09-021-1/+1
|\ \ \ \
| * | | | use local variable proot2010-09-011-1/+1
| | | | | | | | | | | | | | | | | | | | Change-Id: I3744e0ea4bd5ca67b5e23287071abb9da1cf2a20
* | | | | Merge "openvpn --remote should use host name instead of ip address" into froyoSteve Kondik2010-09-021-1/+1
|\ \ \ \ \ | |/ / / /
| * | | | openvpn --remote should use host name instead of ip addressroot2010-09-011-1/+1
| | |_|/ | |/| | | | | | | | | | Change-Id: I02752f9ca9f00e504506a45ad2183a4d4532e74c
* | | | Merge "Breaks other Android clearable notifications. Correct fix is commit ↵Steve Kondik2010-09-021-2/+1
|\ \ \ \ | | | | | | | | | | | | | | | id 21e55b4df85ccadd9809ef188e1de51942f20eb1" into froyo
| * | | | Breaks other Android clearable notifications. Correct fix is commit id ↵Alex Boag-Munroe2010-08-291-2/+1
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | 21e55b4df85ccadd9809ef188e1de51942f20eb1 Revert "Fixed ADB Pulsing when it shouldn't." This reverts commit 7b41e023a733610c0e34744a3dc6f3682b5318e2.
* | | | Merge "Display headset icon in notification bar" into froyoSteve Kondik2010-09-024-0/+20
|\ \ \ \ | |_|/ / |/| | |
| * | | Display headset icon in notification barDung Nguyen2010-08-264-0/+20
| | | |
* | | | Make Headphone DSP with just 1 biquadAntti S. Lankila2010-09-022-20/+7
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Subtracting the left and right channels could be argued to separate the center channel from the left/right channel and the DSP therefore gets applied to panned sounds only. This halves the cost of the filtering and eliminates the bass boost issue that bs2b compensates for with a highboost filter. I also adjusted the delay-to-level spatial filter to try to get slightly more consistent perception of panning across the frequency spectrum.
* | | Clean up whitespaces.Koushik Dutta2010-08-271-2/+2
| | |
* | | Remove debug logging.Koushik Dutta2010-08-271-1/+0
| | |
* | | Add support for mounting and sharing of multiple volumes to MountService.Koushik Dutta2010-08-271-88/+104
| |/ |/|
* | Fixed ADB Pulsing when it shouldn't.Pedlar2010-08-271-1/+2
| |
* | Added Norwegian translation for reboot optionsHenning Morud2010-08-261-0/+10
| |