Commit Graph

4299 Commits

Author SHA1 Message Date
Mathias Agopian
d18afab9d6 fix [2122448] android_native_window_t::setUsage() only reallocates the first buffer 2009-09-15 17:34:04 -07:00
Android (Google) Code Review
1a3f52c9ac Merge change 25128 into eclair
* changes:
  Support CbYCrY -> RGB565 color conversion in IOMXRenderer.
2009-09-15 17:48:33 -04:00
Android (Google) Code Review
aa503d787a Merge change 25101 into eclair
* changes:
  Added an API IOMX::createRendererFromJavaSurface.
2009-09-15 17:48:22 -04:00
Android (Google) Code Review
c063c00905 Merge change 25132 into eclair
* changes:
  fix ContentProviderOperationTest
2009-09-15 17:42:25 -04:00
Android (Google) Code Review
91c05074c1 Merge change 25124 into eclair
* changes:
  Add more error message if the script failed to pull result file from device.
2009-09-15 17:18:02 -04:00
Android (Google) Code Review
7e807d85c3 Merge change 24955 into eclair
* changes:
  	new file:   tests/MediaFrameworkTest/src/com/android/mediaframeworktest/MediaProfileReader.java 	modified:   tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/MediaRecorderTest.java Added a new test suite which parse the system media properties and group in into the high quality and low quality recording tests.
2009-09-15 17:10:54 -04:00
Android (Google) Code Review
f63b7ac2c4 Merge change 25117 into eclair
* changes:
  Preserve ListView's pressed state when the adapter changes its content while the user is pressing an item.
2009-09-15 16:57:53 -04:00
Dirk Dougherty
17556395d6 am 4be629f2: Update sizes/checksums for SDK packages.
Merge commit '4be629f2548483c37483904f1c9121e8fc248640' into eclair

* commit '4be629f2548483c37483904f1c9121e8fc248640':
  Update sizes/checksums for SDK packages.
2009-09-15 13:47:02 -07:00
Scott Main
72489b3fb6 am ca75d7f5: docs only. superficial typo
Merge commit 'ca75d7f59aa4bfdc124397ce2b61942c80b3350a' into eclair

* commit 'ca75d7f59aa4bfdc124397ce2b61942c80b3350a':
  docs only.
2009-09-15 13:46:54 -07:00
Android (Google) Code Review
c55e65e724 Merge change 25110 into eclair
* changes:
  synchronize access to pictureReady, copyContentPicture
2009-09-15 16:38:15 -04:00
Android (Google) Code Review
c4df531927 Merge change 25109 into eclair
* changes:
  Some SMS logging improvements.
2009-09-15 16:37:36 -04:00
Jean-Michel Trivi
88c226c3b2 am b5308a70: Merge change 24816 into donut
Merge commit 'b5308a7051fedacf289470c8a7e21b63af9d4db8' into eclair

* commit 'b5308a7051fedacf289470c8a7e21b63af9d4db8':
  TextToSpeech javadoc update.
2009-09-15 13:18:46 -07:00
Scott Main
0dadd607ff am 528954c4: docs only. fix sample code errors per bug 2115299
Merge commit '528954c4d63980c0515528624130477f921cbc60' into eclair

* commit '528954c4d63980c0515528624130477f921cbc60':
  docs only.
2009-09-15 13:18:34 -07:00
Android (Google) Code Review
c33bd9d541 Merge change 25090 into eclair
* changes:
  Move backlight brightness from HardwareService to PowerManager
2009-09-15 15:50:51 -04:00
Android (Google) Code Review
e0960fc781 Merge change 25100 into eclair
* changes:
  Implement Object readback.
2009-09-15 15:40:09 -04:00
Android (Google) Code Review
66fc12f0ad Merge change 24990 into eclair
* changes:
  change to use the new CALLER_IS_SYNCADAPTER flag
2009-09-15 15:26:42 -04:00
Android (Google) Code Review
ab99e30ffb Merge change 25048 into eclair
* changes:
  Revert "Deprecate showSearchIconAsBadge and icon search attrs"
2009-09-15 14:51:56 -04:00
Android (Google) Code Review
891edaa44e Merge change 25089 into eclair
* changes:
  DockObserver wakes the display when broadcasting a change 	- normal display timeout applies after wake
2009-09-15 14:44:34 -04:00
Android (Google) Code Review
dfca93871a Merge change 25078 into eclair
* changes:
  Fix FileObserverTest#testRun.
2009-09-15 14:18:57 -04:00
Android (Google) Code Review
2ee0d98f9a Merge change 25059 into eclair
* changes:
  special-case coordinate conversion when we are taking content coordinates to be invalidate. We need to round "out" these, to account for the slop in antialiasing, rather than using the existing routines that (correctly) round.
2009-09-15 13:19:56 -04:00
Android (Google) Code Review
d3e7a6341c Merge change 24998 into eclair
* changes:
  Add Panasonic KX-TH112 to blacklist.
2009-09-15 11:29:52 -04:00
Android (Google) Code Review
e5b0c94708 Merge change 25050 into eclair
* changes:
  Fix issue 2118464: cannot play ring tones and notifications after disconnecting BT headset while in call.
2009-09-15 11:29:23 -04:00
Android (Google) Code Review
e587271895 Merge change 25012 into eclair
* changes:
  PowerManagerService: Use 5 cm threshold for the proximity sensor.
2009-09-15 10:32:13 -04:00
Android (Google) Code Review
c7f1c4c191 Merge change 23619 into eclair
* changes:
  Add automatic lighting control framework
