blob: 74a65ed8ddc1dde275b26c9d5519a129ed8cc41f [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"
19#define ATRACE_TAG ATRACE_TAG_GRAPHICS
20#include <utils/Log.h>
21
22#include <gui/BufferItemConsumer.h>
23
24#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__)
28#define BI_LOGE(x, ...) ALOGE("[%s] "x, mName.string(), ##__VA_ARGS__)
29
30namespace android {
31
Mathias Agopian8f938a52013-07-12 22:06:26 -070032BufferItemConsumer::BufferItemConsumer(const sp<BufferQueue>& bq,
Mathias Agopian595264f2013-07-16 22:56:09 -070033 uint32_t consumerUsage, int bufferCount, bool controlledByApp) :
34 ConsumerBase(bq, controlledByApp)
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -070035{
Igor Murashkin4be18a32013-11-18 12:26:56 -080036 if (bufferCount == MIN_UNDEQUEUED_BUFFERS) {
37 status_t res;
38 res = bq->query(NATIVE_WINDOW_MIN_UNDEQUEUED_BUFFERS, &bufferCount);
39 LOG_ALWAYS_FATAL_IF(res != OK || bufferCount < 0,
40 "Failed to query min buffer count");
41 }
42
Mathias Agopiandb89edc2013-08-02 01:40:18 -070043 mConsumer->setConsumerUsageBits(consumerUsage);
44 mConsumer->setMaxAcquiredBufferCount(bufferCount);
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -070045}
46
47BufferItemConsumer::~BufferItemConsumer() {
48}
49
50void BufferItemConsumer::setName(const String8& name) {
51 Mutex::Autolock _l(mMutex);
52 mName = name;
Mathias Agopiandb89edc2013-08-02 01:40:18 -070053 mConsumer->setConsumerName(name);
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -070054}
55
Andy McFadden1585c4d2013-06-28 13:52:40 -070056status_t BufferItemConsumer::acquireBuffer(BufferItem *item,
57 nsecs_t presentWhen, bool waitForFence) {
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -070058 status_t err;
59
60 if (!item) return BAD_VALUE;
61
62 Mutex::Autolock _l(mMutex);
63
Andy McFadden1585c4d2013-06-28 13:52:40 -070064 err = acquireBufferLocked(item, presentWhen);
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -070065 if (err != OK) {
66 if (err != NO_BUFFER_AVAILABLE) {
67 BI_LOGE("Error acquiring buffer: %s (%d)", strerror(err), err);
68 }
69 return err;
70 }
71
Jamie Gennis1df8c342012-12-20 14:05:45 -080072 if (waitForFence) {
Mathias Agopianea74d3b2013-05-16 18:03:22 -070073 err = item->mFence->waitForever("BufferItemConsumer::acquireBuffer");
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -070074 if (err != OK) {
75 BI_LOGE("Failed to wait for fence of acquired buffer: %s (%d)",
76 strerror(-err), err);
77 return err;
78 }
79 }
80
81 item->mGraphicBuffer = mSlots[item->mBuf].mGraphicBuffer;
82
83 return OK;
84}
85
86status_t BufferItemConsumer::releaseBuffer(const BufferItem &item,
87 const sp<Fence>& releaseFence) {
88 status_t err;
89
90 Mutex::Autolock _l(mMutex);
91
Lajos Molnarc5d7b7d2013-05-03 14:50:50 -070092 err = addReleaseFenceLocked(item.mBuf, item.mGraphicBuffer, releaseFence);
Jamie Gennisb2725412012-09-05 20:09:05 -070093
Lajos Molnarc5d7b7d2013-05-03 14:50:50 -070094 err = releaseBufferLocked(item.mBuf, item.mGraphicBuffer, EGL_NO_DISPLAY,
Jamie Gennisb2725412012-09-05 20:09:05 -070095 EGL_NO_SYNC_KHR);
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -070096 if (err != OK) {
97 BI_LOGE("Failed to release buffer: %s (%d)",
98 strerror(-err), err);
99 }
100 return err;
101}
102
Igor Murashkin87d1e342013-04-16 11:24:40 -0700103status_t BufferItemConsumer::setDefaultBufferSize(uint32_t w, uint32_t h) {
104 Mutex::Autolock _l(mMutex);
Mathias Agopiandb89edc2013-08-02 01:40:18 -0700105 return mConsumer->setDefaultBufferSize(w, h);
Igor Murashkin87d1e342013-04-16 11:24:40 -0700106}
107
108status_t BufferItemConsumer::setDefaultBufferFormat(uint32_t defaultFormat) {
109 Mutex::Autolock _l(mMutex);
Mathias Agopiandb89edc2013-08-02 01:40:18 -0700110 return mConsumer->setDefaultBufferFormat(defaultFormat);
Igor Murashkin87d1e342013-04-16 11:24:40 -0700111}
112
Eino-Ville Talvalae232fdc2012-08-21 13:37:35 -0700113} // namespace android