2012-08-21 20:37:35 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
//#define LOG_NDEBUG 0
|
|
|
|
#define LOG_TAG "BufferItemConsumer"
|
2014-11-18 18:24:03 +00:00
|
|
|
//#define ATRACE_TAG ATRACE_TAG_GRAPHICS
|
2012-08-21 20:37:35 +00:00
|
|
|
#include <utils/Log.h>
|
|
|
|
|
|
|
|
#include <gui/BufferItemConsumer.h>
|
|
|
|
|
2014-11-18 18:24:03 +00:00
|
|
|
//#define BI_LOGV(x, ...) ALOGV("[%s] " x, mName.string(), ##__VA_ARGS__)
|
|
|
|
//#define BI_LOGD(x, ...) ALOGD("[%s] " x, mName.string(), ##__VA_ARGS__)
|
|
|
|
//#define BI_LOGI(x, ...) ALOGI("[%s] " x, mName.string(), ##__VA_ARGS__)
|
|
|
|
//#define BI_LOGW(x, ...) ALOGW("[%s] " x, mName.string(), ##__VA_ARGS__)
|
2014-09-09 01:53:39 +00:00
|
|
|
#define BI_LOGE(x, ...) ALOGE("[%s] " x, mName.string(), ##__VA_ARGS__)
|
2012-08-21 20:37:35 +00:00
|
|
|
|
|
|
|
namespace android {
|
|
|
|
|
2014-03-12 21:32:29 +00:00
|
|
|
BufferItemConsumer::BufferItemConsumer(
|
|
|
|
const sp<IGraphicBufferConsumer>& consumer, uint32_t consumerUsage,
|
|
|
|
int bufferCount, bool controlledByApp) :
|
|
|
|
ConsumerBase(consumer, controlledByApp)
|
2012-08-21 20:37:35 +00:00
|
|
|
{
|
2014-03-12 21:32:29 +00:00
|
|
|
status_t err = mConsumer->setConsumerUsageBits(consumerUsage);
|
|
|
|
LOG_ALWAYS_FATAL_IF(err != OK,
|
|
|
|
"Failed to set consumer usage bits to %#x", consumerUsage);
|
|
|
|
if (bufferCount != DEFAULT_MAX_BUFFERS) {
|
|
|
|
err = mConsumer->setMaxAcquiredBufferCount(bufferCount);
|
|
|
|
LOG_ALWAYS_FATAL_IF(err != OK,
|
|
|
|
"Failed to set max acquired buffer count to %d", bufferCount);
|
2013-11-18 20:26:56 +00:00
|
|
|
}
|
2012-08-21 20:37:35 +00:00
|
|
|
}
|
|
|
|
|
2014-11-18 18:24:03 +00:00
|
|
|
BufferItemConsumer::~BufferItemConsumer() {}
|
2012-08-21 20:37:35 +00:00
|
|
|
|
|
|
|
void BufferItemConsumer::setName(const String8& name) {
|
|
|
|
Mutex::Autolock _l(mMutex);
|
|
|
|
mName = name;
|
2013-08-02 08:40:18 +00:00
|
|
|
mConsumer->setConsumerName(name);
|
2012-08-21 20:37:35 +00:00
|
|
|
}
|
|
|
|
|
2013-06-28 20:52:40 +00:00
|
|
|
status_t BufferItemConsumer::acquireBuffer(BufferItem *item,
|
|
|
|
nsecs_t presentWhen, bool waitForFence) {
|
2012-08-21 20:37:35 +00:00
|
|
|
status_t err;
|
|
|
|
|
|
|
|
if (!item) return BAD_VALUE;
|
|
|
|
|
|
|
|
Mutex::Autolock _l(mMutex);
|
|
|
|
|
2013-06-28 20:52:40 +00:00
|
|
|
err = acquireBufferLocked(item, presentWhen);
|
2012-08-21 20:37:35 +00:00
|
|
|
if (err != OK) {
|
|
|
|
if (err != NO_BUFFER_AVAILABLE) {
|
|
|
|
BI_LOGE("Error acquiring buffer: %s (%d)", strerror(err), err);
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2012-12-20 22:05:45 +00:00
|
|
|
if (waitForFence) {
|
2013-05-17 01:03:22 +00:00
|
|
|
err = item->mFence->waitForever("BufferItemConsumer::acquireBuffer");
|
2012-08-21 20:37:35 +00:00
|
|
|
if (err != OK) {
|
|
|
|
BI_LOGE("Failed to wait for fence of acquired buffer: %s (%d)",
|
|
|
|
strerror(-err), err);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
item->mGraphicBuffer = mSlots[item->mBuf].mGraphicBuffer;
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t BufferItemConsumer::releaseBuffer(const BufferItem &item,
|
|
|
|
const sp<Fence>& releaseFence) {
|
|
|
|
status_t err;
|
|
|
|
|
|
|
|
Mutex::Autolock _l(mMutex);
|
|
|
|
|
2013-05-03 21:50:50 +00:00
|
|
|
err = addReleaseFenceLocked(item.mBuf, item.mGraphicBuffer, releaseFence);
|
2012-09-06 03:09:05 +00:00
|
|
|
|
2013-05-03 21:50:50 +00:00
|
|
|
err = releaseBufferLocked(item.mBuf, item.mGraphicBuffer, EGL_NO_DISPLAY,
|
2012-09-06 03:09:05 +00:00
|
|
|
EGL_NO_SYNC_KHR);
|
2012-08-21 20:37:35 +00:00
|
|
|
if (err != OK) {
|
|
|
|
BI_LOGE("Failed to release buffer: %s (%d)",
|
|
|
|
strerror(-err), err);
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2013-04-16 18:24:40 +00:00
|
|
|
status_t BufferItemConsumer::setDefaultBufferSize(uint32_t w, uint32_t h) {
|
|
|
|
Mutex::Autolock _l(mMutex);
|
2013-08-02 08:40:18 +00:00
|
|
|
return mConsumer->setDefaultBufferSize(w, h);
|
2013-04-16 18:24:40 +00:00
|
|
|
}
|
|
|
|
|
2014-11-18 18:24:03 +00:00
|
|
|
status_t BufferItemConsumer::setDefaultBufferFormat(PixelFormat defaultFormat) {
|
2013-04-16 18:24:40 +00:00
|
|
|
Mutex::Autolock _l(mMutex);
|
2013-08-02 08:40:18 +00:00
|
|
|
return mConsumer->setDefaultBufferFormat(defaultFormat);
|
2013-04-16 18:24:40 +00:00
|
|
|
}
|
|
|
|
|
2012-08-21 20:37:35 +00:00
|
|
|
} // namespace android
|