2009-09-15 10:29:26 -04:00
Eric Laurent
b3687ae925 Fix issue 2118464: cannot play ring tones and notifications after disconnecting BT headset while in call.
The problem comes from the fact that when the duplicated output is closed after BT headset disconnection, the OUTPUT_CLOSED notification is not sent to AudioSystem. Then the mapping between notification stream and duplicated output cached in AudioSystem is not cleared and next time a notification is played, the duplicated output is selected and the createTrack() request is refused by AudioFlinger as the selected output doesn't exist.
The notification is ignored by AudioFlinger because when it is sent by the terminating playback thread, the thread has already been removed from the playback thread list.

The fix consists in sending the notification in closeOutput() and not when exiting the playback thread.
The same fix is applied to record threads.
2009-09-15 07:10:12 -07:00
Chih-Chung Chang
00900eb354 Fix 2083478: Camera needs an auto-focus cancel API
Change-Id: I13bda991b32aee47e82b5cf9d43b3021c416a9a2
2009-09-15 18:29:03 +08:00
Android (Google) Code Review
f5733b2938 Merge change 24872 into eclair
* changes:
  Fix issue 2115450: a2dp thread is started, even though we are only connected to headset and not playing music.
2009-09-15 02:26:19 -04:00
Android (Google) Code Review
acfb3cf865 Merge change 25013 into eclair
* changes:
  Various fixed for back key handling.
2009-09-15 00:26:45 -04:00
Android (Google) Code Review
b44070812a Merge change 24977 into eclair
* changes:
  add support for RGBX_8888 surfaces in SurfaceFlinger
2009-09-14 21:11:56 -04:00
Mathias Agopian
816d7d0268 add support for RGBX_8888 surfaces in SurfaceFlinger 2009-09-14 18:10:30 -07:00
Android (Google) Code Review
0cb56ea4a0 Merge change 24887 into eclair
* changes:
  Fix http://b/issue?id=2098873 (drawing glitch in SeekBar).
2009-09-14 21:07:00 -04:00
Android (Google) Code Review
14c6452ac4 Merge change 24850 into eclair
* changes:
  Last big work on #1991910: Make swipes work with capacitive keys
2009-09-14 20:56:46 -04:00
Android (Google) Code Review
7bad1e2052 Merge change 24662 into eclair
* changes:
  Fix URI returned by IccProvider.
2009-09-14 20:30:43 -04:00
Android (Google) Code Review
7abf9adcca Merge change 24968 into eclair
* changes:
  Minor perf tweak for fountain.
2009-09-14 20:15:31 -04:00
Android (Google) Code Review
7ae8a14b7d Merge change 24921 into eclair
* changes:
  add system properties for experimenting with sync timeouts.
2009-09-14 19:30:37 -04:00
Android (Google) Code Review
7dcffed3f5 Merge change 24948 into eclair
* changes:
  fix [2117464] SF can crash when calling dumpsys
2009-09-14 19:02:19 -04:00
Android (Google) Code Review
ab0fb1be89 Merge change 24947 into eclair
* changes:
  make sure to update the tail pointer when undoing a dequeue
2009-09-14 19:01:40 -04:00
Mathias Agopian
4790a3c1a2 fix [2117464] SF can crash when calling dumpsys 2009-09-14 15:59:16 -07:00
Android (Google) Code Review
abff9f77d5 Merge change 24932 into eclair
* changes:
  Added a little more logging in OMXCodec.cpp for vendors to be able to reproduce issues...
2009-09-14 18:48:58 -04:00
Mathias Agopian
c7d5601081 make sure to update the tail pointer when undoing a dequeue 2009-09-14 15:48:42 -07:00
Android (Google) Code Review
94b4a1cbcf Merge change 24829 into eclair
* changes:
  Some optizations to wallpaper drawing/scrolling.
2009-09-14 18:45:42 -04:00
Android (Google) Code Review
25c118e7e1 Merge change 24841 into eclair
* changes:
  process: Switch to common cutils sched_policy api
2009-09-14 18:31:39 -04:00
Android (Google) Code Review
e2a605ee35 Merge change 24931 into eclair
* changes:
  Fix the bogus crashes in layout and reliability tests (the device actually went offline).
2009-09-14 18:21:51 -04:00
Android (Google) Code Review
4009d88c72 Merge change 24927 into eclair
* changes:
  Fix a possible NPE in View.
2009-09-14 18:15:59 -04:00
Android (Google) Code Review
46cd3afb02 Merge change 24814 into eclair
* changes:
  Enable log message for tracking issue #2092299.
2009-09-14 17:37:56 -04:00
Android (Google) Code Review
cbb5afe266 Merge change 24847 into eclair
* changes:
  PowerManagerService: Fix keyboard backlight support:
2009-09-14 15:39:16 -04:00
Android (Google) Code Review
aa8c6c7f2c Merge change 24903 into eclair
* changes:
  Fix some LayoutBridge javadoc.
2009-09-14 15:05:49 -04:00
Android (Google) Code Review
cfd82e1078 Merge change 24902 into eclair
* changes:
  Add "rtsp" to the list of URL schemes that get linkified.
2009-09-14 14:54:42 -04:00
Android (Google) Code Review
16b30190fa Merge change 24898 into eclair
* changes:
  Fix the parsing for instrumentation result, some Java exceptions are not reported right now
2009-09-14 14:29:15 -04:00
Android (Google) Code Review
45ae6551f0 Merge change 24816 into donut
* changes:
  TextToSpeech javadoc update.
2009-09-14 13:54:00 -04:00