)]}'
{
  "log": [
    {
      "commit": "27366fc9540cb642ee4856957dabffe7ddf1f901",
      "tree": "b3509359b040abfe0055af4345a01520453d112c",
      "parents": [
        "40c1dbf081035f878b96dd67ef112eb49001c087"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Fri Nov 20 09:32:46 2009 -0800"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Mon Nov 23 10:44:30 2009 -0800"
      },
      "message": "Squashed commit of the following:\n\ncommit 1efc38dc3c33fef57b759002db3965ed07a28cb0\nAuthor: Andreas Huber \u003candih@google.com\u003e\nDate:   Thu Nov 19 14:36:14 2009 -0800\n\n    Sending the SEEK-COMPLETE notification temporarily broke seeking backwards in time behaviour. This is now fixed.\n\n    Also, get rid of the semi-random delay after posting buffers to surface flinger in favour of delaying the buffer release until the next frame is displayed.\n\ncommit 51973062eb5ee63fd64b845d72bac517cc3369cf\nAuthor: Andreas Huber \u003candih@google.com\u003e\nDate:   Wed Nov 18 14:01:43 2009 -0800\n\n    Fix one more unit test, properly send seek-complete notification only after seek actually completed.\n\ncommit cb22250b34b1fcfe1bf459723a761fd003950229\nAuthor: Andreas Huber \u003candih@google.com\u003e\nDate:   Wed Nov 18 12:31:36 2009 -0800\n\n    Fix seek-while-paused in AwesomePlayer, revert to using FileSource if MmapSource fails.\n\ncommit 25eb9241138ddf7bb27ce90657116c5f8a94d880\nAuthor: Andreas Huber \u003candih@google.com\u003e\nDate:   Wed Nov 18 12:30:40 2009 -0800\n\n    Support seeking and duration in AMRExtractor, assuming all frames are the same size.\n\ncommit 44192f2ebb7ea3bbd3ba5910025692dbc6a08faa\nAuthor: Andreas Huber \u003candih@google.com\u003e\nDate:   Wed Nov 18 10:21:44 2009 -0800\n\n    MediaPlayerImpl is dead, long live AwesomePlayer.\n\ncommit c5b52d3c0674f5dc94db506afbce52401cceddac\nAuthor: Andreas Huber \u003candih@google.com\u003e\nDate:   Wed Nov 18 09:42:23 2009 -0800\n\n    New implementation of the stagefright mediaplayer.\n"
    },
    {
      "commit": "949c572a16881aa40079a42bf7682637b23eb16a",
      "tree": "5bfc9099a3b1745168a44c2469ecc175d48932e8",
      "parents": [
        "30a4b8a180813ae9a1846fdd7219ebe5592eb06b",
        "e7800946a42c0ebe8e0b3f6eba04a96a9641aaff"
      ],
      "author": {
        "name": "Eric Laurent",
        "email": "elaurent@google.com",
        "time": "Sat Nov 21 00:21:15 2009 -0800"
      },
      "committer": {
        "name": "Android Git Automerger",
        "email": "android-git-automerger@android.com",
        "time": "Sat Nov 21 00:21:15 2009 -0800"
      },
      "message": "am e7800946: Merge change I49f02be9 into eclair\n\nMerge commit \u0027e7800946a42c0ebe8e0b3f6eba04a96a9641aaff\u0027 into eclair-mr2\n\n* commit \u0027e7800946a42c0ebe8e0b3f6eba04a96a9641aaff\u0027:\n  Issue 2265163: Audio still reported routed through earpiece on sholes\n"
    },
    {
      "commit": "e7800946a42c0ebe8e0b3f6eba04a96a9641aaff",
      "tree": "4761b4ea0b5fb01d1a90eb069a1839e6c6445ab4",
      "parents": [
        "256da9fb007ac0722a5b1854befda7e7bed2564e",
        "49f02be9d7fafb8841f75394a90f1409c6f82c1f"
      ],
      "author": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Sat Nov 21 00:18:24 2009 -0800"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Sat Nov 21 00:18:24 2009 -0800"
      },
      "message": "Merge change I49f02be9 into eclair\n\n* changes:\n  Issue 2265163: Audio still reported routed through earpiece on sholes\n"
    },
    {
      "commit": "49f02be9d7fafb8841f75394a90f1409c6f82c1f",
      "tree": "610ce96e47ae1e2c8ead39ba58e43380b6537633",
      "parents": [
        "e4260f4e7da4da32bfab2737018cf9cf75215894"
      ],
      "author": {
        "name": "Eric Laurent",
        "email": "elaurent@google.com",
        "time": "Thu Nov 19 09:00:56 2009 -0800"
      },
      "committer": {
        "name": "Eric Laurent",
        "email": "elaurent@google.com",
        "time": "Thu Nov 19 23:57:45 2009 -0800"
      },
      "message": "Issue 2265163: Audio still reported routed through earpiece on sholes\n\nThis is a second attempt to fix the audio routed to earpiece syndrom.\nThe root cause identified this time is the crash of an application having an active AudioTrack playing on the VOICE_CALL stream type.\nWhen this happens, the AudioTrack destructor is not called and the audio policy manager is not notified of the track stop.\nResults a situation where the VOICE_CALL stream is considered as always in use by audio policy manager which makes that audio is routed to earpiece.\n\nThe fix consists in moving the track start/stop/close notification to audio policiy manager from AudioTrack to AudioFlinger Track objet.\nThe net result is that in the case of a client application crash, the AudioFlinger TrackHandle object (which implements the remote side of the IAudioTrack binder interface) destructor is called which in turn destroys the Track object and we can notify the audio policy manager of the track stop and removal.\n\nThe same modification is made for AudioRecord although no bug related to record has been reported yet.\nAlso fixed a potential problem if record stop is called while the record thread is exiting.\n"
    },
    {
      "commit": "d66a901e6a932e62358ee963831e663a8c655b8e",
      "tree": "0a93a1a9a8ccef2299c00fc70622b0f80b3d0b87",
      "parents": [
        "e4260f4e7da4da32bfab2737018cf9cf75215894"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Nov 19 11:22:36 2009 -0800"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Nov 19 11:24:18 2009 -0800"
      },
      "message": "DO NOT MERGE: Instead of inserting semi-random delays after submission to surface flinger, delay releasing buffers to the next display time to avoid flickering.\n"
    },
    {
      "commit": "2c7664989f7388c0c6cf0ec7d80ffa2704c8c2be",
      "tree": "eca65a517e48f75ff22ea7d60a0a42553cc5f889",
      "parents": [
        "a35f1c63a67df0832d9b3f1aed3e2376367d4398",
        "ea6a38c63b9e9aeb45aa22587c069bd3c5d83df8"
      ],
      "author": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Tue Nov 17 10:46:41 2009 -0800"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Tue Nov 17 10:46:41 2009 -0800"
      },
      "message": "Merge change Iea6a38c6 into eclair-mr2\n\n* changes:\n  Squashed commit of the following:\n"
    },
    {
      "commit": "744043fcbf48c32c2051f222eca552fa2df5dfcb",
      "tree": "bc84dc8cc46fe0b7a7b9ec21228eaf040d3152bb",
      "parents": [
        "8c808187249f473702e0f4bee2147da292490963"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Mon Nov 16 15:34:01 2009 -0800"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Tue Nov 17 10:21:03 2009 -0800"
      },
      "message": "Update FileSource to also accept a file descriptor and a range.\n"
    },
    {
      "commit": "ea6a38c63b9e9aeb45aa22587c069bd3c5d83df8",
      "tree": "a24b9b97b20d16f5343923c4245c4b19985e8717",
      "parents": [
        "a57632fee792d6078a7a61006f5a866c38addd33"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Mon Nov 16 15:43:38 2009 -0800"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Mon Nov 16 15:43:38 2009 -0800"
      },
      "message": "Squashed commit of the following:\n\ncommit 333057b355f8c260c549553b9a0634755c838b6a\nAuthor: Andreas Huber \u003candih@google.com\u003e\nDate:   Fri Nov 13 15:35:48 2009 -0800\n\n    Some more tweaks to AVC encoding on sholes.\n\ncommit 9981d0ee52ec5b8b0182aae733d1571e3ebb8390\nAuthor: Andreas Huber \u003candih@google.com\u003e\nDate:   Thu Nov 12 16:36:57 2009 -0800\n\n    Support for avc encoding, including sholes specific tweaks to pick the right colorspace for the camera to not require transcoding.\n\ncommit 5ba0ebbbd4efca51f3ae1f60e2ca31e7d2cf136d\nAuthor: Andreas Huber \u003candih@google.com\u003e\nDate:   Wed Nov 11 09:50:03 2009 -0800\n\n    Enable actual (camera) video-only recording using h.263 or mpeg4 encoding.\n\ncommit 3fd59c3526a37fe7c696f4a978925d1831c09313\nAuthor: Andreas Huber \u003candih@google.com\u003e\nDate:   Tue Nov 10 14:57:48 2009 -0800\n\n    Allow switching between the PV recorder implementation and one supported by stagefright.\n\n    This is controlled through the property \"media.stagefright.enable-record\".\n"
    },
    {
      "commit": "35ede78ede13fc2c4e7d343f50ca20372a404e06",
      "tree": "2d5bfea1c668196ea7caa827e0107accc8987388",
      "parents": [
        "0a27865a015d9e0401b6b3bff9eedd06d59043b3",
        "91e40e7838d183cb2a9e750edf0a6572f21da21d"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Fri Nov 13 17:33:52 2009 -0800"
      },
      "committer": {
        "name": "Android Git Automerger",
        "email": "android-git-automerger@android.com",
        "time": "Fri Nov 13 17:33:52 2009 -0800"
      },
      "message": "am 91e40e78: Merge change I18e02606 into eclair\n\nMerge commit \u002791e40e7838d183cb2a9e750edf0a6572f21da21d\u0027 into eclair-mr2\n\n* commit \u002791e40e7838d183cb2a9e750edf0a6572f21da21d\u0027:\n  fix some aspects of [2258746] native crash in launcher2\n"
    },
    {
      "commit": "18e026066a95e5d63c2ece8007883b46599373ca",
      "tree": "e7c8d0f1e1cc5283222d635c595da3a2ce1bfc5f",
      "parents": [
        "73f8aa678055598738dfba54c60a1674bcbf02b1"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Fri Nov 13 15:26:29 2009 -0800"
      },
      "committer": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Fri Nov 13 15:26:29 2009 -0800"
      },
      "message": "fix some aspects of [2258746] native crash in launcher2\n\nSurface::validate() could sometimes dereference a null pointer before checking it wasn\u0027t null.\nThis will prevent the application to crash when given bad parameters or used incorrectly.\nHowever, the bug above probably has another cause.\n"
    },
    {
      "commit": "609acfd2a1067f49e51925776484b070a24d8301",
      "tree": "e4aa99e7087476b09fad41c9ef1a30828e979181",
      "parents": [
        "9b94211787b237fd59153f58dd41d738290866c4",
        "1aa9f3cac31a7c2b50fcb3c9259cead8d638ae54"
      ],
      "author": {
        "name": "Eric Laurent",
        "email": "elaurent@google.com",
        "time": "Thu Nov 12 23:10:18 2009 -0800"
      },
      "committer": {
        "name": "Android Git Automerger",
        "email": "android-git-automerger@android.com",
        "time": "Thu Nov 12 23:10:18 2009 -0800"
      },
      "message": "am 1aa9f3ca: Merge change I923d7d72 into eclair\n\nMerge commit \u00271aa9f3cac31a7c2b50fcb3c9259cead8d638ae54\u0027 into eclair-mr2\n\n* commit \u00271aa9f3cac31a7c2b50fcb3c9259cead8d638ae54\u0027:\n  Fix issue 2242614: Wired headset not recognized: bogus \"state\" in ACTION_HEADSET_PLUG broadcast.\n"
    },
    {
      "commit": "1aa9f3cac31a7c2b50fcb3c9259cead8d638ae54",
      "tree": "e98594a27996fdf11fa7a643895e513b28c7ba7d",
      "parents": [
        "5f8f1487be78064e8d653dd2d105d8dd444d6a35",
        "923d7d721d37f6ba5148e7d79d61a4fa48e79df2"
      ],
      "author": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Thu Nov 12 22:45:50 2009 -0800"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Thu Nov 12 22:45:50 2009 -0800"
      },
      "message": "Merge change I923d7d72 into eclair\n\n* changes:\n  Fix issue 2242614: Wired headset not recognized: bogus \"state\" in ACTION_HEADSET_PLUG broadcast.\n"
    },
    {
      "commit": "923d7d721d37f6ba5148e7d79d61a4fa48e79df2",
      "tree": "79d0aae61449c8c048cfc494cf5a3354174749dc",
      "parents": [
        "3c58d279abed1da56b0ece74ded5854c509a42a4"
      ],
      "author": {
        "name": "Eric Laurent",
        "email": "elaurent@google.com",
        "time": "Thu Nov 12 12:09:06 2009 -0800"
      },
      "committer": {
        "name": "Eric Laurent",
        "email": "elaurent@google.com",
        "time": "Thu Nov 12 12:09:06 2009 -0800"
      },
      "message": "Fix issue 2242614: Wired headset not recognized: bogus \"state\" in ACTION_HEADSET_PLUG broadcast.\n\nThe headset state indicated by HeadsetObserver in the broadcast intent ACTION_HEADSET_PLUG was not 0 or 1 as specified in the java doc but contained a bit field indicating the type of headset connected.\n\nModified HeadsetObserver to broacast a state conforming to java doc.\nAdded an extra to intent ACTION_HEADSET_PLUG to indicate if headset has a microphone or not.\nRemoved handling of non standard headset indications from HeadsetObserver.\nRemoved platform specific devices from output devices defined in AudioSystem.\nModified AudioService to use new ACTION_HEADSET_PLUG intent extra instead of bitfield in state.\n"
    },
    {
      "commit": "d0f3228daa9ea26ec959cb79451e6f150648bce8",
      "tree": "40f970764ab4a09055eae27a3166c6a1fbf689bf",
      "parents": [
        "17d176d8570f7d76532afee43853339c60fc9850",
        "c66d53f97b1fe635f576642d5720dcd441e34cce"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Nov 12 10:32:26 2009 -0800"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Nov 12 10:32:26 2009 -0800"
      },
      "message": "resolved conflicts for merge of c66d53f9 to eclair-mr2\n"
    },
    {
      "commit": "c8d7c1492eece9fb382424dfe63dcd1387c43314",
      "tree": "58382df5057496afd093677e4ead5e14cf137e6a",
      "parents": [
        "3e584fc944e3d694b4233450f386bd2a930420bf"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Wed Nov 11 16:33:17 2009 -0800"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Nov 12 09:36:10 2009 -0800"
      },
      "message": "Delegate the platform dependent hardware renderer implementation to a shared library provided by the vendor.\n"
    },
    {
      "commit": "dcaa220ff5f360a29ac8be0eb12a8238ecaa080f",
      "tree": "8af64f607838fa0af5c45057b518c76b552cb0a4",
      "parents": [
        "818a9cf827f282addbf7c8ee23534e08a3aaa358"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Nov 05 12:04:22 2009 -0800"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Nov 05 13:06:17 2009 -0800"
      },
      "message": "DO NOT MERGE: Squashed commit of the following:\n\ncommit 08259dd3dc9026887f9bbfedaf45866eb56ea9bc\nAuthor: Andreas Huber \u003candih@google.com\u003e\nDate:   Thu Nov 5 12:02:31 2009 -0800\n\n    DO NOT MERGE: Use PV for metadata extraction even if stagefright is used for playback.\n\ncommit 991832fe4dc012e51d3d9ed8d647c7f09991858f\nAuthor: Andreas Huber \u003candih@google.com\u003e\nDate:   Thu Nov 5 11:24:11 2009 -0800\n\n    DO NOT MERGE: Do not assert if we encounter OMX_StateInvalid. All bets are off though.\n\ncommit cec45cf302d9218fe79956cbe8a462d7ca3a10bb\nAuthor: Andreas Huber \u003candih@google.com\u003e\nDate:   Mon Oct 26 16:11:54 2009 -0700\n\n    DO NOT MERGE: When freeing an OMX node, attempt to transition it from its current state all the way to \"Loaded\" in order to properly free any allocated buffers.\n\ncommit 34a1e885ef9113d68acbc26d36fcc47fdebbed84\nAuthor: Andreas Huber \u003candih@google.com\u003e\nDate:   Thu Nov 5 11:10:49 2009 -0800\n\n    DO NOT MERGE: Fix heap corruptin in OMXNodeInstance.\n\ncommit 5a47f7439a1298b330541a7e4e647a8b44487388\nAuthor: Andreas Huber \u003candih@google.com\u003e\nDate:   Thu Nov 5 11:08:19 2009 -0800\n\n    DO NOT MERGE: Fix seek-on-initial-read behaviour of OMXCodec.\n\ncommit 45bed64722501b9f411a2940aff5aff4cc4d2e98\nAuthor: Andreas Huber \u003candih@google.com\u003e\nDate:   Thu Nov 5 11:02:23 2009 -0800\n\n    DO NOT MERGE: Renaming string.h to stagefright_string.h to avoid conflicts.\n\ncommit 6738e306a50196f31a73d4fc7b7c45faff639903\nAuthor: Andreas Huber \u003candih@google.com\u003e\nDate:   Thu Oct 15 13:46:54 2009 -0700\n\n    DO NOT MERGE: Reimplement the OMX backend for stagefright.\n\n    Besides a major cleanup and refactoring, OMX is now a singleton living in the media server, it listens for death notifications of node observers/clients that allocated OMX nodes and performs/attempts cleanup.\n\n    Changed APIs to conform to the rest of the system.\n"
    },
    {
      "commit": "fcae6c71794696a074cabf20beeb02fd87853e30",
      "tree": "681e88f22ffa0855ac5a75a049beb223d6a4d96f",
      "parents": [
        "dc0f9efd356e5f212c54f87c7a7ddde5d28046d3",
        "67b692920c18f99b096dce285adc6f7439fa866c"
      ],
      "author": {
        "name": "Eric Laurent",
        "email": "elaurent@google.com",
        "time": "Thu Nov 05 00:01:33 2009 -0800"
      },
      "committer": {
        "name": "Android Git Automerger",
        "email": "android-git-automerger@android.com",
        "time": "Thu Nov 05 00:01:33 2009 -0800"
      },
      "message": "am 67b69292: Merge change I93f500a5 into eclair\n\nMerge commit \u002767b692920c18f99b096dce285adc6f7439fa866c\u0027 into eclair-mr2\n\n* commit \u002767b692920c18f99b096dce285adc6f7439fa866c\u0027:\n  Fix issue 2203561: Sholes: audio playing out of earpiece.\n"
    },
    {
      "commit": "67b692920c18f99b096dce285adc6f7439fa866c",
      "tree": "e8461fd50578bf3f4ad828fc8ae553893603121f",
      "parents": [
        "584bce31b62cdf3efd8a9eb40442c4cc612ce1e6",
        "bda7469d9b1ec6d9c9d6da40ddf64dc39ff271a9"
      ],
      "author": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Thu Nov 05 02:55:26 2009 -0500"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Thu Nov 05 02:55:26 2009 -0500"
      },
      "message": "Merge change I93f500a5 into eclair\n\n* changes:\n  Fix issue 2203561: Sholes: audio playing out of earpiece.\n"
    },
    {
      "commit": "bda7469d9b1ec6d9c9d6da40ddf64dc39ff271a9",
      "tree": "b89b73e6feeadefb4ad958c0359789cf0ae5b90f",
      "parents": [
        "e1e0dc8e6eaec052ebb6b88f5b1223075ce5a356"
      ],
      "author": {
        "name": "Eric Laurent",
        "email": "elaurent@google.com",
        "time": "Wed Nov 04 08:27:26 2009 -0800"
      },
      "committer": {
        "name": "Eric Laurent",
        "email": "elaurent@google.com",
        "time": "Wed Nov 04 23:47:21 2009 -0800"
      },
      "message": "Fix issue 2203561: Sholes: audio playing out of earpiece.\n\nCreate a new IAudioTrack interface to AudioFlinger when start() fails due to a broken pipe error.\nDo the same if start fails due to the same error after time out in obtainBuffer().\nDo not indicate that the AudioTrack is started to AudioPolicyManager if IAudioTrack start fails.\nThis avoids that an AudioTrack keeps a dead IAudioTrack after a media server crash.\n\nSame modifications for AudioRecord.\n\nAdd a flag to ToneGenerator indicating that the callback thread can call Java. Without it, when the media server crashes and restarts, the AudioSystem error callback will crash in JNI if the IAudiotrack is created from AudioTrack callback thread.\n"
    },
    {
      "commit": "3d2d155a87cdd3038a2e6df8741181431cb250e1",
      "tree": "1937cbac3e457fa89938037ae2fbc573ded394c9",
      "parents": [
        "ad278f2276de23197571e486ad387dacc7f346ee",
        "7ed0ceeba54712f76e9a4f2dd4c9197d76813488"
      ],
      "author": {
        "name": "Jean-Michel Trivi",
        "email": "jmtrivi@google.com",
        "time": "Wed Nov 04 12:05:34 2009 -0800"
      },
      "committer": {
        "name": "Android Git Automerger",
        "email": "android-git-automerger@android.com",
        "time": "Wed Nov 04 12:05:34 2009 -0800"
      },
      "message": "am 7ed0ceeb: Merge change I6869df3a into eclair\n\nMerge commit \u00277ed0ceeba54712f76e9a4f2dd4c9197d76813488\u0027 into eclair-mr2\n\n* commit \u00277ed0ceeba54712f76e9a4f2dd4c9197d76813488\u0027:\n  Add new audio sources to support the A1026 recording configurations.\n"
    },
    {
      "commit": "6869df3a5db0ca0037394f0fd14aecc1d80b5b42",
      "tree": "1d2c10ca2bd9fb71002375c8f9f3d61a9dfa2506",
      "parents": [
        "b96a9d9296925fef6a1c0e5ad4d847d96bf9acb5"
      ],
      "author": {
        "name": "Jean-Michel Trivi",
        "email": "jmtrivi@google.com",
        "time": "Tue Nov 03 19:43:21 2009 -0800"
      },
      "committer": {
        "name": "Jean-Michel Trivi",
        "email": "jmtrivi@google.com",
        "time": "Tue Nov 03 19:43:21 2009 -0800"
      },
      "message": "Add new audio sources to support the A1026 recording configurations.\n"
    },
    {
      "commit": "6bce6d87b3fd98e68fb54328fb4dc8e40cd2c293",
      "tree": "d1db8e33e22af4a4906f8f2c48492f1feed338cf",
      "parents": [
        "313953dccb55987d519281990f274d4c1c0d21a5"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Tue Nov 03 16:00:58 2009 -0800"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Tue Nov 03 16:00:58 2009 -0800"
      },
      "message": "Adds a WAVExtractor for 16-bit signed PCM audio wave files.\n"
    },
    {
      "commit": "07d38c66692b7d87415667010c0658202b5a7f39",
      "tree": "e9571801445894dac9baa92d15aa153f18d65973",
      "parents": [
        "6cb76ac37f1b4a36d81db7d7e8652d82b6f1b8b5",
        "8637759a1d34a4adda292579d5f8790587659235"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Tue Nov 03 09:34:40 2009 -0800"
      },
      "committer": {
        "name": "Android Git Automerger",
        "email": "android-git-automerger@android.com",
        "time": "Tue Nov 03 09:34:40 2009 -0800"
      },
      "message": "am 8637759a: Merge change I36d0184e into eclair\n\nMerge commit \u00278637759a1d34a4adda292579d5f8790587659235\u0027 into eclair-mr2\n\n* commit \u00278637759a1d34a4adda292579d5f8790587659235\u0027:\n  fix[2228133] pixelflinger ignores the \"vertical stride\" leading to artifacts when playing back video\n"
    },
    {
      "commit": "8637759a1d34a4adda292579d5f8790587659235",
      "tree": "5146d928142d0c3f246d9cb968db8f5302767bab",
      "parents": [
        "483d29c0ddc9f4c110a8a8788ccd978010d55aa4",
        "36d0184e089831b74de6005f01da9e7b26679bb9"
      ],
      "author": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Mon Nov 02 21:26:54 2009 -0500"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Mon Nov 02 21:26:54 2009 -0500"
      },
      "message": "Merge change I36d0184e into eclair\n\n* changes:\n  fix[2228133] pixelflinger ignores the \"vertical stride\" leading to artifacts when playing back video\n"
    },
    {
      "commit": "36d0184e089831b74de6005f01da9e7b26679bb9",
      "tree": "8a6cb7b2f9e5c53db29bc818a403b26add0c66fe",
      "parents": [
        "989b76aadd92538c7ab4ca00c34508b42fda8cef"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Mon Nov 02 17:48:33 2009 -0800"
      },
      "committer": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Mon Nov 02 17:48:33 2009 -0800"
      },
      "message": "fix[2228133] pixelflinger ignores the \"vertical stride\" leading to artifacts when playing back video\n\nwe lost the concept of vertical stride when moving video playback to EGLImage.\nHere we bring it back in a somewhat hacky-way that will work only for the\nsoftgl/mdp backend.\n"
    },
    {
      "commit": "cd767bfd1c8e3103f99207ecfa34385e76518e82",
      "tree": "533445ad1d5185881897b0c4261a8f56bfa7775b",
      "parents": [
        "1166ff76eb3dbb5304dc40b3056e48c2c9dc7577",
        "d4649b2f8ea8285a4eb3c47e87520c7835e6c672"
      ],
      "author": {
        "name": "Iliyan Malchev",
        "email": "malchev@google.com",
        "time": "Mon Nov 02 15:01:36 2009 -0800"
      },
      "committer": {
        "name": "Android Git Automerger",
        "email": "android-git-automerger@android.com",
        "time": "Mon Nov 02 15:01:36 2009 -0800"
      },
      "message": "am d4649b2f: Merge change Ibaef6141 into eclair\n\nMerge commit \u0027d4649b2f8ea8285a4eb3c47e87520c7835e6c672\u0027 into eclair-mr2\n\n* commit \u0027d4649b2f8ea8285a4eb3c47e87520c7835e6c672\u0027:\n  libbinder: add a NO_CACHING flag to MemoryHeapBase\n"
    },
    {
      "commit": "d4649b2f8ea8285a4eb3c47e87520c7835e6c672",
      "tree": "989351c280eca4db14de2ddc069bd03c230b0d5b",
      "parents": [
        "1d9246e8bb8de624e14c55dce57e93da18cfd7a8",
        "baef6141a3239c7dd9bad0e2cd8a9ece5eef5a7e"
      ],
      "author": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Mon Nov 02 17:55:43 2009 -0500"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Mon Nov 02 17:55:43 2009 -0500"
      },
      "message": "Merge change Ibaef6141 into eclair\n\n* changes:\n  libbinder: add a NO_CACHING flag to MemoryHeapBase\n"
    },
    {
      "commit": "c69e7516482aae626eb550f5dd99f0f2f7a45909",
      "tree": "02e60056aa34474490320d1064a0724efa67851c",
      "parents": [
        "e94261b874b7d0704dade14540dbb9477a828163",
        "ee98c24020c1634b02cde6d333968f04a0de941f"
      ],
      "author": {
        "name": "Eric Laurent",
        "email": "elaurent@google.com",
        "time": "Mon Nov 02 12:40:34 2009 -0800"
      },
      "committer": {
        "name": "Android Git Automerger",
        "email": "android-git-automerger@android.com",
        "time": "Mon Nov 02 12:40:34 2009 -0800"
      },
      "message": "am ee98c240: Merge change I73680cd9 into eclair\n\nMerge commit \u0027ee98c24020c1634b02cde6d333968f04a0de941f\u0027 into eclair-mr2\n\n* commit \u0027ee98c24020c1634b02cde6d333968f04a0de941f\u0027:\n  Fix 2194140: [Passion] Support Audience chip.\n"
    },
    {
      "commit": "ee98c24020c1634b02cde6d333968f04a0de941f",
      "tree": "c5335abd97474e43b86c4b7fb78e7ddc8a6969b6",
      "parents": [
        "989b76aadd92538c7ab4ca00c34508b42fda8cef",
        "f22a0975c442f1f216f16db3ddb27015d72c6532"
      ],
      "author": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Mon Nov 02 15:34:28 2009 -0500"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Mon Nov 02 15:34:28 2009 -0500"
      },
      "message": "Merge change I73680cd9 into eclair\n\n* changes:\n  Fix 2194140: [Passion] Support Audience chip.\n"
    },
    {
      "commit": "d62b063fd4ac0ae1419348ac62c55527cb398fd9",
      "tree": "be6455a28904a8c00fd01a32e8fb3b40874bd49b",
      "parents": [
        "a86861a8684809bf3e3b877a20852483bc889742",
        "b6a6791f381691d4a58fe6972eb9f0b65308ac1f"
      ],
      "author": {
        "name": "Dianne Hackborn",
        "email": "hackbod@google.com",
        "time": "Mon Nov 02 10:52:22 2009 -0800"
      },
      "committer": {
        "name": "Android Git Automerger",
        "email": "android-git-automerger@android.com",
        "time": "Mon Nov 02 10:52:22 2009 -0800"
      },
      "message": "am b6a6791f: Merge change I60413727 into eclair\n\nMerge commit \u0027b6a6791f381691d4a58fe6972eb9f0b65308ac1f\u0027 into eclair-mr2\n\n* commit \u0027b6a6791f381691d4a58fe6972eb9f0b65308ac1f\u0027:\n  Fix issue #2226370: Resource versions match with equality\n"
    },
    {
      "commit": "f22a0975c442f1f216f16db3ddb27015d72c6532",
      "tree": "d335d2d1232687c9e96253ceb4ba0a3e13f13ab8",
      "parents": [
        "31f62008db4b2c3bfd24379b76570fd9bd1de2b3"
      ],
      "author": {
        "name": "Eric Laurent",
        "email": "elaurent@google.com",
        "time": "Mon Nov 02 05:31:33 2009 -0800"
      },
      "committer": {
        "name": "Eric Laurent",
        "email": "elaurent@google.com",
        "time": "Mon Nov 02 10:38:22 2009 -0800"
      },
      "message": "Fix 2194140: [Passion] Support Audience chip.\n\nAdded new input device DEVICE_IN_BACK_MIC.\nAdded new audio source AUDIO_SOURCE_CAMCORDER.\n"
    },
    {
      "commit": "553399518f39cd9f31f2bb6f502866c3c9d6d1a5",
      "tree": "0142f759466336e32bccab5ba2fe7c7341ef5318",
      "parents": [
        "824838d74eb0316f6987a1d98d2d9e9fa8d4e15b"
      ],
      "author": {
        "name": "Dianne Hackborn",
        "email": "hackbod@google.com",
        "time": "Sun Nov 01 21:16:59 2009 -0800"
      },
      "committer": {
        "name": "Dianne Hackborn",
        "email": "hackbod@google.com",
        "time": "Sun Nov 01 21:16:59 2009 -0800"
      },
      "message": "Fix issue #2226370: Resource versions match with equality\n\nAlso fixed turned-around increment of version number for resources. :(\n\nChange-Id: I604137272da984bcd69cee4f174e6b7f2c786e46\n"
    },
    {
      "commit": "baef6141a3239c7dd9bad0e2cd8a9ece5eef5a7e",
      "tree": "50df32f2a31006f4ea4572cffdf390012541027b",
      "parents": [
        "05cb5610fdfb7b69cf90a9230853e59b4ae5e219"
      ],
      "author": {
        "name": "Iliyan Malchev",
        "email": "malchev@google.com",
        "time": "Thu Oct 29 22:55:00 2009 -0700"
      },
      "committer": {
        "name": "Iliyan Malchev",
        "email": "malchev@google.com",
        "time": "Fri Oct 30 18:35:47 2009 -0700"
      },
      "message": "libbinder: add a NO_CACHING flag to MemoryHeapBase\n\nThe NO_CACHING flag translates to opening a memory region with O_SYNC.\n\nSigned-off-by: Iliyan Malchev \u003cmalchev@google.com\u003e\n"
    },
    {
      "commit": "16d8f10ebf75e809cc14d866fded7749363b9d8f",
      "tree": "250d3c87bbd9509501cf386bd03b6f92fbd8135e",
      "parents": [
        "5cecf74138ea56842463ec384ff04610c1247920",
        "4cb04c4654e9718a73b378e7b9962dee454efa8d"
      ],
      "author": {
        "name": "Wu-cheng Li",
        "email": "wuchengli@google.com",
        "time": "Thu Oct 29 19:26:04 2009 -0700"
      },
      "committer": {
        "name": "Android Git Automerger",
        "email": "android-git-automerger@android.com",
        "time": "Thu Oct 29 19:26:04 2009 -0700"
      },
      "message": "am 4cb04c46: Use image rect information to display zoomed picture.\n\nMerge commit \u00274cb04c4654e9718a73b378e7b9962dee454efa8d\u0027 into eclair-mr2\n\n* commit \u00274cb04c4654e9718a73b378e7b9962dee454efa8d\u0027:\n  Use image rect information to display zoomed picture.\n"
    },
    {
      "commit": "9dba1f928021450f101013e03deacc9a0506772e",
      "tree": "e7d8d656f4a546662ccade6f6569c6516b65be97",
      "parents": [
        "66e06205030cfc72f9aeeac57acfd6cbff0c1b8a",
        "b482ce8837a2d85a2a907d7ea89deaa6610a8333"
      ],
      "author": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Thu Oct 29 16:20:43 2009 -0400"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Thu Oct 29 16:20:43 2009 -0400"
      },
      "message": "Merge change Ib482ce88 into eclair-mr2\n\n* changes:\n  Revive support for video encoding in OMXCodec.\n"
    },
    {
      "commit": "b482ce8837a2d85a2a907d7ea89deaa6610a8333",
      "tree": "d290027d3cfb697d0d2abfcccafd5d7337cd5e76",
      "parents": [
        "10d32a338d5400786e784a0d6f51b53acea76b44"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Oct 29 12:02:48 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Oct 29 12:02:48 2009 -0700"
      },
      "message": "Revive support for video encoding in OMXCodec.\n"
    },
    {
      "commit": "893cb4da1034870a8814394a1c3bdac10ca6cadf",
      "tree": "f4ba2333222c80a64c263cc58ad574433bc77952",
      "parents": [
        "b07d14c26ef33b8aa94a815273d6cb2caac180f5",
        "73e17015d3cd67c93ccad5d63d31c439ff6fa694"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Thu Oct 29 01:26:48 2009 -0700"
      },
      "committer": {
        "name": "Android Git Automerger",
        "email": "android-git-automerger@android.com",
        "time": "Thu Oct 29 01:26:48 2009 -0700"
      },
      "message": "am 73e17015: Merge change I8d2de438 into eclair\n\nMerge commit \u002773e17015d3cd67c93ccad5d63d31c439ff6fa694\u0027 into eclair-mr2\n\n* commit \u002773e17015d3cd67c93ccad5d63d31c439ff6fa694\u0027:\n  fix [2143798] Need to figure out how to do video\n"
    },
    {
      "commit": "4cb04c4654e9718a73b378e7b9962dee454efa8d",
      "tree": "b0ca9496027477f28833f0f85288bb6611f80c52",
      "parents": [
        "38a9becfdd23e582571f624b624680cc5938d423"
      ],
      "author": {
        "name": "Wu-cheng Li",
        "email": "wuchengli@google.com",
        "time": "Fri Oct 23 17:39:46 2009 +0800"
      },
      "committer": {
        "name": "Wu-cheng Li",
        "email": "wuchengli@google.com",
        "time": "Thu Oct 29 13:20:26 2009 +0800"
      },
      "message": "Use image rect information to display zoomed picture.\n"
    },
    {
      "commit": "76a5429407e821c22508eca92e7475b6433cd668",
      "tree": "5bd7d26be381153f31e9792c65151c303de26d2d",
      "parents": [
        "27123468b33cb61a1600079d583302b1b078b2ee",
        "155e2ad04c9e15562149772fbbaa39004d4778a7"
      ],
      "author": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Wed Oct 28 13:25:09 2009 -0400"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Wed Oct 28 13:25:09 2009 -0400"
      },
      "message": "Merge change I155e2ad0 into eclair-mr2\n\n* changes:\n  Re-enable CameraSource.\n"
    },
    {
      "commit": "155e2ad04c9e15562149772fbbaa39004d4778a7",
      "tree": "40f5ec10cd1c147fecf2dd88aa7baee1b72b2bbf",
      "parents": [
        "d9f3d60df9317f15a7f26bc050f51b53b46898ff"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Tue Oct 13 17:08:31 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Wed Oct 28 10:15:07 2009 -0700"
      },
      "message": "Re-enable CameraSource.\n"
    },
    {
      "commit": "9042b4564de5477b18e680c7dce13b587a681dd9",
      "tree": "04872061371527ef76dbfff6ee0d6c8fdadb99bc",
      "parents": [
        "678cdbe55e0de71436f8aad5f139eafc2ab6f937"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Mon Oct 26 20:12:37 2009 -0700"
      },
      "committer": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Tue Oct 27 13:13:29 2009 -0700"
      },
      "message": "    fix [2143798] Need to figure out how to do video\n\n    Use EGLImageKHR instead of copybit directly.\n    We now have the basis to use streaming YUV textures (well, in fact\n    we already are). When/if we use the GPU instead of the MDP we\u0027ll\n    need to make sure it supports the appropriate YUV format.\n\n    Also make sure we compile if EGL_ANDROID_image_native_buffer is not supported\n"
    },
    {
      "commit": "7ed70c9515fe3df6eb1796717d73f23e7286b3e6",
      "tree": "ca15e2090451457b722bb524c5f2c75421477c9f",
      "parents": [
        "adddd24f31291f733cd5f72898b92f13f37ae37c",
        "bf96aaadd46fb5b0884070177faa16ec4f22e2ba"
      ],
      "author": {
        "name": "Eric Laurent",
        "email": "elaurent@google.com",
        "time": "Sat Oct 24 01:38:58 2009 -0700"
      },
      "committer": {
        "name": "Android Git Automerger",
        "email": "android-git-automerger@android.com",
        "time": "Sat Oct 24 01:38:58 2009 -0700"
      },
      "message": "am bf96aaad: Merge change Icf10db28 into eclair\n\nMerge commit \u0027bf96aaadd46fb5b0884070177faa16ec4f22e2ba\u0027 into eclair-mr2\n\n* commit \u0027bf96aaadd46fb5b0884070177faa16ec4f22e2ba\u0027:\n  Fix issue 2192181: AudioFlinger must provide separated methods to set VOICE_CALL stream volume and down link audio volume.\n"
    },
    {
      "commit": "9a12baf929ea803915d7ab626b200ffefb4fbac7",
      "tree": "12a3f70e5ef69e09ea9e9ca4e4dcd4949718e924",
      "parents": [
        "9069aa31accee9c23a4cf228ca27fe8fa8506a56"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Fri Oct 23 10:22:30 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Fri Oct 23 10:35:08 2009 -0700"
      },
      "message": "New API to instantiate a MediaExtractor given a URI and optional MIME type.\n\nAlso DataSources now must provide a method initCheck()\nand DataSource::reat_at has been renamed to readAt to conform to\nstandard API naming guidelines.\n"
    },
    {
      "commit": "57515f334bcc1f66f95e342bfcaa13bf9ca802ad",
      "tree": "6813dcb5c024e8198eeed71a5ed8afa954e2a477",
      "parents": [
        "ad28543022101d0b01845e3f53dcd57e524816ef"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Fri Oct 23 09:55:10 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Fri Oct 23 09:55:10 2009 -0700"
      },
      "message": "Moving the individual extractor headers files to the private include directory.\n"
    },
    {
      "commit": "e13526ad926bfee99778a4f21ea5e4f8a6c8984f",
      "tree": "e4ccf7eda0eab5d02c399e250ca1a52719ef8195",
      "parents": [
        "e981c33446a98d5ccc0d73c1a840696d77cf0732"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Oct 22 10:43:34 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Fri Oct 23 08:39:00 2009 -0700"
      },
      "message": "Prefer software decoders over hardware for thumbnail extraction.\n\nWhile our hardware decoders clearly outperform the software decoders in terms\nof raw throughput, their startup latency makes them less suitable for thumbnail\nextraction.\n"
    },
    {
      "commit": "e981c33446a98d5ccc0d73c1a840696d77cf0732",
      "tree": "e92d9cc3e468e3ef5a021d194d5a5de8f18fcf9c",
      "parents": [
        "d278ffc0984d730b333f53636a223eae6d9b7657"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Oct 22 13:49:30 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Oct 22 14:22:57 2009 -0700"
      },
      "message": "Extract video thumbnails from the largest sync sample among the first 20.\n\nAlso fixes OMXCodec seek behaviour on the very first call to OMXCodec::read()\n"
    },
    {
      "commit": "f68c168d366e8aad58454917f96344398a02efd8",
      "tree": "13f7f5734703daff681fcb1a6ec7d2847fa595f0",
      "parents": [
        "dad4780bbd6be0891ea8745bd274fc8d6882f071"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Wed Oct 21 14:01:30 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Wed Oct 21 14:01:30 2009 -0700"
      },
      "message": "Some cleanup of OMXCodec code, make sure to ignore 0-length output buffers in the metadata retriever.\n"
    },
    {
      "commit": "415f3e2875b8b0b860d0dd6a69ff6868571c36bb",
      "tree": "9ce2631d183fa93c398c4691bbb8dd9a220cb2af",
      "parents": [
        "6270d52c0dded8658733a392f3ef1f521bc5dbee"
      ],
      "author": {
        "name": "Eric Laurent",
        "email": "elaurent@google.com",
        "time": "Wed Oct 21 08:14:22 2009 -0700"
      },
      "committer": {
        "name": "Eric Laurent",
        "email": "elaurent@google.com",
        "time": "Wed Oct 21 12:29:37 2009 -0700"
      },
      "message": "Fix issue 2192181: AudioFlinger must provide separated methods to set VOICE_CALL stream volume and down link audio volume.\n\nAdded setVoiceVolume() method to AudioSystem, AudioFlinger, IAudioFlinger, AudioPolicyService.\nRemoved call to AudioHardwareInterface::setVoiceVolume() from AudioFlinger::setStreamVolume().\n"
    },
    {
      "commit": "f16a0b73993c5a8cc14a36521abaa50d501d9044",
      "tree": "73f0bbc032c1dd1adc02178a3f9b84a7f8adf879",
      "parents": [
        "61462b437067a591bfc52c498ad964e566aaffac"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Tue Oct 20 10:43:48 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Tue Oct 20 11:49:01 2009 -0700"
      },
      "message": "do not merge: The qcom video decoders always output yuv data after adjusting dimensions to be a multiple of 16.\n\nAdd a quirk mode to OMXCodec that makes it aware of this fact for proper display. Also integrate back a change from eclair-mr2 that delays releasing an output buffer briefly after posting it to surface flinger, as we don\u0027t know how long it\u0027ll take it to actually display the buffer\u0027s content.\n"
    },
    {
      "commit": "fe50b63f9b5b7e05754e3fba3ccce69b710dbafe",
      "tree": "23ca3fee10850afd65f5303d9fa637fbe11e94d5",
      "parents": [
        "a486f554aa494dfeea4d63fde0d533ea9e1cfe2f",
        "7bb7e99216956d917af1786a3e02a92cac46fc84"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Fri Oct 16 14:33:01 2009 -0700"
      },
      "committer": {
        "name": "Android Git Automerger",
        "email": "android-git-automerger@android.com",
        "time": "Fri Oct 16 14:33:01 2009 -0700"
      },
      "message": "am 7bb7e992: Merge change Ia8ac904d into eclair\n\nMerge commit \u00277bb7e99216956d917af1786a3e02a92cac46fc84\u0027 into eclair-mr2\n\n* commit \u00277bb7e99216956d917af1786a3e02a92cac46fc84\u0027:\n  fix [2182249] [MR1] valgrind error in surface flinger\n"
    },
    {
      "commit": "784202ea115603004b067aacf6a57bf5d2a7d53b",
      "tree": "0e32ad4b315f936a80ac1af63ae2e919e6ffe090",
      "parents": [
        "d21b725627e68b8ffcae38729196e8c1bd5d0d15"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Oct 15 13:46:54 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Fri Oct 16 11:22:43 2009 -0700"
      },
      "message": "Reimplement the OMX backend for stagefright.\n\nBesides a major cleanup and refactoring, OMX is now a singleton living in the media server, it listens for death notifications of node observers/clients that allocated OMX nodes and performs/attempts cleanup.\n\nChanged APIs to conform to the rest of the system.\n"
    },
    {
      "commit": "a8ac904d97a008b346390c87e74d44df39b0f320",
      "tree": "542fe7fccb07a5d9f380c9d169680d38a4f5f445",
      "parents": [
        "53f33d84776a0bad668e361365a7049b16f8a929"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Thu Oct 15 18:08:15 2009 -0700"
      },
      "committer": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Thu Oct 15 18:08:15 2009 -0700"
      },
      "message": "fix [2182249] [MR1] valgrind error in surface flinger\n"
    },
    {
      "commit": "bd7b43bb02852e51b3000185fa66e10c56b120e0",
      "tree": "d19e8bc0d580d1def1892fbaede6046ada93d2a7",
      "parents": [
        "8d87cd98a8b6a6ff25d45c9e34907fecd1810575"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Tue Oct 13 10:22:55 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Tue Oct 13 10:22:55 2009 -0700"
      },
      "message": "Separated private from public header files.\n"
    },
    {
      "commit": "8d87cd98a8b6a6ff25d45c9e34907fecd1810575",
      "tree": "5e287cafc8d7f22e2e379e2b2f63d28bddb51058",
      "parents": [
        "cfd55579c2e20514b181809dfaf30bd6f7e04c7e"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Tue Oct 13 10:06:37 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Tue Oct 13 10:06:37 2009 -0700"
      },
      "message": "Fix various compiler warnings accumulated over time.\n"
    },
    {
      "commit": "cfd55579c2e20514b181809dfaf30bd6f7e04c7e",
      "tree": "7340b11072bf029da5619f6aec3bdef10cd42d97",
      "parents": [
        "d5ad08bd4230c2f5d58969c624c39a3f5a2019d1"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Fri Oct 09 14:11:28 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Tue Oct 13 09:46:46 2009 -0700"
      },
      "message": "OMXCodec now notifies the reader of changes in the output format by returning a special result/error code.\n"
    },
    {
      "commit": "fa8de752507feaca695123911915070c1ce463b2",
      "tree": "d3b7356ba9c31848b41ea027f978524762741aa6",
      "parents": [
        "edb988128e5b14b46c692d19ea4f536d7daa7b39"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Oct 08 10:07:49 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Mon Oct 12 16:00:07 2009 -0700"
      },
      "message": "Change to a int64_t usecs representation for timestamps and duration throughout stagefright.\n"
    },
    {
      "commit": "9b8f947790aa1dabf9eb0621d0ac8f9d189116a2",
      "tree": "e76202eedeecbab64c09e3605edf4d383d93e565",
      "parents": [
        "936fff36882764ec031ae4fb8338273cc2abccd5"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Fri Oct 09 09:06:06 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Fri Oct 09 09:06:06 2009 -0700"
      },
      "message": "Fixing the build.\n"
    },
    {
      "commit": "53a76bd0c918082847e52570c307ed3ba325992d",
      "tree": "05ff3a0e497c47ab8a0eed430072063ec547c6ff",
      "parents": [
        "2d295a9601315a2610a2cb759ed9a4f787e7d4b5"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Tue Oct 06 16:20:44 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Oct 08 15:06:09 2009 -0700"
      },
      "message": "Split the ColorConverter off SoftwareRenderer, metadata support in stagefright.\n"
    },
    {
      "commit": "3f42707c62e2833ab9d437652f5ea25925cc58af",
      "tree": "2f2533771fe68cb3cb4e01813dd10501dc985bc1",
      "parents": [
        "23bccd6c25f581860487835bf7b5442589897352"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Oct 08 11:02:27 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Oct 08 14:21:58 2009 -0700"
      },
      "message": "Some decoders will return an error on OMX_EmptyThisBuffer to indicate that they don\u0027t support the media format, deal with this.\n"
    },
    {
      "commit": "cd74c0d56c0756ceb5cfa5f06d76e17aa2ed6fb9",
      "tree": "8be782dbff4c5c4e8f7a5b5eb1cd32ce291d6904",
      "parents": [
        "4f9a7d426b8be986947f6bf77e4ed90bf3f613e3"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Oct 08 09:12:11 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Oct 08 09:12:11 2009 -0700"
      },
      "message": "The vendor is about to check in a fix for this issue, the workaround is no longer needed\n"
    },
    {
      "commit": "18fc0120f59f179ab13adf9e122371f32f65a12c",
      "tree": "0ecd6a4f8de29c26d78bd66ef5bfea1c80e072c7",
      "parents": [
        "c38f6f33011e5b3b2f947bf94d8b96b97e67128c",
        "a2de8e31c2693d009db1f9386406758874dd1d40"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Wed Oct 07 17:33:43 2009 -0700"
      },
      "committer": {
        "name": "Android Git Automerger",
        "email": "android-git-automerger@android.com",
        "time": "Wed Oct 07 17:33:43 2009 -0700"
      },
      "message": "am a2de8e31: Merge change Ie05f07df into eclair\n\nMerge commit \u0027a2de8e31c2693d009db1f9386406758874dd1d40\u0027 into eclair-mr2\n\n* commit \u0027a2de8e31c2693d009db1f9386406758874dd1d40\u0027:\n  fix [2170319] gmail bulk operation checkbox latency on passion\n"
    },
    {
      "commit": "e05f07dffa196d6403733b26317faa9f267d518f",
      "tree": "24b7b263644927adbf8203da019f606d86a267c5",
      "parents": [
        "64dd5be583bab8218e54068bbf70edc5fc6087c8"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Wed Oct 07 16:44:10 2009 -0700"
      },
      "committer": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Wed Oct 07 16:44:10 2009 -0700"
      },
      "message": "fix [2170319] gmail bulk operation checkbox latency on passion\n\nThis also fixes [2152536] ANR in browser\n\nWhen SF is enqueuing buffers faster than SF dequeues them.\nThe update flag in SF is not counted and under some situations SF will only\ndequeue the first buffer. The state at this point is not technically\ncorrupted, it\u0027s valid, but just delayed by one buffer.\n\nIn the case of the Browser ANR, because the last enqueued buffer was delayed\nthe resizing of the current buffer couldn\u0027t happen.\n\nThe system would always fall back onto its feet if anything -else- in\ntried to draw, because the \"late\" buffer would be picked up then.\n"
    },
    {
      "commit": "8b432b1d85259a463198db3efa5c50e59c254686",
      "tree": "c2fd1d75776013f29fcbc2b99c6e6dbb3585a0c7",
      "parents": [
        "5da9aeb4351ed02b05f15c11e34673ab38103dd8"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Wed Oct 07 13:36:52 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Wed Oct 07 13:53:24 2009 -0700"
      },
      "message": "Workaround for avc decoder misreporting output buffer size requirements if the content is not a multiple-16 width/height.\n"
    },
    {
      "commit": "26fe45dcb3df12eda94d93f1473cd6a2f5f345c7",
      "tree": "90e3487050e9ae74e3d5e8922cfd21c70d2f7082",
      "parents": [
        "62443f5f4517ba17d911975e695f1ab75bfdbf77",
        "4961c959aebac31991fd7653853d47dfd79d3472"
      ],
      "author": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Tue Oct 06 22:10:17 2009 -0400"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Tue Oct 06 22:10:17 2009 -0400"
      },
      "message": "Merge change I4961c959 into eclair\n\n* changes:\n  fix [2152536] ANR in browser\n"
    },
    {
      "commit": "4961c959aebac31991fd7653853d47dfd79d3472",
      "tree": "5d2837183bf21c756e84fd28a231a8e0674b76c5",
      "parents": [
        "9d6a685ba939f413a8d3e1e97627593aa1cdf6cb"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Tue Oct 06 19:00:57 2009 -0700"
      },
      "committer": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Tue Oct 06 19:00:57 2009 -0700"
      },
      "message": "fix [2152536] ANR in browser\n\nA window is created and the browser is about to render into it the\nvery first time, at that point it does an IPC to SF to request a new\nbuffer. Meanwhile, the window manager removes that window from the\nlist and the shared memory block it uses is marked as invalid.\nHowever, at that point, another window is created and is given the\nsame index (that just go freed), but a different identity and resets\nthe \"invalid\" bit in the shared block. When we go back to the buffer\nallocation code, we\u0027re stuck because the surface we\u0027re allocating for\nis gone and we don\u0027t detect it\u0027s invalid because the invalid bit has\nbeen reset.\n\nIt is not sufficient to check for the invalid bit, I should\nalso check that identities match.\n"
    },
    {
      "commit": "62443f5f4517ba17d911975e695f1ab75bfdbf77",
      "tree": "449644bbac50efbe048b25eea7275b5ea74aab2e",
      "parents": [
        "c404ed2be5d29c8932a3d69b53fea4653c9b868b"
      ],
      "author": {
        "name": "Eric Laurent",
        "email": "elaurent@google.com",
        "time": "Mon Oct 05 20:29:18 2009 -0700"
      },
      "committer": {
        "name": "Eric Laurent",
        "email": "elaurent@google.com",
        "time": "Tue Oct 06 18:59:35 2009 -0700"
      },
      "message": "Fix issue 2139634: DTMF tones on Sholes popping, hissing (audio latency too high).\n\nThis change is a complement to the main fix in kernel driver for the same issue (partner change #1250).\nIt removes clicks sometimes heard after the end of the tones while audio flinger is sending 0s to the audio output stream.\nThe problem was that the sleep time between two writes was more than the duration of one audio output stream buffer which could cause some underrun.\n\nAlso fixed a recent regression in ToneGenerator that made that the end of previous tone was repeated at the beginning of current one under certain timing circumstances when the maximum tone duration was specified.\n"
    },
    {
      "commit": "6f5f5a095a5a4d42fc656cf8c1e6d0f67594f88d",
      "tree": "3e4391ac9de9fe573abe63c88aee3d234b75be32",
      "parents": [
        "6950e428feaccc8164b989ef64e771a99948797a"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Mon Oct 05 18:19:57 2009 -0700"
      },
      "committer": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Tue Oct 06 17:00:25 2009 -0700"
      },
      "message": "fix [2168531] have software-only gralloc buffer side-step the HAL\n"
    },
    {
      "commit": "6950e428feaccc8164b989ef64e771a99948797a",
      "tree": "f6520613c5355eef110f3820469d7dc477598629",
      "parents": [
        "521f4f3af94e3a093a37af887d3e317a526b61a1"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Mon Oct 05 17:07:12 2009 -0700"
      },
      "committer": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Tue Oct 06 17:00:25 2009 -0700"
      },
      "message": "fix [2167050] glTexImage2D code path buggy in SurfaceFlinger\n\nWhen EGLImage extension is not available, SurfaceFlinger will fallback to using\nglTexImage2D and glTexSubImage2D instead, which requires 50% more memory and an\nextra copy. However this code path has never been exercised and had some bugs\nwhich this patch fix.\n\nMainly the scale factor wasn\u0027t computed right when falling back on glDrawElements.\nWe also fallback to this mode of operation if a buffer doesn\u0027t have the adequate\nusage bits for EGLImage usage.\n\nThis changes only code that is currently not executed. Some refactoring was needed to\nkeep the change clean. This doesn\u0027t change anything functionaly.\n"
    },
    {
      "commit": "36f68b8f24df906c969581b0b8e1a47f95dc03cb",
      "tree": "b1c8987ccd5b30c5527fc9abcfe275f163d8d8c5",
      "parents": [
        "5bba632d877c2878384ff21566c8eb6a1a22f37b"
      ],
      "author": {
        "name": "Wu-cheng Li",
        "email": "wuchengli@google.com",
        "time": "Mon Sep 28 16:14:58 2009 -0700"
      },
      "committer": {
        "name": "Wu-cheng Li",
        "email": "wuchengli@google.com",
        "time": "Tue Oct 06 13:25:10 2009 -0700"
      },
      "message": "Add zoom functions and sendCommand.\n\nb2060030\n"
    },
    {
      "commit": "c39d2e3c012fb96999991e30659a474f9f30f789",
      "tree": "f3312cf6fee6b373f0e6486de4013e986eba552d",
      "parents": [
        "52cde7279bad58285704498eea57bdaf9e595b49"
      ],
      "author": {
        "name": "Marco Nelissen",
        "email": "marcone@google.com",
        "time": "Sun Sep 20 10:42:13 2009 -0700"
      },
      "committer": {
        "name": "Marco Nelissen",
        "email": "marcone@google.com",
        "time": "Tue Oct 06 08:51:16 2009 -0700"
      },
      "message": "Music visualizer support hack.\nThis currently assumes 44k stereo (won\u0027t crash on other formats, but won\u0027t give the correct results either), and links statically with libspeex to get FFT data, increasing the size of libmedia by about 45kb.\n"
    },
    {
      "commit": "0c4cec7e4df87181486d280c98fba9c0f4774c37",
      "tree": "4d3aa4fe0101104a1816af9208d367d588bb4f4d",
      "parents": [
        "7b16834adc1003f492cd2be4b1bcc3fb73a78c23"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Fri Oct 02 18:12:30 2009 -0700"
      },
      "committer": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Fri Oct 02 18:12:30 2009 -0700"
      },
      "message": "Attempt to fix [2152536] ANR in browser\n\nThe ANR is caused by SurfaceFlinger waiting for buffers of a removed surface to become availlable.\nWhen it is removed from the current list, a Surface is marked as NO_INIT, which causes SF to return\nimmediately in the above case. For some reason, the surface here wasn\u0027t marked as NO_INIT.\n\nThis change makes the code more robust by always (irregadless or errors) setting the NO_INIT status\nin all code paths where a surface is removed from the list.\n\nAdditionaly added more information in the logs, should this happen again.\n"
    },
    {
      "commit": "fe1a86df8b1c23e3290f96dce69984bf979a462b",
      "tree": "26a6b2a07b27553efe5d6d905eb3226a50eb5071",
      "parents": [
        "279ba943553ec2368d14e1b3c8a88c36bf17785d"
      ],
      "author": {
        "name": "Wu-cheng Li",
        "email": "wuchengli@google.com",
        "time": "Mon Sep 28 13:51:12 2009 -0700"
      },
      "committer": {
        "name": "Wu-cheng Li",
        "email": "wuchengli@google.com",
        "time": "Mon Sep 28 13:51:59 2009 -0700"
      },
      "message": "Change FLASH_MODE_VIDEO_LIGHT to FLASH_MODE_TORCH.\n"
    },
    {
      "commit": "8de57d8fa346522404c2064a78e8f24a5aa3bf23",
      "tree": "6866182a92a2da4e189df74d2b858431ee9cef64",
      "parents": [
        "bd5219f5c3b3b692f7544ea5164b18a839f20155"
      ],
      "author": {
        "name": "Wu-cheng Li",
        "email": "wuchengli@google.com",
        "time": "Wed Sep 23 14:37:52 2009 -0700"
      },
      "committer": {
        "name": "Wu-cheng Li",
        "email": "wuchengli@google.com",
        "time": "Fri Sep 25 14:23:56 2009 -0700"
      },
      "message": "Add camera parameter key constants and documentation.\n"
    },
    {
      "commit": "af141d529f76a3e3bccf67de798f13568e37f3cf",
      "tree": "c8a24dad81fa544b9d5c274648514d5bcf57921d",
      "parents": [
        "fdf53a4628f915203752660aa07049aa22c01b5a"
      ],
      "author": {
        "name": "Eric Laurent",
        "email": "elaurent@google.com",
        "time": "Thu Sep 24 07:03:14 2009 -0700"
      },
      "committer": {
        "name": "Eric Laurent",
        "email": "elaurent@google.com",
        "time": "Thu Sep 24 23:49:40 2009 -0700"
      },
      "message": "Fix issue 2142613: ToneGenerator: short tones sometimes don\u0027t play on sholes or over A2DP.\n\nWhen the AudioTrack callback notification size is relatively high (Which is the case on Sholes and over A2DP), it is likely that the end of tone is reached during the first callback. In this case, the AudioTrack is stopped before exiting the callback which causes 2 problems:\n- 1: If the AudioFlinger thread is scheduled before we exit the ToneGenerator callback, the track can be stopped and reset before the data is actually marked as present in the buffer by the AudioTrack callback \u003d\u003e no audio will be processed by AudioFlinger.\n- 2: In this case, the data write index in the AudioTrack buffer is incremented after the track was reset by the AudioFlinger which leaves unplayed data in the buffer. This data will be played the next time the AudioTrack is started if not flushed in between.\n\nThe fix consists in adding an intermediate state to ToneGenerator state machine so that we exit the callback function when the stop condition is reached and stop the AudioTrack the next time we execute the callback.\n"
    },
    {
      "commit": "bc7261130a51dc9f3461d3970eee1b923bcbf193",
      "tree": "8f74c3943a2582418addd8c91e0c1307fe95f733",
      "parents": [
        "de0dfb7b65a02d4dd74c271b558adee0973fc267"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Wed Sep 23 15:44:05 2009 -0700"
      },
      "committer": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Wed Sep 23 15:49:32 2009 -0700"
      },
      "message": "fix [2132563] stuck in boot animation (framebuffer_device_open: Failed to create flip chain)\n"
    },
    {
      "commit": "b1a1874625a6aca967601fcda53a82d8d712df45",
      "tree": "3cf96bf9cc4bf734da47e58cab3c5421e7698139",
      "parents": [
        "d55de40481c6ec7d8fbd1a38c80a6c66bf462a71"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Thu Sep 17 16:18:16 2009 -0700"
      },
      "committer": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Thu Sep 17 16:18:16 2009 -0700"
      },
      "message": "Android side of the fix for [2121211] Sholes has stutter during animations\n\na new method, compostionComplete() is added to the framebuffer hal, it is used by surfaceflinger to signal the driver that the composition is complete, BEFORE it releases its client. This gives a chance to the driver to\n"
    },
    {
      "commit": "bcef9ac35da08b9f7f8a4728af94c23a7a010669",
      "tree": "c13c342c0265bc0b94608695d90e3edb6f54a918",
      "parents": [
        "76f0111845f0886f522cfe1eb5ec1dee34181f7c"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Thu Sep 17 01:35:28 2009 -0700"
      },
      "committer": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Thu Sep 17 01:35:28 2009 -0700"
      },
      "message": "add basic time stats for surfaces lock time\n"
    },
    {
      "commit": "f7c3679f898cdcb208bc1675c79573e1d637083a",
      "tree": "2460b101ffa0d2f76cb147bccdd5525a7348b79d",
      "parents": [
        "2a66eee3ef88bdc7167e5e5d0471c1e8b2e68fc6",
        "4f234579587ce2367153148d39e83244a808e2c8"
      ],
      "author": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Wed Sep 16 13:01:57 2009 -0400"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Wed Sep 16 13:01:57 2009 -0400"
      },
      "message": "Merge change 25158 into eclair\n\n* changes:\n  Another software color conversion implementation, this time OMX_QCOM_COLOR_FormatYVU420SemiPlanar \u003d\u003e rgb565.\n"
    },
    {
      "commit": "93e462b79d6896da10e15e74c5aec6beb098dddf",
      "tree": "1f5f178b544a49ba5a80e74269b083775ff97854",
      "parents": [
        "6cf05f1c3d6f4585573c8663a62848a09f6a08ff"
      ],
      "author": {
        "name": "Dianne Hackborn",
        "email": "hackbod@google.com",
        "time": "Tue Sep 15 22:50:40 2009 -0700"
      },
      "committer": {
        "name": "Dianne Hackborn",
        "email": "hackbod@google.com",
        "time": "Tue Sep 15 22:50:40 2009 -0700"
      },
      "message": "Implement issue #1780928: Need support hiding nav keys.\n\nThis implements support for devices whose hardware can hide\ntheir navigation keys.  It works much like the existing keyboardHidden\nconfiguration, and for compatibility uses the same configuration\nchange bit.\n\nAlso add FLAG_TURN_ON_SCREEN for windows, which has the system\ncause the screen to be turned on when the window is displayed.\nGreat fun when used with FLAG_SHOW_WHEN_LOCKED!\n\nChange-Id: I0b867f19af85cfd8786a14cea194b34f7bdd9b7a\n"
    },
    {
      "commit": "e611a6ed33d157b7ae15bdfe4e1873dc20ce7d48",
      "tree": "fc1e8f0b97d6f2c4cb43c52055e5f015ffe8204a",
      "parents": [
        "dd8f6186775f69a8fef6213bcdc23be633d1ab6f"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Tue Sep 15 19:10:47 2009 -0700"
      },
      "committer": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Tue Sep 15 19:21:31 2009 -0700"
      },
      "message": "fix [2122448] android_native_window_t::setUsage() only reallocates the first buffer\n\nTake 2. We needed to check that the usage flags are \"good enough\" as opposed to \"the same\".\n\nThis reverts commit 8f17a762fe9e9f31e4e86cb60ff2bfb6b10fdee6.\n"
    },
    {
      "commit": "8f17a762fe9e9f31e4e86cb60ff2bfb6b10fdee6",
      "tree": "f9500ecdcefae8e859433c2153dcc1b2fe642909",
      "parents": [
        "d6b10fb86229ed0e904138ec4604066ea85059db"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Tue Sep 15 18:57:06 2009 -0700"
      },
      "committer": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Tue Sep 15 18:57:06 2009 -0700"
      },
      "message": "Revert \"fix [2122448] android_native_window_t::setUsage() only reallocates the first buffer\"\n\nThis reverts commit 486aa963b63e20b7910e1004cebb4f0afabbd80f.\n"
    },
    {
      "commit": "486aa963b63e20b7910e1004cebb4f0afabbd80f",
      "tree": "b615e2ca3a60bf05a1315410df8fb4b7501105ad",
      "parents": [
        "a4fe2aca527ee45ddde6ace2316cad27dd487379"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Tue Sep 15 17:34:04 2009 -0700"
      },
      "committer": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Tue Sep 15 17:34:04 2009 -0700"
      },
      "message": "fix [2122448] android_native_window_t::setUsage() only reallocates the first buffer\n"
    },
    {
      "commit": "4f234579587ce2367153148d39e83244a808e2c8",
      "tree": "4190754b22e2ab9b846dbdce768ecb17cf19e95c",
      "parents": [
        "a4fe2aca527ee45ddde6ace2316cad27dd487379"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Tue Sep 15 16:19:08 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Tue Sep 15 16:19:08 2009 -0700"
      },
      "message": "Another software color conversion implementation, this time OMX_QCOM_COLOR_FormatYVU420SemiPlanar \u003d\u003e rgb565.\n"
    },
    {
      "commit": "a4fe2aca527ee45ddde6ace2316cad27dd487379",
      "tree": "01b8131fd3b7b955e6cf7e5e4771296a7dc89f08",
      "parents": [
        "0edada085e175e81b6d38a48b5b022917b410a98",
        "c966a3c255652ba30a7b457663c874da24e7fb6e"
      ],
      "author": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Tue Sep 15 17:48:33 2009 -0400"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Tue Sep 15 17:48:33 2009 -0400"
      },
      "message": "Merge change 25128 into eclair\n\n* changes:\n  Support CbYCrY -\u003e RGB565 color conversion in IOMXRenderer.\n"
    },
    {
      "commit": "c966a3c255652ba30a7b457663c874da24e7fb6e",
      "tree": "b6f71e2ac202376dc97a131cbdc90780924c1367",
      "parents": [
        "e80534ff59b2e62a0ddf4359147b81f5ba10de86"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Tue Sep 15 14:32:59 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Tue Sep 15 14:32:59 2009 -0700"
      },
      "message": "Support CbYCrY -\u003e RGB565 color conversion in IOMXRenderer.\n"
    },
    {
      "commit": "9f9afef3d5da3be6812192e60797b1c035445c3c",
      "tree": "ef76ce488456bbe610d157b6379cd91b35e82c55",
      "parents": [
        "e80534ff59b2e62a0ddf4359147b81f5ba10de86"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Tue Sep 15 12:49:11 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Tue Sep 15 12:49:11 2009 -0700"
      },
      "message": "Added an API IOMX::createRendererFromJavaSurface.\n\nThis api allows to instantiate a renderer by specifying the hosting java Surface object. This hides the implementation details of (java-)Surface, (native-)Surface and friends.\n"
    },
    {
      "commit": "244f8c26365a303d9dd861bd48a29a4b48578da1",
      "tree": "33c20568a94d606507507ec5cedf2a01eba8de58",
      "parents": [
        "54c06152e0d9c666aec61ae5d9686d7d3327ea34"
      ],
      "author": {
        "name": "Chih-Chung Chang",
        "email": "chihchung@google.com",
        "time": "Tue Sep 15 14:51:56 2009 +0800"
      },
      "committer": {
        "name": "Chih-Chung Chang",
        "email": "chihchung@google.com",
        "time": "Tue Sep 15 18:29:03 2009 +0800"
      },
      "message": "Fix 2083478: Camera needs an auto-focus cancel API\n\nChange-Id: I13bda991b32aee47e82b5cf9d43b3021c416a9a2\n"
    },
    {
      "commit": "a1212578bfd11bd391c686c82c18b21b4a3a69b4",
      "tree": "5cda57181fe2e319e394476f9d050e2c4841efa4",
      "parents": [
        "0d5581133285cef4d7582b531e0bf09cee86aa90",
        "bd8527110caa5427ade0edd7ce0d00e63f15ccbc"
      ],
      "author": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Mon Sep 14 19:01:40 2009 -0400"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Mon Sep 14 19:01:40 2009 -0400"
      },
      "message": "Merge change 24947 into eclair\n\n* changes:\n  make sure to update the tail pointer when undoing a dequeue\n"
    },
    {
      "commit": "bd8527110caa5427ade0edd7ce0d00e63f15ccbc",
      "tree": "b3f278132e4c3e9b78cfdfa48a97bf84f26e5d98",
      "parents": [
        "df5e76f9c635a84efa16c5e2f6cf516b4b8fe300"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Mon Sep 14 15:48:42 2009 -0700"
      },
      "committer": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Mon Sep 14 15:48:42 2009 -0700"
      },
      "message": "make sure to update the tail pointer when undoing a dequeue\n"
    },
    {
      "commit": "242d65bf9faf1d2bc3468490e510551140e23462",
      "tree": "1486035602564a0657ecf0d915d4a2d4f15f9cba",
      "parents": [
        "9a0bf14c4f715a8ffa645c77c4c183dcfa3e31c8"
      ],
      "author": {
        "name": "San Mehat",
        "email": "san@google.com",
        "time": "Sat Sep 12 10:10:37 2009 -0700"
      },
      "committer": {
        "name": "San Mehat",
        "email": "san@google.com",
        "time": "Sat Sep 12 10:48:03 2009 -0700"
      },
      "message": "process: Switch to common cutils sched_policy api\n\nSigned-off-by: San Mehat \u003csan@google.com\u003e\n"
    },
    {
      "commit": "6026a514248f0c603d0e8c4a3f542abab3fa1509",
      "tree": "8ca481e734537e9bfcdee28c8199100ce71d18dc",
      "parents": [
        "d304ae583d862250a21b5949fc3dbdf3af1febac"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Fri Sep 11 07:47:55 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Fri Sep 11 07:49:50 2009 -0700"
      },
      "message": "Move JPEGSource.{cpp,h} into libstagefright.\n"
    },
    {
      "commit": "f84a21820b39dbfa983352b7d8ac949e560827d3",
      "tree": "6558a96f8843fd9ce7f0f6056adc1db3f44d34fa",
      "parents": [
        "12d2cdcdb0eed759b0e7738cbdefaa726a71930b",
        "248b5bd51e325107f8119b564db6a06ac51c232a"
      ],
      "author": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Thu Sep 10 22:59:12 2009 -0400"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Thu Sep 10 22:59:12 2009 -0400"
      },
      "message": "Merge change 24643 into eclair\n\n* changes:\n  fix [2112575] stuck on DequeueCondition for a surface that doesn\u0027t exist anymore\n"
    },
    {
      "commit": "12d2cdcdb0eed759b0e7738cbdefaa726a71930b",
      "tree": "65081cdef04e9829f03a39b35e1a25dd77b10e3f",
      "parents": [
        "8905daa06875a3f052c1eff5b0fbd14ab297cff7",
        "436c627ca4228284caf363f0cb35947e58b841b9"
      ],
      "author": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Thu Sep 10 22:59:02 2009 -0400"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Thu Sep 10 22:59:02 2009 -0400"
      },
      "message": "Merge change 24642 into eclair\n\n* changes:\n  make sure conditions will return when the status of a surface is not NO_ERROR\n"
    },
    {
      "commit": "248b5bd51e325107f8119b564db6a06ac51c232a",
      "tree": "9a059822a1817d5ffb68d471f6e83ec20f583a89",
      "parents": [
        "436c627ca4228284caf363f0cb35947e58b841b9"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Thu Sep 10 19:41:18 2009 -0700"
      },
      "committer": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Thu Sep 10 19:41:18 2009 -0700"
      },
      "message": "fix [2112575] stuck on DequeueCondition for a surface that doesn\u0027t exist anymore\n\nthis also fixes part of [2111536] Device is soft rebooted after ending the call through voice dialer\n"
    },
    {
      "commit": "436c627ca4228284caf363f0cb35947e58b841b9",
      "tree": "6743fc56b723aef0c09f2d09279581e862472973",
      "parents": [
        "bcbcaa7edd32ba67c6290d79f7e7821c4b5b39ac"
      ],
      "author": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Thu Sep 10 16:55:13 2009 -0700"
      },
      "committer": {
        "name": "Mathias Agopian",
        "email": "mathias@google.com",
        "time": "Thu Sep 10 16:55:13 2009 -0700"
      },
      "message": "make sure conditions will return when the status of a surface is not NO_ERROR\n"
    },
    {
      "commit": "181b31a0d87d525ea64102a965210331e0c6885b",
      "tree": "25fc3710ab2195bb6010fa0b8217e6b14b32ed29",
      "parents": [
        "c06307ccde2cc8e92fcb07d29ef5a69803d0c0b3"
      ],
      "author": {
        "name": "San Mehat",
        "email": "san@google.com",
        "time": "Tue Sep 08 20:28:35 2009 -0700"
      },
      "committer": {
        "name": "San Mehat",
        "email": "san@google.com",
        "time": "Thu Sep 10 15:09:38 2009 -0700"
      },
      "message": "Process: Add support for using scheduler policies instead of cgroups.\nPreference is given to cgroups if available.\n\nSigned-off-by: San Mehat \u003csan@google.com\u003e\n"
    },
    {
      "commit": "e6c409632f773e41f33188272a0072be9fcb783f",
      "tree": "228c0d88ce6818974b8bab7062e9fef05f3ba250",
      "parents": [
        "d9ca6a79c6ac9cc8790aabbb42fe2ce579001528"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Sep 10 14:13:30 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Thu Sep 10 14:43:36 2009 -0700"
      },
      "message": "Media MIME types now have corresponding constants in MediaDefs.h, new codec enumeration API.\n"
    },
    {
      "commit": "033e6c3a680cd42fb05738c87a8c514bb7e4963d",
      "tree": "c4e12baef0549285b1570756e9504a794ee9a0ac",
      "parents": [
        "201511cf8a004d386ec9f592041ad3e3d4107184"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Wed Sep 09 16:36:12 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Wed Sep 09 16:36:12 2009 -0700"
      },
      "message": "Minor API change in MPEG4Writer, support for amr output into MPEG4 containers.\n"
    },
    {
      "commit": "5a65a6e22017e51ebcebb0f41510c54f1085f82c",
      "tree": "437e2c5ac1ee1d1ba9867fe8a83a8884ae90ca6e",
      "parents": [
        "4e60d7e60b29c42c6745dd23ff90dced8834fa7c"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Tue Sep 08 16:07:15 2009 -0700"
      },
      "committer": {
        "name": "Andreas Huber",
        "email": "andih@google.com",
        "time": "Wed Sep 09 11:05:42 2009 -0700"
      },
      "message": "Added a .amr file extractor (for AMR-NB and AMR-WB content).\n"
    },
    {
      "commit": "4e60d7e60b29c42c6745dd23ff90dced8834fa7c",
      "tree": "a95bca3226c5ced8ac9fbfe905b103433922f6a9",
      "parents": [
        "100f08613392c225b8dff3f1e1d586f981884e29",
        "ee606e66b0c1bc3527ecaffbbe95486d2ff5009e"
      ],
      "author": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Wed Sep 09 13:55:48 2009 -0400"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Wed Sep 09 13:55:48 2009 -0400"
      },
      "message": "Merge change 24179 into eclair\n\n* changes:\n  Support encoding amr-wb content in stagefright.\n"
    }
  ],
  "next": "11c803ac77b6a9b815180b4649a700361d3b8cfe"
}
