diff options
| author | 2011-05-18 10:38:40 -0700 | |
|---|---|---|
| committer | 2011-05-18 14:37:51 -0700 | |
| commit | d7e291fecd2e6a104c713b4e45860734d02833c6 (patch) | |
| tree | 1b0dc2bd2da1e5c1ac726ab5f0d7281b87b932e4 | |
| parent | 5d06b756598b0e83be26d3702b9883bbd5c75b95 (diff) | |
Disable error report temporarily to enable inline video
bug:4435022
Change-Id: I06f05a4781ad432ab71db93f0815eb89cd2e7a69
| -rw-r--r-- | libs/gui/SurfaceTexture.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/gui/SurfaceTexture.cpp b/libs/gui/SurfaceTexture.cpp index d7c449c353..b08a5a80da 100644 --- a/libs/gui/SurfaceTexture.cpp +++ b/libs/gui/SurfaceTexture.cpp @@ -292,7 +292,8 @@ status_t SurfaceTexture::dequeueBuffer(int *outBuf, uint32_t w, uint32_t h, LOGE("dequeueBuffer: MIN_UNDEQUEUED_BUFFERS=%d exceeded (dequeued=%d)", MIN_UNDEQUEUED_BUFFERS-int(mSynchronousMode), dequeuedCount); - return -EBUSY; + // TODO: Enable this error report after we fix issue 4435022 + // return -EBUSY; } // we're in synchronous mode and didn't find a buffer, we need to wait |