blob: 61de69af9726e48cc7d0c731b231589f4b4b4038 [file] [log] [blame]
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17//#define LOG_NDEBUG 0
18#define LOG_TAG "BufferItemConsumer"
Dan Stoza3be1c6b2014-11-18 10:24:03 -080019//#define ATRACE_TAG ATRACE_TAG_GRAPHICS
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -070020#include <utils/Log.h>
21
22#include <gui/BufferItemConsumer.h>
23
Dan Stoza3be1c6b2014-11-18 10:24:03 -080024//#define BI_LOGV(x, ...) ALOGV("[%s] " x, mName.string(), ##__VA_ARGS__)
25//#define BI_LOGD(x, ...) ALOGD("[%s] " x, mName.string(), ##__VA_ARGS__)
26//#define BI_LOGI(x, ...) ALOGI("[%s] " x, mName.string(), ##__VA_ARGS__)
27//#define BI_LOGW(x, ...) ALOGW("[%s] " x, mName.string(), ##__VA_ARGS__)
Dan Albert8b491252014-09-08 18:53:39 -070028#define BI_LOGE(x, ...) ALOGE("[%s] " x, mName.string(), ##__VA_ARGS__)
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -070029
30namespace android {
31
Dan Stozafe50d2a2014-03-12 14:32:29 -070032BufferItemConsumer::BufferItemConsumer(
33 const sp<IGraphicBufferConsumer>& consumer, uint32_t consumerUsage,
34 int bufferCount, bool controlledByApp) :
35 ConsumerBase(consumer, controlledByApp)
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -070036{
Dan Stozafe50d2a2014-03-12 14:32:29 -070037 status_t err = mConsumer->setConsumerUsageBits(consumerUsage);
38 LOG_ALWAYS_FATAL_IF(err != OK,
39 "Failed to set consumer usage bits to %#x", consumerUsage);
40 if (bufferCount != DEFAULT_MAX_BUFFERS) {
41 err = mConsumer->setMaxAcquiredBufferCount(bufferCount);
42 LOG_ALWAYS_FATAL_IF(err != OK,
43 "Failed to set max acquired buffer count to %d", bufferCount);
Igor Murashkin4be18a32013-11-18 12:26:56 -080044 }
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -070045}
46
Dan Stoza3be1c6b2014-11-18 10:24:03 -080047BufferItemConsumer::~BufferItemConsumer() {}
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -070048
49void BufferItemConsumer::setName(const String8& name) {
50 Mutex::Autolock _l(mMutex);
51 mName = name;
Mathias Agopiandb89edc2013-08-02 01:40:18 -070052 mConsumer->setConsumerName(name);
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -070053}
54
Andy McFadden1585c4d2013-06-28 13:52:40 -070055status_t BufferItemConsumer::acquireBuffer(BufferItem *item,
56 nsecs_t presentWhen, bool waitForFence) {
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -070057 status_t err;
58
59 if (!item) return BAD_VALUE;
60
61 Mutex::Autolock _l(mMutex);
62
Andy McFadden1585c4d2013-06-28 13:52:40 -070063 err = acquireBufferLocked(item, presentWhen);
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -070064 if (err != OK) {
65 if (err != NO_BUFFER_AVAILABLE) {
66 BI_LOGE("Error acquiring buffer: %s (%d)", strerror(err), err);
67 }
68 return err;
69 }
70
Jamie Gennis1df8c342012-12-20 14:05:45 -080071 if (waitForFence) {
Mathias Agopianea74d3b2013-05-16 18:03:22 -070072 err = item->mFence->waitForever("BufferItemConsumer::acquireBuffer");
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -070073 if (err != OK) {
74 BI_LOGE("Failed to wait for fence of acquired buffer: %s (%d)",
75 strerror(-err), err);
76 return err;
77 }
78 }
79
80 item->mGraphicBuffer = mSlots[item->mBuf].mGraphicBuffer;
81
82 return OK;
83}
84
85status_t BufferItemConsumer::releaseBuffer(const BufferItem &item,
86 const sp<Fence>& releaseFence) {
87 status_t err;
88
89 Mutex::Autolock _l(mMutex);
90
Lajos Molnarc5d7b7d2013-05-03 14:50:50 -070091 err = addReleaseFenceLocked(item.mBuf, item.mGraphicBuffer, releaseFence);
Jamie Gennisb2725412012-09-05 20:09:05 -070092
Lajos Molnarc5d7b7d2013-05-03 14:50:50 -070093 err = releaseBufferLocked(item.mBuf, item.mGraphicBuffer, EGL_NO_DISPLAY,
Jamie Gennisb2725412012-09-05 20:09:05 -070094 EGL_NO_SYNC_KHR);
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -070095 if (err != OK) {
96 BI_LOGE("Failed to release buffer: %s (%d)",
97 strerror(-err), err);
98 }
99 return err;
100}
101
Igor Murashkin87d1e342013-04-16 11:24:40 -0700102status_t BufferItemConsumer::setDefaultBufferSize(uint32_t w, uint32_t h) {
103 Mutex::Autolock _l(mMutex);
Mathias Agopiandb89edc2013-08-02 01:40:18 -0700104 return mConsumer->setDefaultBufferSize(w, h);
Igor Murashkin87d1e342013-04-16 11:24:40 -0700105}
106
Dan Stoza3be1c6b2014-11-18 10:24:03 -0800107status_t BufferItemConsumer::setDefaultBufferFormat(PixelFormat defaultFormat) {
Igor Murashkin87d1e342013-04-16 11:24:40 -0700108 Mutex::Autolock _l(mMutex);
Mathias Agopiandb89edc2013-08-02 01:40:18 -0700109 return mConsumer->setDefaultBufferFormat(defaultFormat);
Igor Murashkin87d1e342013-04-16 11:24:40 -0700110}
111
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -0700112} // namespace android