2010-12-20 19:27:26 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 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_TAG "SurfaceTextureClient"
|
2011-01-13 04:22:41 +00:00
|
|
|
//#define LOG_NDEBUG 0
|
2010-12-20 19:27:26 +00:00
|
|
|
|
|
|
|
#include <gui/SurfaceTextureClient.h>
|
|
|
|
|
|
|
|
#include <utils/Log.h>
|
|
|
|
|
|
|
|
namespace android {
|
|
|
|
|
|
|
|
SurfaceTextureClient::SurfaceTextureClient(
|
|
|
|
const sp<ISurfaceTexture>& surfaceTexture):
|
2011-04-01 02:10:24 +00:00
|
|
|
mSurfaceTexture(surfaceTexture), mAllocator(0), mReqWidth(0),
|
2011-04-12 04:19:55 +00:00
|
|
|
mReqHeight(0), mReqFormat(0), mReqUsage(0),
|
|
|
|
mTimestamp(NATIVE_WINDOW_TIMESTAMP_AUTO), mConnectedApi(0),
|
|
|
|
mQueryWidth(0), mQueryHeight(0), mQueryFormat(0),
|
|
|
|
mMutex() {
|
2010-12-20 19:27:26 +00:00
|
|
|
// Initialize the ANativeWindow function pointers.
|
|
|
|
ANativeWindow::setSwapInterval = setSwapInterval;
|
|
|
|
ANativeWindow::dequeueBuffer = dequeueBuffer;
|
|
|
|
ANativeWindow::cancelBuffer = cancelBuffer;
|
|
|
|
ANativeWindow::lockBuffer = lockBuffer;
|
|
|
|
ANativeWindow::queueBuffer = queueBuffer;
|
|
|
|
ANativeWindow::query = query;
|
|
|
|
ANativeWindow::perform = perform;
|
2011-02-02 23:31:47 +00:00
|
|
|
|
2011-05-03 02:51:12 +00:00
|
|
|
const_cast<int&>(ANativeWindow::minSwapInterval) = 0;
|
|
|
|
const_cast<int&>(ANativeWindow::maxSwapInterval) = 1;
|
|
|
|
|
2011-02-02 23:31:47 +00:00
|
|
|
// Get a reference to the allocator.
|
|
|
|
mAllocator = mSurfaceTexture->getAllocator();
|
2010-12-20 19:27:26 +00:00
|
|
|
}
|
|
|
|
|
2011-03-14 22:08:53 +00:00
|
|
|
sp<ISurfaceTexture> SurfaceTextureClient::getISurfaceTexture() const {
|
|
|
|
return mSurfaceTexture;
|
|
|
|
}
|
|
|
|
|
2010-12-20 19:27:26 +00:00
|
|
|
int SurfaceTextureClient::setSwapInterval(ANativeWindow* window, int interval) {
|
|
|
|
SurfaceTextureClient* c = getSelf(window);
|
|
|
|
return c->setSwapInterval(interval);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::dequeueBuffer(ANativeWindow* window,
|
2011-05-01 18:33:26 +00:00
|
|
|
ANativeWindowBuffer** buffer) {
|
2010-12-20 19:27:26 +00:00
|
|
|
SurfaceTextureClient* c = getSelf(window);
|
|
|
|
return c->dequeueBuffer(buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::cancelBuffer(ANativeWindow* window,
|
2011-05-01 18:33:26 +00:00
|
|
|
ANativeWindowBuffer* buffer) {
|
2010-12-20 19:27:26 +00:00
|
|
|
SurfaceTextureClient* c = getSelf(window);
|
|
|
|
return c->cancelBuffer(buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::lockBuffer(ANativeWindow* window,
|
2011-05-01 18:33:26 +00:00
|
|
|
ANativeWindowBuffer* buffer) {
|
2010-12-20 19:27:26 +00:00
|
|
|
SurfaceTextureClient* c = getSelf(window);
|
|
|
|
return c->lockBuffer(buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::queueBuffer(ANativeWindow* window,
|
2011-05-01 18:33:26 +00:00
|
|
|
ANativeWindowBuffer* buffer) {
|
2010-12-20 19:27:26 +00:00
|
|
|
SurfaceTextureClient* c = getSelf(window);
|
|
|
|
return c->queueBuffer(buffer);
|
|
|
|
}
|
|
|
|
|
2011-04-14 23:54:38 +00:00
|
|
|
int SurfaceTextureClient::query(const ANativeWindow* window,
|
|
|
|
int what, int* value) {
|
|
|
|
const SurfaceTextureClient* c = getSelf(window);
|
2010-12-20 19:27:26 +00:00
|
|
|
return c->query(what, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::perform(ANativeWindow* window, int operation, ...) {
|
|
|
|
va_list args;
|
|
|
|
va_start(args, operation);
|
|
|
|
SurfaceTextureClient* c = getSelf(window);
|
|
|
|
return c->perform(operation, args);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::setSwapInterval(int interval) {
|
2011-05-03 02:51:12 +00:00
|
|
|
// EGL specification states:
|
|
|
|
// interval is silently clamped to minimum and maximum implementation
|
|
|
|
// dependent values before being stored.
|
|
|
|
// Although we don't have to, we apply the same logic here.
|
|
|
|
|
|
|
|
if (interval < minSwapInterval)
|
|
|
|
interval = minSwapInterval;
|
|
|
|
|
|
|
|
if (interval > maxSwapInterval)
|
|
|
|
interval = maxSwapInterval;
|
|
|
|
|
|
|
|
status_t res = mSurfaceTexture->setSynchronousMode(interval ? true : false);
|
|
|
|
|
|
|
|
return res;
|
2010-12-20 19:27:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::dequeueBuffer(android_native_buffer_t** buffer) {
|
2011-01-13 04:22:41 +00:00
|
|
|
LOGV("SurfaceTextureClient::dequeueBuffer");
|
2010-12-20 19:27:26 +00:00
|
|
|
Mutex::Autolock lock(mMutex);
|
|
|
|
int buf = -1;
|
2011-05-03 02:51:12 +00:00
|
|
|
status_t result = mSurfaceTexture->dequeueBuffer(&buf, mReqWidth, mReqHeight,
|
2011-04-26 03:22:14 +00:00
|
|
|
mReqFormat, mReqUsage);
|
2011-05-03 02:51:12 +00:00
|
|
|
if (result < 0) {
|
2011-04-26 03:22:14 +00:00
|
|
|
LOGV("dequeueBuffer: ISurfaceTexture::dequeueBuffer(%d, %d, %d, %d)"
|
2011-05-19 20:33:00 +00:00
|
|
|
"failed: %d", mReqWidth, mReqHeight, mReqFormat, mReqUsage,
|
|
|
|
result);
|
2011-05-03 02:51:12 +00:00
|
|
|
return result;
|
2010-12-20 19:27:26 +00:00
|
|
|
}
|
|
|
|
sp<GraphicBuffer>& gbuf(mSlots[buf]);
|
2011-05-03 02:51:12 +00:00
|
|
|
if (result & ISurfaceTexture::RELEASE_ALL_BUFFERS) {
|
|
|
|
freeAllBuffers();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((result & ISurfaceTexture::BUFFER_NEEDS_REALLOCATION) || gbuf == 0) {
|
2011-04-26 03:22:14 +00:00
|
|
|
gbuf = mSurfaceTexture->requestBuffer(buf);
|
2010-12-20 19:27:26 +00:00
|
|
|
if (gbuf == 0) {
|
2011-01-13 04:22:41 +00:00
|
|
|
LOGE("dequeueBuffer: ISurfaceTexture::requestBuffer failed");
|
2010-12-20 19:27:26 +00:00
|
|
|
return NO_MEMORY;
|
|
|
|
}
|
2011-04-12 04:19:55 +00:00
|
|
|
mQueryWidth = gbuf->width;
|
|
|
|
mQueryHeight = gbuf->height;
|
|
|
|
mQueryFormat = gbuf->format;
|
2010-12-20 19:27:26 +00:00
|
|
|
}
|
|
|
|
*buffer = gbuf.get();
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::cancelBuffer(android_native_buffer_t* buffer) {
|
2011-01-13 04:22:41 +00:00
|
|
|
LOGV("SurfaceTextureClient::cancelBuffer");
|
2010-12-20 19:27:26 +00:00
|
|
|
Mutex::Autolock lock(mMutex);
|
|
|
|
for (int i = 0; i < NUM_BUFFER_SLOTS; i++) {
|
2011-01-15 21:05:24 +00:00
|
|
|
if (mSlots[i]->handle == buffer->handle) {
|
2010-12-20 19:27:26 +00:00
|
|
|
mSurfaceTexture->cancelBuffer(i);
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return BAD_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::lockBuffer(android_native_buffer_t* buffer) {
|
2011-01-13 04:22:41 +00:00
|
|
|
LOGV("SurfaceTextureClient::lockBuffer");
|
2010-12-20 19:27:26 +00:00
|
|
|
Mutex::Autolock lock(mMutex);
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::queueBuffer(android_native_buffer_t* buffer) {
|
2011-01-13 04:22:41 +00:00
|
|
|
LOGV("SurfaceTextureClient::queueBuffer");
|
2010-12-20 19:27:26 +00:00
|
|
|
Mutex::Autolock lock(mMutex);
|
2011-02-18 19:02:42 +00:00
|
|
|
int64_t timestamp;
|
|
|
|
if (mTimestamp == NATIVE_WINDOW_TIMESTAMP_AUTO) {
|
|
|
|
timestamp = systemTime(SYSTEM_TIME_MONOTONIC);
|
|
|
|
LOGV("SurfaceTextureClient::queueBuffer making up timestamp: %.2f ms",
|
|
|
|
timestamp / 1000000.f);
|
|
|
|
} else {
|
|
|
|
timestamp = mTimestamp;
|
|
|
|
}
|
2010-12-20 19:27:26 +00:00
|
|
|
for (int i = 0; i < NUM_BUFFER_SLOTS; i++) {
|
2011-01-15 21:05:24 +00:00
|
|
|
if (mSlots[i]->handle == buffer->handle) {
|
2011-02-18 19:02:42 +00:00
|
|
|
return mSurfaceTexture->queueBuffer(i, timestamp);
|
2010-12-20 19:27:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
LOGE("queueBuffer: unknown buffer queued");
|
|
|
|
return BAD_VALUE;
|
|
|
|
}
|
|
|
|
|
2011-04-14 23:54:38 +00:00
|
|
|
int SurfaceTextureClient::query(int what, int* value) const {
|
2011-01-13 04:22:41 +00:00
|
|
|
LOGV("SurfaceTextureClient::query");
|
2011-02-27 22:10:20 +00:00
|
|
|
switch (what) {
|
2011-04-20 21:20:59 +00:00
|
|
|
case NATIVE_WINDOW_FORMAT:
|
|
|
|
if (mReqFormat) {
|
|
|
|
*value = mReqFormat;
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
break;
|
2011-03-08 20:18:54 +00:00
|
|
|
case NATIVE_WINDOW_QUEUES_TO_WINDOW_COMPOSER:
|
2011-04-20 21:20:59 +00:00
|
|
|
// TODO: this is not needed anymore
|
2011-03-08 20:18:54 +00:00
|
|
|
*value = 0;
|
|
|
|
return NO_ERROR;
|
2011-03-14 22:00:06 +00:00
|
|
|
case NATIVE_WINDOW_CONCRETE_TYPE:
|
2011-04-20 21:20:59 +00:00
|
|
|
// TODO: this is not needed anymore
|
2011-03-14 22:00:06 +00:00
|
|
|
*value = NATIVE_WINDOW_SURFACE_TEXTURE_CLIENT;
|
|
|
|
return NO_ERROR;
|
2011-02-27 22:10:20 +00:00
|
|
|
}
|
2011-04-20 21:20:59 +00:00
|
|
|
return mSurfaceTexture->query(what, value);
|
2010-12-20 19:27:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::perform(int operation, va_list args)
|
|
|
|
{
|
|
|
|
int res = NO_ERROR;
|
|
|
|
switch (operation) {
|
|
|
|
case NATIVE_WINDOW_CONNECT:
|
|
|
|
res = dispatchConnect(args);
|
|
|
|
break;
|
|
|
|
case NATIVE_WINDOW_DISCONNECT:
|
|
|
|
res = dispatchDisconnect(args);
|
|
|
|
break;
|
|
|
|
case NATIVE_WINDOW_SET_USAGE:
|
|
|
|
res = dispatchSetUsage(args);
|
|
|
|
break;
|
|
|
|
case NATIVE_WINDOW_SET_CROP:
|
|
|
|
res = dispatchSetCrop(args);
|
|
|
|
break;
|
|
|
|
case NATIVE_WINDOW_SET_BUFFER_COUNT:
|
|
|
|
res = dispatchSetBufferCount(args);
|
|
|
|
break;
|
|
|
|
case NATIVE_WINDOW_SET_BUFFERS_GEOMETRY:
|
|
|
|
res = dispatchSetBuffersGeometry(args);
|
|
|
|
break;
|
|
|
|
case NATIVE_WINDOW_SET_BUFFERS_TRANSFORM:
|
|
|
|
res = dispatchSetBuffersTransform(args);
|
|
|
|
break;
|
2011-02-18 19:02:42 +00:00
|
|
|
case NATIVE_WINDOW_SET_BUFFERS_TIMESTAMP:
|
|
|
|
res = dispatchSetBuffersTimestamp(args);
|
|
|
|
break;
|
2010-12-20 19:27:26 +00:00
|
|
|
default:
|
|
|
|
res = NAME_NOT_FOUND;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::dispatchConnect(va_list args) {
|
|
|
|
int api = va_arg(args, int);
|
|
|
|
return connect(api);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::dispatchDisconnect(va_list args) {
|
|
|
|
int api = va_arg(args, int);
|
|
|
|
return disconnect(api);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::dispatchSetUsage(va_list args) {
|
|
|
|
int usage = va_arg(args, int);
|
|
|
|
return setUsage(usage);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::dispatchSetCrop(va_list args) {
|
|
|
|
android_native_rect_t const* rect = va_arg(args, android_native_rect_t*);
|
|
|
|
return setCrop(reinterpret_cast<Rect const*>(rect));
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::dispatchSetBufferCount(va_list args) {
|
|
|
|
size_t bufferCount = va_arg(args, size_t);
|
|
|
|
return setBufferCount(bufferCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::dispatchSetBuffersGeometry(va_list args) {
|
|
|
|
int w = va_arg(args, int);
|
|
|
|
int h = va_arg(args, int);
|
|
|
|
int f = va_arg(args, int);
|
|
|
|
return setBuffersGeometry(w, h, f);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::dispatchSetBuffersTransform(va_list args) {
|
|
|
|
int transform = va_arg(args, int);
|
|
|
|
return setBuffersTransform(transform);
|
|
|
|
}
|
|
|
|
|
2011-02-18 19:02:42 +00:00
|
|
|
int SurfaceTextureClient::dispatchSetBuffersTimestamp(va_list args) {
|
|
|
|
int64_t timestamp = va_arg(args, int64_t);
|
|
|
|
return setBuffersTimestamp(timestamp);
|
|
|
|
}
|
|
|
|
|
2010-12-20 19:27:26 +00:00
|
|
|
int SurfaceTextureClient::connect(int api) {
|
2011-01-13 04:22:41 +00:00
|
|
|
LOGV("SurfaceTextureClient::connect");
|
2011-04-12 04:19:55 +00:00
|
|
|
Mutex::Autolock lock(mMutex);
|
|
|
|
int err = NO_ERROR;
|
|
|
|
switch (api) {
|
|
|
|
case NATIVE_WINDOW_API_EGL:
|
|
|
|
if (mConnectedApi) {
|
|
|
|
err = -EINVAL;
|
|
|
|
} else {
|
|
|
|
mConnectedApi = api;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
err = -EINVAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return err;
|
2010-12-20 19:27:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::disconnect(int api) {
|
2011-01-13 04:22:41 +00:00
|
|
|
LOGV("SurfaceTextureClient::disconnect");
|
2011-04-12 04:19:55 +00:00
|
|
|
Mutex::Autolock lock(mMutex);
|
|
|
|
int err = NO_ERROR;
|
|
|
|
switch (api) {
|
|
|
|
case NATIVE_WINDOW_API_EGL:
|
|
|
|
if (mConnectedApi == api) {
|
|
|
|
mConnectedApi = 0;
|
|
|
|
} else {
|
|
|
|
err = -EINVAL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
err = -EINVAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::getConnectedApi() const
|
|
|
|
{
|
|
|
|
Mutex::Autolock lock(mMutex);
|
|
|
|
return mConnectedApi;
|
2010-12-20 19:27:26 +00:00
|
|
|
}
|
|
|
|
|
2011-04-12 04:19:55 +00:00
|
|
|
|
2010-12-20 19:27:26 +00:00
|
|
|
int SurfaceTextureClient::setUsage(uint32_t reqUsage)
|
|
|
|
{
|
2011-01-13 04:22:41 +00:00
|
|
|
LOGV("SurfaceTextureClient::setUsage");
|
2010-12-20 19:27:26 +00:00
|
|
|
Mutex::Autolock lock(mMutex);
|
|
|
|
mReqUsage = reqUsage;
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::setCrop(Rect const* rect)
|
|
|
|
{
|
2011-01-13 04:22:41 +00:00
|
|
|
LOGV("SurfaceTextureClient::setCrop");
|
2010-12-20 19:27:26 +00:00
|
|
|
Mutex::Autolock lock(mMutex);
|
|
|
|
|
2011-01-29 02:21:54 +00:00
|
|
|
Rect realRect;
|
|
|
|
if (rect == NULL || rect->isEmpty()) {
|
|
|
|
realRect = Rect(0, 0);
|
|
|
|
} else {
|
|
|
|
realRect = *rect;
|
|
|
|
}
|
2010-12-20 19:27:26 +00:00
|
|
|
|
|
|
|
status_t err = mSurfaceTexture->setCrop(*rect);
|
2011-01-29 02:21:54 +00:00
|
|
|
LOGE_IF(err, "ISurfaceTexture::setCrop(...) returned %s", strerror(-err));
|
2010-12-20 19:27:26 +00:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::setBufferCount(int bufferCount)
|
|
|
|
{
|
2011-01-13 04:22:41 +00:00
|
|
|
LOGV("SurfaceTextureClient::setBufferCount");
|
2010-12-20 19:27:26 +00:00
|
|
|
Mutex::Autolock lock(mMutex);
|
|
|
|
|
|
|
|
status_t err = mSurfaceTexture->setBufferCount(bufferCount);
|
|
|
|
LOGE_IF(err, "ISurfaceTexture::setBufferCount(%d) returned %s",
|
|
|
|
bufferCount, strerror(-err));
|
|
|
|
|
|
|
|
if (err == NO_ERROR) {
|
|
|
|
freeAllBuffers();
|
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::setBuffersGeometry(int w, int h, int format)
|
|
|
|
{
|
2011-01-13 04:22:41 +00:00
|
|
|
LOGV("SurfaceTextureClient::setBuffersGeometry");
|
2010-12-20 19:27:26 +00:00
|
|
|
Mutex::Autolock lock(mMutex);
|
|
|
|
|
|
|
|
if (w<0 || h<0 || format<0)
|
|
|
|
return BAD_VALUE;
|
|
|
|
|
|
|
|
if ((w && !h) || (!w && h))
|
|
|
|
return BAD_VALUE;
|
|
|
|
|
|
|
|
mReqWidth = w;
|
|
|
|
mReqHeight = h;
|
|
|
|
mReqFormat = format;
|
|
|
|
|
2011-01-29 02:21:54 +00:00
|
|
|
status_t err = mSurfaceTexture->setCrop(Rect(0, 0));
|
|
|
|
LOGE_IF(err, "ISurfaceTexture::setCrop(...) returned %s", strerror(-err));
|
|
|
|
|
|
|
|
return err;
|
2010-12-20 19:27:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int SurfaceTextureClient::setBuffersTransform(int transform)
|
|
|
|
{
|
2011-01-13 04:22:41 +00:00
|
|
|
LOGV("SurfaceTextureClient::setBuffersTransform");
|
2010-12-20 19:27:26 +00:00
|
|
|
Mutex::Autolock lock(mMutex);
|
|
|
|
status_t err = mSurfaceTexture->setTransform(transform);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2011-02-18 19:02:42 +00:00
|
|
|
int SurfaceTextureClient::setBuffersTimestamp(int64_t timestamp)
|
|
|
|
{
|
|
|
|
LOGV("SurfaceTextureClient::setBuffersTimestamp");
|
|
|
|
Mutex::Autolock lock(mMutex);
|
|
|
|
mTimestamp = timestamp;
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
2010-12-20 19:27:26 +00:00
|
|
|
void SurfaceTextureClient::freeAllBuffers() {
|
|
|
|
for (int i = 0; i < NUM_BUFFER_SLOTS; i++) {
|
|
|
|
mSlots[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}; // namespace android
|