Android (Google) Code Review
054fbe7829
Merge change Ia48b3f2a into eclair
...
* changes:
Fix #2313887 : Device doesn't boot after rebooting device...
2009-12-09 18:41:04 -08:00
Android (Google) Code Review
d23bf4c1e7
Merge change I06398298 into eclair
...
* changes:
docs: add images used in BT developer guide.
2009-12-09 18:20:21 -08:00
Android (Google) Code Review
0ef402831a
Merge change Ie4cdb5a3 into eclair
...
* changes:
Add --custom-package to aapt
2009-12-09 18:09:49 -08:00
Android (Google) Code Review
9eab12e8c4
Merge change I3c299167 into eclair
...
* changes:
Import revised translations. DO NOT MERGE
2009-12-09 17:59:07 -08:00
Android (Google) Code Review
9c8ab6a20a
Merge change I54400322 into eclair
...
* changes:
Adding screenshots for development/samples/ContactManager documentation.
2009-12-09 17:51:34 -08:00
Android (Google) Code Review
6f346aca9b
Merge change Icced7a09 into eclair
...
* changes:
Maintain a list of all Bluetooth docks.
2009-12-09 17:00:09 -08:00
Mathias Agopian
c5e181f8b3
fix [2315900] Monochrome camera preview screen after launching camera
...
this was introduced by a recent change. when we try to figure out the size of
the yuv->rgb temporary buffer, the output resolution has not been computed yet
and an invalid buffer size is used. most of the time the allocation fails
and the system reverts to "standard" GL will uses onle the Y plane.
the allocation of the temporary buffer is moved to onDraw(), the first
time it is called, by that time, the window is positioned properly.
2009-12-09 15:26:29 -08:00
Android (Google) Code Review
cb94f70d5c
Merge change I0f73439a into eclair
...
* changes:
Partially fix bug 2111240 Detect docking / undocking event by reporting to the AudioPolicyManager a new forced usage AudioSystem::FOR_DOCK which can take the FORCE_NONE, FORCE_BT_DOCK or FORCE_WIRED_ACCESSORY values. This CL is complemented by an update of the APM to take into account the FOR_DOCK usage.
2009-12-09 11:46:50 -08:00
Android (Google) Code Review
654fd5c185
Merge change Id22c0137 into eclair
...
* changes:
Throttle low priority RS threads by sleeping once per frame to avoid starving other apps.
2009-12-09 11:07:16 -08:00
Android (Google) Code Review
8d96b7af4b
Merge change Ib548dbb2 into eclair
...
* changes:
improve video performance to minimize the tearing effect seen in 720p movies
2009-12-09 01:39:23 -08:00
Mathias Agopian
69ff5de1b7
improve video performance to minimize the tearing effect seen in 720p movies
...
always rescale videos to their target size using copybit during yuv->rgb
conversion. this improves performance of the GPU pass and doesn't require
linear filtering to be enabled. Also always use 16-bits buffers.
the average processing time for 720p dropped from ~50ms to ~30ms
2009-12-08 19:29:38 -08:00
Android (Google) Code Review
4f22b67c93
Merge change Ifd95b9f5 into eclair
...
* changes:
Fix #2313382 : SECURITY: Live wallpapers get touch events through the lock screen.
2009-12-08 18:40:37 -08:00
Android (Google) Code Review
4d104e6d66
Merge change If990cab0 into eclair
...
* changes:
Make sure to acknowledge stale broadcasts
2009-12-08 14:07:50 -08:00
Android (Google) Code Review
fe07788498
Merge change I705b1d33 into eclair
...
* changes:
GpsLocationProvider: Do not release wakelock until the GPS engine is fully off
2009-12-07 17:17:47 -08:00
Android (Google) Code Review
b7e2059005
Merge change Ia5ef9acd into eclair
...
* changes:
remove an old STOPSHIP comment
2009-12-07 16:59:46 -08:00
Android (Google) Code Review
d958f3c7bb
Merge change I38227501 into eclair
...
* changes:
Add API to get Active Sinks.
2009-12-07 15:49:50 -08:00
Android (Google) Code Review
6c0dae34e2
Merge change Ib097fbbf into eclair
...
* changes:
DO NOT MERGE Reverting change I53e91db7.
2009-12-07 15:27:19 -08:00
Android (Google) Code Review
ec68a21530
Merge change I204e4787 into eclair
...
* changes:
Fix updating Bluetooth icon on status bar and for Wifi.
2009-12-07 15:27:02 -08:00
Android (Google) Code Review
ac16968db1
Merge change I53e91db7 into eclair
...
* changes:
Filter out minor Connectivity Notifications.
2009-12-07 15:04:52 -08:00
Android (Google) Code Review
587385b096
Merge change I771bebb9 into eclair
...
* changes:
Add Java exceptions to catch RS calls with no context or no surface.
2009-12-07 12:55:38 -08:00
Eric Laurent
fed9382a6a
Fix issue 2306779: Runtime restart - Init failed at android.media.ToneGenerator.
...
The ToneGenerator failed to initialize because no more tracks were available in AudioFlinger mixer.
All tracks were used because the duplicating output was failing to free the tracks on audio hardware output mixer when exiting due to a misplaced test on output activity: output tracks where only freed if the duplicating output was active when exiting.
The fix consists in freeing the output tracks when the duplicating thread is destroyed without condition.
2009-12-07 12:30:22 -08:00
Android (Google) Code Review
0aa2563bb7
Merge change I9cc489a2 into eclair
...
* changes:
Fix issue 2304669: VoiceIME: starting and canceling voice IME yields persistent "error 8" state on future attempts and breaks voice search.
2009-12-07 11:00:54 -08:00
Android (Google) Code Review
f5009537a4
Merge change Ibb9b1de1 into eclair
...
* changes:
1) Capture the start memory before the test started 2) Report the mem diff to zero if it is negative.
2009-12-07 10:51:16 -08:00
Eric Laurent
5291095089
Fix issue 2304669: VoiceIME: starting and canceling voice IME yields persistent "error 8" state on future attempts and breaks voice search.
...
Fixed AudioFlinger::openInput() broken in change ddb78e7753be03937ad57ce7c3c842c52bdad65e
so that an invalid IO handle (0) is returned in case of failure.
Applied the same correction to openOutput().
Modified RecordThread start procedure so that a failure occuring during the first read from audio input stream is detected and causes
the record start to fail.
Modified RecordThread stop procedure to make sure that audio input stream fd is closed before we exit the stop function.
Fixed AudioRecord JAVA and JNI implementation to take status of native AudioRecord::start() into account
and not change mRecordingState to RECORDSTATE_RECORDING if start fails.
2009-12-07 05:37:47 -08:00
Dima Zavin
a9ec9be195
Revert "When using MDP, we needed to use a texture for diming."
...
This reverts commit bf0c320afbf6bf2441916755ecb443b64afbe73f.
2009-12-07 00:17:06 -08:00
Android (Google) Code Review
d313000d3a
Merge change Ibe1c422a into eclair
...
* changes:
If the usage stats file doesn't exist in the first place there is no need to backup and short return.
2009-12-04 14:59:43 -08:00
Android (Google) Code Review
bc8764ae77
Merge change I397b6a93 into eclair
...
* changes:
Don't accidentally signal multiple exceptions in setThreadPriority()
2009-12-04 12:51:44 -08:00
Android (Google) Code Review
5da9768e5c
Merge change I8c5f2fc3 into eclair
...
* changes:
Fix invalidate code path (#2273209 ).
2009-12-04 10:22:47 -08:00
Android (Google) Code Review
5def0579f3
Merge change I8b63ab66 into eclair
...
* changes:
Better animation for sliding widget.
2009-12-03 22:14:19 -08:00
Android (Google) Code Review
97b51460d0
Merge change Iaa7edda4 into eclair
...
* changes:
don't reschedule syncs that failed with a tooManyRetries error
2009-12-03 17:10:59 -08:00
Android (Google) Code Review
f281db10d3
Merge change Ic73ec39b into eclair
...
* changes:
DO NOT MERGE. Implement WAR which should prevent the white square bug from appearing on user devices. If we see a 0 texture id during bind for rendering, attempt to re-upload. If this fails log debug info and restart the app.
2009-12-03 16:15:46 -08:00
Android (Google) Code Review
8691e9ef19
Merge change Ia70bd8c4 into eclair
...
* changes:
add BluetoothChat sample app to the dev guide
2009-12-03 16:06:52 -08:00
Android (Google) Code Review
aa3255a32d
Merge change I00d0b54a into eclair
...
* changes:
surfaceflinger: remove un-cached buffer hack for SGX
2009-12-03 15:30:23 -08:00
Erik Gilling
1bd48776eb
surfaceflinger: remove un-cached buffer hack for SGX
...
Signed-off-by: Erik Gilling <konkers@android.com>
2009-12-03 14:09:31 -08:00
Android (Google) Code Review
417fe604e9
Merge change I79420b02 into eclair
...
* changes:
Add support for Car Dock.
2009-12-03 11:49:38 -08:00
Android (Google) Code Review
438e014812
Merge change I33e0f00e into eclair
...
* changes:
docs: fix markup error in xml sample
2009-12-03 11:40:22 -08:00
Android (Google) Code Review
e1e7196c0f
Merge change I9ef88863 into eclair
...
* changes:
Add WindowManagerPolicy.OFF_BECAUSE_OF_PROX_SENSOR to indicate screen was turned off by the proximity sensor.
2009-12-03 10:59:25 -08:00
Android (Google) Code Review
244d729805
Merge change Id5fa58cf into eclair
...
* changes:
Fix timezone issue to comply with EXIF standard.
2009-12-03 10:24:18 -08:00
Android (Google) Code Review
1a16327e47
Merge change Ica5efffe into eclair
...
* changes:
Fix bug 2216426: correct the hdpi star assets for RatingBar.
2009-12-02 21:01:20 -08:00
Android (Google) Code Review
a584cbe32f
Merge change I7b9328c7 into eclair
...
* changes:
Fix issue #2300232 : Bugs in resolving conflicting pointers
2009-12-02 18:51:19 -08:00
Android (Google) Code Review
0c285c1294
Merge change Iaa6e73a6 into eclair
...
* changes:
Revive backup tests
2009-12-02 18:21:49 -08:00
Android (Google) Code Review
91e4152760
Merge change Id86beb99 into eclair
...
* changes:
fix [2291418] Camera preview cannot work in Emulator
2009-12-02 17:09:46 -08:00
Android (Google) Code Review
c15de03df8
Merge change Icc49422a into eclair
...
* changes:
Implement new notification LED blinking logic:
2009-12-02 16:24:15 -08:00
Mathias Agopian
3e8a81e354
fix [2291418] Camera preview cannot work in Emulator
...
The image buffer used by glTexImage2d() would be uninitialized when no copybit engine
can be found.
We now always initialize images, since the abscence of copybit is not necessarily fatal.
2009-12-02 16:23:11 -08:00
Android (Google) Code Review
4fb7951251
Merge change If1f0bf33 into eclair
...
* changes:
Some work on issue #2286804 : sometimes text field doesn't accept input
2009-12-02 16:17:54 -08:00
Android (Google) Code Review
7db8f45d8b
Merge change I721361f1 into eclair
...
* changes:
Add a new priority for Auto Connection of A2DP. DO NOT MERGE.
2009-12-02 16:02:58 -08:00
Android (Google) Code Review
574101140a
Merge change I9fb53a9c into eclair
...
* changes:
add screenshots for the Bluetooth Chat sample app
2009-12-02 15:40:17 -08:00
Android (Google) Code Review
75aa7bddc7
Merge change Id0704505 into eclair
...
* changes:
Import revised translations. DO NOT MERGE
2009-12-02 15:01:35 -08:00
Android (Google) Code Review
7b1451d360
Merge change Iae3ed706 into eclair
...
* changes:
Add new setting for notification light pulsing. Bug #2238250
2009-12-02 08:35:55 -08:00
Android (Google) Code Review
63c33bc9c1
Merge change Ic8231560 into eclair
...
* changes:
sdk doc change for esr: update download zip filenames, add maxSdkVersion warning, misc other changes.
2009-12-01 22:41:22 -08:00