libgui: Enable -Weverything and -Werror
Enables -Weverything and -Werror, with just a few exceptions for warnings we can't (or shouldn't need to) work around. Cherry pick of I034abec27bf4020d84af60d7acc1939c59986dd6 plus a couple of minor changes to CpuConsumer.cpp to make it work with a prior change: Uncomment CC_LOGV on line 46 Change C-style cast to static_cast on line 71 Change-Id: Iaec610477ea0122317b0578fb74caf2383d4cf08
This commit is contained in:
parent
b6b81d6acd
commit
3be1c6b60a
@ -95,7 +95,7 @@ class BufferItemConsumer: public ConsumerBase
|
||||
// setDefaultBufferFormat allows the BufferQueue to create
|
||||
// GraphicBuffers of a defaultFormat if no format is specified
|
||||
// in dequeueBuffer
|
||||
status_t setDefaultBufferFormat(uint32_t defaultFormat);
|
||||
status_t setDefaultBufferFormat(PixelFormat defaultFormat);
|
||||
};
|
||||
|
||||
} // namespace android
|
||||
|
@ -125,9 +125,8 @@ public:
|
||||
|
||||
// setDefaultBufferFormat allows the BufferQueue to create
|
||||
// GraphicBuffers of a defaultFormat if no format is specified
|
||||
// in dequeueBuffer. Formats are enumerated in graphics.h; the
|
||||
// initial default is HAL_PIXEL_FORMAT_RGBA_8888.
|
||||
virtual status_t setDefaultBufferFormat(uint32_t defaultFormat);
|
||||
// in dequeueBuffer. The initial default is HAL_PIXEL_FORMAT_RGBA_8888.
|
||||
virtual status_t setDefaultBufferFormat(PixelFormat defaultFormat);
|
||||
|
||||
// setConsumerUsageBits will turn on additional usage bits for dequeueBuffer.
|
||||
// These are merged with the bits passed to dequeueBuffer. The values are
|
||||
|
@ -199,15 +199,15 @@ private:
|
||||
|
||||
// mDefaultBufferFormat can be set so it will override the buffer format
|
||||
// when it isn't specified in dequeueBuffer.
|
||||
uint32_t mDefaultBufferFormat;
|
||||
PixelFormat mDefaultBufferFormat;
|
||||
|
||||
// mDefaultWidth holds the default width of allocated buffers. It is used
|
||||
// in dequeueBuffer if a width and height of 0 are specified.
|
||||
int mDefaultWidth;
|
||||
uint32_t mDefaultWidth;
|
||||
|
||||
// mDefaultHeight holds the default height of allocated buffers. It is used
|
||||
// in dequeueBuffer if a width and height of 0 are specified.
|
||||
int mDefaultHeight;
|
||||
uint32_t mDefaultHeight;
|
||||
|
||||
// mDefaultMaxBufferCount is the default limit on the number of buffers that
|
||||
// will be allocated at one time. This default limit is set by the consumer.
|
||||
|
@ -73,9 +73,7 @@ public:
|
||||
// updateTexImage() is called. If width and height are both zero, the
|
||||
// default values specified by setDefaultBufferSize() are used instead.
|
||||
//
|
||||
// The pixel formats are enumerated in graphics.h, e.g.
|
||||
// HAL_PIXEL_FORMAT_RGBA_8888. If the format is 0, the default format
|
||||
// will be used.
|
||||
// If the format is 0, the default format will be used.
|
||||
//
|
||||
// The usage argument specifies gralloc buffer usage flags. The values
|
||||
// are enumerated in gralloc.h, e.g. GRALLOC_USAGE_HW_RENDER. These
|
||||
@ -93,8 +91,9 @@ public:
|
||||
//
|
||||
// In both cases, the producer will need to call requestBuffer to get a
|
||||
// GraphicBuffer handle for the returned slot.
|
||||
virtual status_t dequeueBuffer(int *outSlot, sp<Fence>* outFence, bool async,
|
||||
uint32_t width, uint32_t height, uint32_t format, uint32_t usage);
|
||||
virtual status_t dequeueBuffer(int *outSlot, sp<Fence>* outFence,
|
||||
bool async, uint32_t width, uint32_t height, PixelFormat format,
|
||||
uint32_t usage);
|
||||
|
||||
// See IGraphicBufferProducer::detachBuffer
|
||||
virtual status_t detachBuffer(int slot);
|
||||
@ -171,7 +170,7 @@ public:
|
||||
|
||||
// See IGraphicBufferProducer::allocateBuffers
|
||||
virtual void allocateBuffers(bool async, uint32_t width, uint32_t height,
|
||||
uint32_t format, uint32_t usage);
|
||||
PixelFormat format, uint32_t usage);
|
||||
|
||||
private:
|
||||
// This is required by the IBinder::DeathRecipient interface
|
||||
|
@ -71,7 +71,7 @@ class CpuConsumer : public ConsumerBase
|
||||
// Create a new CPU consumer. The maxLockedBuffers parameter specifies
|
||||
// how many buffers can be locked for user access at the same time.
|
||||
CpuConsumer(const sp<IGraphicBufferConsumer>& bq,
|
||||
uint32_t maxLockedBuffers, bool controlledByApp = false);
|
||||
size_t maxLockedBuffers, bool controlledByApp = false);
|
||||
|
||||
virtual ~CpuConsumer();
|
||||
|
||||
@ -86,10 +86,9 @@ class CpuConsumer : public ConsumerBase
|
||||
status_t setDefaultBufferSize(uint32_t width, uint32_t height);
|
||||
|
||||
// setDefaultBufferFormat allows CpuConsumer's BufferQueue to create buffers
|
||||
// of a defaultFormat if no format is specified by producer. Formats are
|
||||
// enumerated in graphics.h; the initial default is
|
||||
// HAL_PIXEL_FORMAT_RGBA_8888.
|
||||
status_t setDefaultBufferFormat(uint32_t defaultFormat);
|
||||
// of a defaultFormat if no format is specified by producer.
|
||||
// The initial default is PIXEL_FORMAT_RGBA_8888.
|
||||
status_t setDefaultBufferFormat(PixelFormat defaultFormat);
|
||||
|
||||
// Gets the next graphics buffer from the producer and locks it for CPU use,
|
||||
// filling out the passed-in locked buffer structure with the native pointer
|
||||
@ -110,9 +109,9 @@ class CpuConsumer : public ConsumerBase
|
||||
|
||||
private:
|
||||
// Maximum number of buffers that can be locked at a time
|
||||
uint32_t mMaxLockedBuffers;
|
||||
size_t mMaxLockedBuffers;
|
||||
|
||||
status_t releaseAcquiredBufferLocked(int lockedIdx);
|
||||
status_t releaseAcquiredBufferLocked(size_t lockedIdx);
|
||||
|
||||
virtual void freeBufferLocked(int slotIndex);
|
||||
|
||||
@ -133,7 +132,7 @@ class CpuConsumer : public ConsumerBase
|
||||
Vector<AcquiredBuffer> mAcquiredBuffers;
|
||||
|
||||
// Count of currently locked buffers
|
||||
uint32_t mCurrentLockedBuffers;
|
||||
size_t mCurrentLockedBuffers;
|
||||
|
||||
};
|
||||
|
||||
|
@ -150,7 +150,7 @@ public:
|
||||
//
|
||||
// The frame number is an incrementing counter set to 0 at the creation of
|
||||
// the BufferQueue associated with this consumer.
|
||||
int64_t getFrameNumber();
|
||||
uint64_t getFrameNumber();
|
||||
|
||||
// setDefaultBufferSize is used to set the size of buffers returned by
|
||||
// requestBuffers when a with and height of zero is requested.
|
||||
@ -197,7 +197,7 @@ public:
|
||||
|
||||
// These functions call the corresponding BufferQueue implementation
|
||||
// so the refactoring can proceed smoothly
|
||||
status_t setDefaultBufferFormat(uint32_t defaultFormat);
|
||||
status_t setDefaultBufferFormat(PixelFormat defaultFormat);
|
||||
status_t setConsumerUsageBits(uint32_t usage);
|
||||
status_t setTransformHint(uint32_t hint);
|
||||
|
||||
@ -254,7 +254,7 @@ protected:
|
||||
return releaseBufferLocked(slot, graphicBuffer, mEglDisplay, eglFence);
|
||||
}
|
||||
|
||||
static bool isExternalFormat(uint32_t format);
|
||||
static bool isExternalFormat(PixelFormat format);
|
||||
|
||||
// This releases the buffer in the slot referenced by mCurrentTexture,
|
||||
// then updates state to refer to the BufferItem, which must be a
|
||||
@ -391,7 +391,7 @@ private:
|
||||
|
||||
// mCurrentFrameNumber is the frame counter for the current texture.
|
||||
// It gets set each time updateTexImage is called.
|
||||
int64_t mCurrentFrameNumber;
|
||||
uint64_t mCurrentFrameNumber;
|
||||
|
||||
uint32_t mDefaultWidth, mDefaultHeight;
|
||||
|
||||
|
@ -33,8 +33,9 @@ class GraphicBufferAlloc : public BnGraphicBufferAlloc {
|
||||
public:
|
||||
GraphicBufferAlloc();
|
||||
virtual ~GraphicBufferAlloc();
|
||||
virtual sp<GraphicBuffer> createGraphicBuffer(uint32_t w, uint32_t h,
|
||||
PixelFormat format, uint32_t usage, status_t* error);
|
||||
virtual sp<GraphicBuffer> createGraphicBuffer(uint32_t width,
|
||||
uint32_t height, PixelFormat format, uint32_t usage,
|
||||
status_t* error);
|
||||
};
|
||||
|
||||
|
||||
|
@ -45,10 +45,10 @@ public:
|
||||
class BnGraphicBufferAlloc : public BnInterface<IGraphicBufferAlloc>
|
||||
{
|
||||
public:
|
||||
virtual status_t onTransact( uint32_t code,
|
||||
const Parcel& data,
|
||||
Parcel* reply,
|
||||
uint32_t flags = 0);
|
||||
virtual status_t onTransact(uint32_t code,
|
||||
const Parcel& data,
|
||||
Parcel* reply,
|
||||
uint32_t flags = 0);
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
@ -25,6 +25,7 @@
|
||||
#include <utils/Timers.h>
|
||||
|
||||
#include <binder/IInterface.h>
|
||||
#include <ui/PixelFormat.h>
|
||||
#include <ui/Rect.h>
|
||||
|
||||
#include <EGL/egl.h>
|
||||
@ -280,11 +281,11 @@ public:
|
||||
|
||||
// setDefaultBufferFormat allows the BufferQueue to create
|
||||
// GraphicBuffers of a defaultFormat if no format is specified
|
||||
// in dequeueBuffer. Formats are enumerated in graphics.h; the
|
||||
// initial default is HAL_PIXEL_FORMAT_RGBA_8888.
|
||||
// in dequeueBuffer.
|
||||
// The initial default is PIXEL_FORMAT_RGBA_8888.
|
||||
//
|
||||
// Return of a value other than NO_ERROR means an unknown error has occurred.
|
||||
virtual status_t setDefaultBufferFormat(uint32_t defaultFormat) = 0;
|
||||
virtual status_t setDefaultBufferFormat(PixelFormat defaultFormat) = 0;
|
||||
|
||||
// setConsumerUsageBits will turn on additional usage bits for dequeueBuffer.
|
||||
// These are merged with the bits passed to dequeueBuffer. The values are
|
||||
|
@ -134,9 +134,7 @@ public:
|
||||
// updateTexImage() is called. If width and height are both zero, the
|
||||
// default values specified by setDefaultBufferSize() are used instead.
|
||||
//
|
||||
// The pixel formats are enumerated in <graphics.h>, e.g.
|
||||
// HAL_PIXEL_FORMAT_RGBA_8888. If the format is 0, the default format
|
||||
// will be used.
|
||||
// If the format is 0, the default format will be used.
|
||||
//
|
||||
// The usage argument specifies gralloc buffer usage flags. The values
|
||||
// are enumerated in <gralloc.h>, e.g. GRALLOC_USAGE_HW_RENDER. These
|
||||
@ -167,7 +165,7 @@ public:
|
||||
// All other negative values are an unknown error returned downstream
|
||||
// from the graphics allocator (typically errno).
|
||||
virtual status_t dequeueBuffer(int* slot, sp<Fence>* fence, bool async,
|
||||
uint32_t w, uint32_t h, uint32_t format, uint32_t usage) = 0;
|
||||
uint32_t w, uint32_t h, PixelFormat format, uint32_t usage) = 0;
|
||||
|
||||
// detachBuffer attempts to remove all ownership of the buffer in the given
|
||||
// slot from the buffer queue. If this call succeeds, the slot will be
|
||||
@ -448,7 +446,7 @@ public:
|
||||
// dequeueBuffer. If there are already the maximum number of buffers
|
||||
// allocated, this function has no effect.
|
||||
virtual void allocateBuffers(bool async, uint32_t width, uint32_t height,
|
||||
uint32_t format, uint32_t usage) = 0;
|
||||
PixelFormat format, uint32_t usage) = 0;
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
@ -28,7 +28,6 @@
|
||||
#include <binder/IInterface.h>
|
||||
|
||||
#include <ui/FrameStats.h>
|
||||
#include <ui/PixelFormat.h>
|
||||
|
||||
#include <gui/IGraphicBufferAlloc.h>
|
||||
#include <gui/ISurfaceComposerClient.h>
|
||||
|
@ -67,12 +67,12 @@ public:
|
||||
int32_t getMinDelay() const;
|
||||
nsecs_t getMinDelayNs() const;
|
||||
int32_t getVersion() const;
|
||||
int32_t getFifoReservedEventCount() const;
|
||||
int32_t getFifoMaxEventCount() const;
|
||||
uint32_t getFifoReservedEventCount() const;
|
||||
uint32_t getFifoMaxEventCount() const;
|
||||
const String8& getStringType() const;
|
||||
const String8& getRequiredPermission() const;
|
||||
int32_t getMaxDelay() const;
|
||||
int32_t getFlags() const;
|
||||
uint32_t getFlags() const;
|
||||
bool isWakeUpSensor() const;
|
||||
int32_t getReportingMode() const;
|
||||
|
||||
@ -93,8 +93,8 @@ private:
|
||||
float mPower;
|
||||
int32_t mMinDelay;
|
||||
int32_t mVersion;
|
||||
int32_t mFifoReservedEventCount;
|
||||
int32_t mFifoMaxEventCount;
|
||||
uint32_t mFifoReservedEventCount;
|
||||
uint32_t mFifoMaxEventCount;
|
||||
String8 mStringType;
|
||||
String8 mRequiredPermission;
|
||||
int32_t mMaxDelay;
|
||||
|
@ -160,12 +160,12 @@ protected:
|
||||
virtual int connect(int api);
|
||||
virtual int disconnect(int api);
|
||||
virtual int setBufferCount(int bufferCount);
|
||||
virtual int setBuffersDimensions(int w, int h);
|
||||
virtual int setBuffersUserDimensions(int w, int h);
|
||||
virtual int setBuffersFormat(int format);
|
||||
virtual int setBuffersDimensions(uint32_t width, uint32_t height);
|
||||
virtual int setBuffersUserDimensions(uint32_t width, uint32_t height);
|
||||
virtual int setBuffersFormat(PixelFormat format);
|
||||
virtual int setScalingMode(int mode);
|
||||
virtual int setBuffersTransform(int transform);
|
||||
virtual int setBuffersStickyTransform(int transform);
|
||||
virtual int setBuffersTransform(uint32_t transform);
|
||||
virtual int setBuffersStickyTransform(uint32_t transform);
|
||||
virtual int setBuffersTimestamp(int64_t timestamp);
|
||||
virtual int setCrop(Rect const* rect);
|
||||
virtual int setUsage(uint32_t reqUsage);
|
||||
@ -211,7 +211,7 @@ private:
|
||||
|
||||
// mReqFormat is the buffer pixel format that will be requested at the next
|
||||
// deuque operation. It is initialized to PIXEL_FORMAT_RGBA_8888.
|
||||
uint32_t mReqFormat;
|
||||
PixelFormat mReqFormat;
|
||||
|
||||
// mReqUsage is the set of buffer usage flags that will be requested
|
||||
// at the next deuque operation. It is initialized to 0.
|
||||
@ -240,23 +240,23 @@ private:
|
||||
// from being set by the compositor.
|
||||
uint32_t mStickyTransform;
|
||||
|
||||
// mDefaultWidth is default width of the buffers, regardless of the
|
||||
// native_window_set_buffers_dimensions call.
|
||||
uint32_t mDefaultWidth;
|
||||
// mDefaultWidth is default width of the buffers, regardless of the
|
||||
// native_window_set_buffers_dimensions call.
|
||||
uint32_t mDefaultWidth;
|
||||
|
||||
// mDefaultHeight is default height of the buffers, regardless of the
|
||||
// native_window_set_buffers_dimensions call.
|
||||
uint32_t mDefaultHeight;
|
||||
// mDefaultHeight is default height of the buffers, regardless of the
|
||||
// native_window_set_buffers_dimensions call.
|
||||
uint32_t mDefaultHeight;
|
||||
|
||||
// mUserWidth, if non-zero, is an application-specified override
|
||||
// of mDefaultWidth. This is lower priority than the width set by
|
||||
// native_window_set_buffers_dimensions.
|
||||
uint32_t mUserWidth;
|
||||
// mUserWidth, if non-zero, is an application-specified override
|
||||
// of mDefaultWidth. This is lower priority than the width set by
|
||||
// native_window_set_buffers_dimensions.
|
||||
uint32_t mUserWidth;
|
||||
|
||||
// mUserHeight, if non-zero, is an application-specified override
|
||||
// of mDefaultHeight. This is lower priority than the height set
|
||||
// by native_window_set_buffers_dimensions.
|
||||
uint32_t mUserHeight;
|
||||
// mUserHeight, if non-zero, is an application-specified override
|
||||
// of mDefaultHeight. This is lower priority than the height set
|
||||
// by native_window_set_buffers_dimensions.
|
||||
uint32_t mUserHeight;
|
||||
|
||||
// mTransformHint is the transform probably applied to buffers of this
|
||||
// window. this is only a hint, actual transform may differ.
|
||||
|
@ -127,7 +127,7 @@ public:
|
||||
status_t show(const sp<IBinder>& id);
|
||||
status_t setFlags(const sp<IBinder>& id, uint32_t flags, uint32_t mask);
|
||||
status_t setTransparentRegionHint(const sp<IBinder>& id, const Region& transparent);
|
||||
status_t setLayer(const sp<IBinder>& id, int32_t layer);
|
||||
status_t setLayer(const sp<IBinder>& id, uint32_t layer);
|
||||
status_t setAlpha(const sp<IBinder>& id, float alpha=1.0f);
|
||||
status_t setMatrix(const sp<IBinder>& id, float dsdx, float dtdx, float dsdy, float dtdy);
|
||||
status_t setPosition(const sp<IBinder>& id, float x, float y);
|
||||
|
@ -57,8 +57,8 @@ public:
|
||||
// release surface data from java
|
||||
void clear();
|
||||
|
||||
status_t setLayerStack(int32_t layerStack);
|
||||
status_t setLayer(int32_t layer);
|
||||
status_t setLayerStack(uint32_t layerStack);
|
||||
status_t setLayer(uint32_t layer);
|
||||
status_t setPosition(float x, float y);
|
||||
status_t setSize(uint32_t w, uint32_t h);
|
||||
status_t hide();
|
||||
|
@ -1,8 +1,40 @@
|
||||
# Copyright 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.
|
||||
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_CLANG := true
|
||||
LOCAL_CPPFLAGS := -std=c++11
|
||||
LOCAL_CPPFLAGS := -std=c++1y -Weverything -Werror
|
||||
|
||||
# The static constructors and destructors in this library have not been noted to
|
||||
# introduce significant overheads
|
||||
LOCAL_CPPFLAGS += -Wno-exit-time-destructors
|
||||
LOCAL_CPPFLAGS += -Wno-global-constructors
|
||||
|
||||
# We only care about compiling as C++14
|
||||
LOCAL_CPPFLAGS += -Wno-c++98-compat-pedantic
|
||||
|
||||
# We don't need to enumerate every case in a switch as long as a default case
|
||||
# is present
|
||||
LOCAL_CPPFLAGS += -Wno-switch-enum
|
||||
|
||||
# Allow calling variadic macros without a __VA_ARGS__ list
|
||||
LOCAL_CPPFLAGS += -Wno-gnu-zero-variadic-macro-arguments
|
||||
|
||||
# Don't warn about struct padding
|
||||
LOCAL_CPPFLAGS += -Wno-padded
|
||||
|
||||
LOCAL_SRC_FILES := \
|
||||
IGraphicBufferConsumer.cpp \
|
||||
|
@ -149,12 +149,12 @@ ssize_t BitTube::sendObjects(const sp<BitTube>& tube,
|
||||
ssize_t size = tube->write(vaddr, count*objSize);
|
||||
|
||||
// should never happen because of SOCK_SEQPACKET
|
||||
LOG_ALWAYS_FATAL_IF((size >= 0) && (size % objSize),
|
||||
LOG_ALWAYS_FATAL_IF((size >= 0) && (size % static_cast<ssize_t>(objSize)),
|
||||
"BitTube::sendObjects(count=%zu, size=%zu), res=%zd (partial events were sent!)",
|
||||
count, objSize, size);
|
||||
|
||||
//ALOGE_IF(size<0, "error %d sending %d events", size, count);
|
||||
return size < 0 ? size : size / objSize;
|
||||
return size < 0 ? size : size / static_cast<ssize_t>(objSize);
|
||||
}
|
||||
|
||||
ssize_t BitTube::recvObjects(const sp<BitTube>& tube,
|
||||
@ -164,12 +164,12 @@ ssize_t BitTube::recvObjects(const sp<BitTube>& tube,
|
||||
ssize_t size = tube->read(vaddr, count*objSize);
|
||||
|
||||
// should never happen because of SOCK_SEQPACKET
|
||||
LOG_ALWAYS_FATAL_IF((size >= 0) && (size % objSize),
|
||||
LOG_ALWAYS_FATAL_IF((size >= 0) && (size % static_cast<ssize_t>(objSize)),
|
||||
"BitTube::recvObjects(count=%zu, size=%zu), res=%zd (partial events were received!)",
|
||||
count, objSize, size);
|
||||
|
||||
//ALOGE_IF(size<0, "error %d receiving %d events", size, count);
|
||||
return size < 0 ? size : size / objSize;
|
||||
return size < 0 ? size : size / static_cast<ssize_t>(objSize);
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
@ -16,15 +16,15 @@
|
||||
|
||||
//#define LOG_NDEBUG 0
|
||||
#define LOG_TAG "BufferItemConsumer"
|
||||
#define ATRACE_TAG ATRACE_TAG_GRAPHICS
|
||||
//#define ATRACE_TAG ATRACE_TAG_GRAPHICS
|
||||
#include <utils/Log.h>
|
||||
|
||||
#include <gui/BufferItemConsumer.h>
|
||||
|
||||
#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__)
|
||||
//#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__)
|
||||
#define BI_LOGE(x, ...) ALOGE("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
|
||||
namespace android {
|
||||
@ -44,8 +44,7 @@ BufferItemConsumer::BufferItemConsumer(
|
||||
}
|
||||
}
|
||||
|
||||
BufferItemConsumer::~BufferItemConsumer() {
|
||||
}
|
||||
BufferItemConsumer::~BufferItemConsumer() {}
|
||||
|
||||
void BufferItemConsumer::setName(const String8& name) {
|
||||
Mutex::Autolock _l(mMutex);
|
||||
@ -105,7 +104,7 @@ status_t BufferItemConsumer::setDefaultBufferSize(uint32_t w, uint32_t h) {
|
||||
return mConsumer->setDefaultBufferSize(w, h);
|
||||
}
|
||||
|
||||
status_t BufferItemConsumer::setDefaultBufferFormat(uint32_t defaultFormat) {
|
||||
status_t BufferItemConsumer::setDefaultBufferFormat(PixelFormat defaultFormat) {
|
||||
Mutex::Autolock _l(mMutex);
|
||||
return mConsumer->setDefaultBufferFormat(defaultFormat);
|
||||
}
|
||||
|
@ -488,7 +488,7 @@ void BufferQueueConsumer::setConsumerName(const String8& name) {
|
||||
mConsumerName = name;
|
||||
}
|
||||
|
||||
status_t BufferQueueConsumer::setDefaultBufferFormat(uint32_t defaultFormat) {
|
||||
status_t BufferQueueConsumer::setDefaultBufferFormat(PixelFormat defaultFormat) {
|
||||
ATRACE_CALL();
|
||||
BQ_LOGV("setDefaultBufferFormat: %u", defaultFormat);
|
||||
Mutex::Autolock lock(mCore->mMutex);
|
||||
|
@ -250,7 +250,7 @@ status_t BufferQueueProducer::waitForFreeSlotThenRelock(const char* caller,
|
||||
|
||||
status_t BufferQueueProducer::dequeueBuffer(int *outSlot,
|
||||
sp<android::Fence> *outFence, bool async,
|
||||
uint32_t width, uint32_t height, uint32_t format, uint32_t usage) {
|
||||
uint32_t width, uint32_t height, PixelFormat format, uint32_t usage) {
|
||||
ATRACE_CALL();
|
||||
{ // Autolock scope
|
||||
Mutex::Autolock lock(mCore->mMutex);
|
||||
@ -311,7 +311,7 @@ status_t BufferQueueProducer::dequeueBuffer(int *outSlot,
|
||||
if ((buffer == NULL) ||
|
||||
(static_cast<uint32_t>(buffer->width) != width) ||
|
||||
(static_cast<uint32_t>(buffer->height) != height) ||
|
||||
(static_cast<uint32_t>(buffer->format) != format) ||
|
||||
(buffer->format != format) ||
|
||||
((static_cast<uint32_t>(buffer->usage) & usage) != usage))
|
||||
{
|
||||
mSlots[found].mAcquireCalled = false;
|
||||
@ -341,7 +341,7 @@ status_t BufferQueueProducer::dequeueBuffer(int *outSlot,
|
||||
status_t error;
|
||||
BQ_LOGV("dequeueBuffer: allocating a new buffer for slot %d", *outSlot);
|
||||
sp<GraphicBuffer> graphicBuffer(mCore->mAllocator->createGraphicBuffer(
|
||||
width, height, format, usage, &error));
|
||||
width, height, format, usage, &error));
|
||||
if (graphicBuffer == NULL) {
|
||||
BQ_LOGE("dequeueBuffer: createGraphicBuffer failed");
|
||||
return error;
|
||||
@ -582,8 +582,8 @@ status_t BufferQueueProducer::queueBuffer(int slot,
|
||||
BQ_LOGV("queueBuffer: slot=%d/%" PRIu64 " time=%" PRIu64
|
||||
" crop=[%d,%d,%d,%d] transform=%#x scale=%s",
|
||||
slot, mCore->mFrameCounter + 1, timestamp,
|
||||
crop.left, crop.top, crop.right, crop.bottom,
|
||||
transform, BufferItem::scalingModeName(scalingMode));
|
||||
crop.left, crop.top, crop.right, crop.bottom, transform,
|
||||
BufferItem::scalingModeName(static_cast<uint32_t>(scalingMode)));
|
||||
|
||||
const sp<GraphicBuffer>& graphicBuffer(mSlots[slot].mGraphicBuffer);
|
||||
Rect bufferRect(graphicBuffer->getWidth(), graphicBuffer->getHeight());
|
||||
@ -603,10 +603,11 @@ status_t BufferQueueProducer::queueBuffer(int slot,
|
||||
item.mAcquireCalled = mSlots[slot].mAcquireCalled;
|
||||
item.mGraphicBuffer = mSlots[slot].mGraphicBuffer;
|
||||
item.mCrop = crop;
|
||||
item.mTransform = transform & ~NATIVE_WINDOW_TRANSFORM_INVERSE_DISPLAY;
|
||||
item.mTransform = transform &
|
||||
~static_cast<uint32_t>(NATIVE_WINDOW_TRANSFORM_INVERSE_DISPLAY);
|
||||
item.mTransformToDisplayInverse =
|
||||
bool(transform & NATIVE_WINDOW_TRANSFORM_INVERSE_DISPLAY);
|
||||
item.mScalingMode = scalingMode;
|
||||
(transform & NATIVE_WINDOW_TRANSFORM_INVERSE_DISPLAY) != 0;
|
||||
item.mScalingMode = static_cast<uint32_t>(scalingMode);
|
||||
item.mTimestamp = timestamp;
|
||||
item.mIsAutoTimestamp = isAutoTimestamp;
|
||||
item.mFrameNumber = mCore->mFrameCounter;
|
||||
@ -647,7 +648,8 @@ status_t BufferQueueProducer::queueBuffer(int slot,
|
||||
mCore->mDequeueCondition.broadcast();
|
||||
|
||||
output->inflate(mCore->mDefaultWidth, mCore->mDefaultHeight,
|
||||
mCore->mTransformHint, mCore->mQueue.size());
|
||||
mCore->mTransformHint,
|
||||
static_cast<uint32_t>(mCore->mQueue.size()));
|
||||
|
||||
ATRACE_INT(mCore->mConsumerName.string(), mCore->mQueue.size());
|
||||
|
||||
@ -736,25 +738,25 @@ int BufferQueueProducer::query(int what, int *outValue) {
|
||||
int value;
|
||||
switch (what) {
|
||||
case NATIVE_WINDOW_WIDTH:
|
||||
value = mCore->mDefaultWidth;
|
||||
value = static_cast<int32_t>(mCore->mDefaultWidth);
|
||||
break;
|
||||
case NATIVE_WINDOW_HEIGHT:
|
||||
value = mCore->mDefaultHeight;
|
||||
value = static_cast<int32_t>(mCore->mDefaultHeight);
|
||||
break;
|
||||
case NATIVE_WINDOW_FORMAT:
|
||||
value = mCore->mDefaultBufferFormat;
|
||||
value = static_cast<int32_t>(mCore->mDefaultBufferFormat);
|
||||
break;
|
||||
case NATIVE_WINDOW_MIN_UNDEQUEUED_BUFFERS:
|
||||
value = mCore->getMinUndequeuedBufferCountLocked(false);
|
||||
break;
|
||||
case NATIVE_WINDOW_STICKY_TRANSFORM:
|
||||
value = static_cast<int>(mStickyTransform);
|
||||
value = static_cast<int32_t>(mStickyTransform);
|
||||
break;
|
||||
case NATIVE_WINDOW_CONSUMER_RUNNING_BEHIND:
|
||||
value = (mCore->mQueue.size() > 1);
|
||||
break;
|
||||
case NATIVE_WINDOW_CONSUMER_USAGE_BITS:
|
||||
value = mCore->mConsumerUsageBits;
|
||||
value = static_cast<int32_t>(mCore->mConsumerUsageBits);
|
||||
break;
|
||||
default:
|
||||
return BAD_VALUE;
|
||||
@ -802,7 +804,8 @@ status_t BufferQueueProducer::connect(const sp<IProducerListener>& listener,
|
||||
case NATIVE_WINDOW_API_CAMERA:
|
||||
mCore->mConnectedApi = api;
|
||||
output->inflate(mCore->mDefaultWidth, mCore->mDefaultHeight,
|
||||
mCore->mTransformHint, mCore->mQueue.size());
|
||||
mCore->mTransformHint,
|
||||
static_cast<uint32_t>(mCore->mQueue.size()));
|
||||
|
||||
// Set up a death notification so that we can disconnect
|
||||
// automatically if the remote producer dies
|
||||
@ -904,14 +907,14 @@ status_t BufferQueueProducer::setSidebandStream(const sp<NativeHandle>& stream)
|
||||
}
|
||||
|
||||
void BufferQueueProducer::allocateBuffers(bool async, uint32_t width,
|
||||
uint32_t height, uint32_t format, uint32_t usage) {
|
||||
uint32_t height, PixelFormat format, uint32_t usage) {
|
||||
ATRACE_CALL();
|
||||
while (true) {
|
||||
Vector<int> freeSlots;
|
||||
size_t newBufferCount = 0;
|
||||
uint32_t allocWidth = 0;
|
||||
uint32_t allocHeight = 0;
|
||||
uint32_t allocFormat = 0;
|
||||
PixelFormat allocFormat = PIXEL_FORMAT_UNKNOWN;
|
||||
uint32_t allocUsage = 0;
|
||||
{ // Autolock scope
|
||||
Mutex::Autolock lock(mCore->mMutex);
|
||||
@ -937,7 +940,8 @@ void BufferQueueProducer::allocateBuffers(bool async, uint32_t width,
|
||||
currentBufferCount, maxBufferCount);
|
||||
if (maxBufferCount <= currentBufferCount)
|
||||
return;
|
||||
newBufferCount = maxBufferCount - currentBufferCount;
|
||||
newBufferCount =
|
||||
static_cast<size_t>(maxBufferCount - currentBufferCount);
|
||||
if (freeSlots.size() < newBufferCount) {
|
||||
BQ_LOGE("allocateBuffers: ran out of free slots");
|
||||
return;
|
||||
@ -950,7 +954,7 @@ void BufferQueueProducer::allocateBuffers(bool async, uint32_t width,
|
||||
mCore->mIsAllocating = true;
|
||||
} // Autolock scope
|
||||
|
||||
Vector<sp<GraphicBuffer> > buffers;
|
||||
Vector<sp<GraphicBuffer>> buffers;
|
||||
for (size_t i = 0; i < newBufferCount; ++i) {
|
||||
status_t result = NO_ERROR;
|
||||
sp<GraphicBuffer> graphicBuffer(mCore->mAllocator->createGraphicBuffer(
|
||||
@ -970,7 +974,8 @@ void BufferQueueProducer::allocateBuffers(bool async, uint32_t width,
|
||||
Mutex::Autolock lock(mCore->mMutex);
|
||||
uint32_t checkWidth = width > 0 ? width : mCore->mDefaultWidth;
|
||||
uint32_t checkHeight = height > 0 ? height : mCore->mDefaultHeight;
|
||||
uint32_t checkFormat = format != 0 ? format : mCore->mDefaultBufferFormat;
|
||||
PixelFormat checkFormat = format != 0 ?
|
||||
format : mCore->mDefaultBufferFormat;
|
||||
uint32_t checkUsage = usage | mCore->mConsumerUsageBits;
|
||||
if (checkWidth != allocWidth || checkHeight != allocHeight ||
|
||||
checkFormat != allocFormat || checkUsage != allocUsage) {
|
||||
|
@ -24,8 +24,8 @@ const char* BufferSlot::bufferStateName(BufferState state) {
|
||||
case BufferSlot::QUEUED: return "QUEUED";
|
||||
case BufferSlot::FREE: return "FREE";
|
||||
case BufferSlot::ACQUIRED: return "ACQUIRED";
|
||||
default: return "Unknown";
|
||||
}
|
||||
return "Unknown";
|
||||
}
|
||||
|
||||
} // namespace android
|
||||
|
@ -40,9 +40,9 @@
|
||||
|
||||
// Macros for including the ConsumerBase name in log messages
|
||||
#define CB_LOGV(x, ...) ALOGV("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
#define CB_LOGD(x, ...) ALOGD("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
#define CB_LOGI(x, ...) ALOGI("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
#define CB_LOGW(x, ...) ALOGW("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
//#define CB_LOGD(x, ...) ALOGD("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
//#define CB_LOGI(x, ...) ALOGI("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
//#define CB_LOGW(x, ...) ALOGW("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
#define CB_LOGE(x, ...) ALOGE("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
|
||||
namespace android {
|
||||
|
@ -16,22 +16,22 @@
|
||||
|
||||
//#define LOG_NDEBUG 0
|
||||
#define LOG_TAG "CpuConsumer"
|
||||
#define ATRACE_TAG ATRACE_TAG_GRAPHICS
|
||||
//#define ATRACE_TAG ATRACE_TAG_GRAPHICS
|
||||
|
||||
#include <cutils/compiler.h>
|
||||
#include <utils/Log.h>
|
||||
#include <gui/CpuConsumer.h>
|
||||
|
||||
#define CC_LOGV(x, ...) ALOGV("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
#define CC_LOGD(x, ...) ALOGD("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
#define CC_LOGI(x, ...) ALOGI("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
//#define CC_LOGD(x, ...) ALOGD("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
//#define CC_LOGI(x, ...) ALOGI("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
#define CC_LOGW(x, ...) ALOGW("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
#define CC_LOGE(x, ...) ALOGE("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
|
||||
namespace android {
|
||||
|
||||
CpuConsumer::CpuConsumer(const sp<IGraphicBufferConsumer>& bq,
|
||||
uint32_t maxLockedBuffers, bool controlledByApp) :
|
||||
size_t maxLockedBuffers, bool controlledByApp) :
|
||||
ConsumerBase(bq, controlledByApp),
|
||||
mMaxLockedBuffers(maxLockedBuffers),
|
||||
mCurrentLockedBuffers(0)
|
||||
@ -40,7 +40,7 @@ CpuConsumer::CpuConsumer(const sp<IGraphicBufferConsumer>& bq,
|
||||
mAcquiredBuffers.insertAt(0, maxLockedBuffers);
|
||||
|
||||
mConsumer->setConsumerUsageBits(GRALLOC_USAGE_SW_READ_OFTEN);
|
||||
mConsumer->setMaxAcquiredBufferCount(maxLockedBuffers);
|
||||
mConsumer->setMaxAcquiredBufferCount(static_cast<int32_t>(maxLockedBuffers));
|
||||
}
|
||||
|
||||
CpuConsumer::~CpuConsumer() {
|
||||
@ -61,14 +61,14 @@ status_t CpuConsumer::setDefaultBufferSize(uint32_t width, uint32_t height)
|
||||
return mConsumer->setDefaultBufferSize(width, height);
|
||||
}
|
||||
|
||||
status_t CpuConsumer::setDefaultBufferFormat(uint32_t defaultFormat)
|
||||
status_t CpuConsumer::setDefaultBufferFormat(PixelFormat defaultFormat)
|
||||
{
|
||||
Mutex::Autolock _l(mMutex);
|
||||
return mConsumer->setDefaultBufferFormat(defaultFormat);
|
||||
}
|
||||
|
||||
static bool isPossiblyYUV(PixelFormat format) {
|
||||
switch ((int)format) {
|
||||
switch (static_cast<int>(format)) {
|
||||
case HAL_PIXEL_FORMAT_RGBA_8888:
|
||||
case HAL_PIXEL_FORMAT_RGBX_8888:
|
||||
case HAL_PIXEL_FORMAT_RGB_888:
|
||||
@ -100,7 +100,7 @@ status_t CpuConsumer::lockNextBuffer(LockedBuffer *nativeBuffer) {
|
||||
|
||||
if (!nativeBuffer) return BAD_VALUE;
|
||||
if (mCurrentLockedBuffers == mMaxLockedBuffers) {
|
||||
CC_LOGW("Max buffers have been locked (%d), cannot lock anymore.",
|
||||
CC_LOGW("Max buffers have been locked (%zd), cannot lock anymore.",
|
||||
mMaxLockedBuffers);
|
||||
return NOT_ENOUGH_DATA;
|
||||
}
|
||||
@ -173,7 +173,7 @@ status_t CpuConsumer::lockNextBuffer(LockedBuffer *nativeBuffer) {
|
||||
}
|
||||
|
||||
size_t lockedIdx = 0;
|
||||
for (; lockedIdx < mMaxLockedBuffers; lockedIdx++) {
|
||||
for (; lockedIdx < static_cast<size_t>(mMaxLockedBuffers); lockedIdx++) {
|
||||
if (mAcquiredBuffers[lockedIdx].mSlot ==
|
||||
BufferQueue::INVALID_BUFFER_SLOT) {
|
||||
break;
|
||||
@ -193,7 +193,7 @@ status_t CpuConsumer::lockNextBuffer(LockedBuffer *nativeBuffer) {
|
||||
nativeBuffer->format = format;
|
||||
nativeBuffer->flexFormat = flexFormat;
|
||||
nativeBuffer->stride = (ycbcr.y != NULL) ?
|
||||
ycbcr.ystride :
|
||||
static_cast<uint32_t>(ycbcr.ystride) :
|
||||
mSlots[buf].mGraphicBuffer->getStride();
|
||||
|
||||
nativeBuffer->crop = b.mCrop;
|
||||
@ -204,8 +204,8 @@ status_t CpuConsumer::lockNextBuffer(LockedBuffer *nativeBuffer) {
|
||||
|
||||
nativeBuffer->dataCb = reinterpret_cast<uint8_t*>(ycbcr.cb);
|
||||
nativeBuffer->dataCr = reinterpret_cast<uint8_t*>(ycbcr.cr);
|
||||
nativeBuffer->chromaStride = ycbcr.cstride;
|
||||
nativeBuffer->chromaStep = ycbcr.chroma_step;
|
||||
nativeBuffer->chromaStride = static_cast<uint32_t>(ycbcr.cstride);
|
||||
nativeBuffer->chromaStep = static_cast<uint32_t>(ycbcr.chroma_step);
|
||||
|
||||
mCurrentLockedBuffers++;
|
||||
|
||||
@ -217,7 +217,7 @@ status_t CpuConsumer::unlockBuffer(const LockedBuffer &nativeBuffer) {
|
||||
size_t lockedIdx = 0;
|
||||
|
||||
void *bufPtr = reinterpret_cast<void *>(nativeBuffer.data);
|
||||
for (; lockedIdx < mMaxLockedBuffers; lockedIdx++) {
|
||||
for (; lockedIdx < static_cast<size_t>(mMaxLockedBuffers); lockedIdx++) {
|
||||
if (bufPtr == mAcquiredBuffers[lockedIdx].mBufferPointer) break;
|
||||
}
|
||||
if (lockedIdx == mMaxLockedBuffers) {
|
||||
@ -228,13 +228,13 @@ status_t CpuConsumer::unlockBuffer(const LockedBuffer &nativeBuffer) {
|
||||
return releaseAcquiredBufferLocked(lockedIdx);
|
||||
}
|
||||
|
||||
status_t CpuConsumer::releaseAcquiredBufferLocked(int lockedIdx) {
|
||||
status_t CpuConsumer::releaseAcquiredBufferLocked(size_t lockedIdx) {
|
||||
status_t err;
|
||||
int fd = -1;
|
||||
|
||||
err = mAcquiredBuffers[lockedIdx].mGraphicBuffer->unlockAsync(&fd);
|
||||
if (err != OK) {
|
||||
CC_LOGE("%s: Unable to unlock graphic buffer %d", __FUNCTION__,
|
||||
CC_LOGE("%s: Unable to unlock graphic buffer %zd", __FUNCTION__,
|
||||
lockedIdx);
|
||||
return err;
|
||||
}
|
||||
|
@ -47,18 +47,28 @@ EGLAPI const char* eglQueryStringImplementationANDROID(EGLDisplay dpy, EGLint na
|
||||
namespace android {
|
||||
|
||||
// Macros for including the GLConsumer name in log messages
|
||||
#define ST_LOGV(x, ...) ALOGV("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
#define ST_LOGD(x, ...) ALOGD("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
#define ST_LOGI(x, ...) ALOGI("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
#define ST_LOGW(x, ...) ALOGW("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
#define ST_LOGE(x, ...) ALOGE("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
#define GLC_LOGV(x, ...) ALOGV("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
#define GLC_LOGD(x, ...) ALOGD("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
//#define GLC_LOGI(x, ...) ALOGI("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
#define GLC_LOGW(x, ...) ALOGW("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
#define GLC_LOGE(x, ...) ALOGE("[%s] " x, mName.string(), ##__VA_ARGS__)
|
||||
|
||||
static const struct {
|
||||
size_t width, height;
|
||||
uint32_t width, height;
|
||||
char const* bits;
|
||||
} kDebugData = { 15, 12,
|
||||
"___________________________________XX_XX_______X_X_____X_X____X_XXXXXXX_X____XXXXXXXXXXX__"
|
||||
"___XX_XXX_XX_______XXXXXXX_________X___X_________X_____X__________________________________"
|
||||
"_______________"
|
||||
"_______________"
|
||||
"_____XX_XX_____"
|
||||
"__X_X_____X_X__"
|
||||
"__X_XXXXXXX_X__"
|
||||
"__XXXXXXXXXXX__"
|
||||
"___XX_XXX_XX___"
|
||||
"____XXXXXXX____"
|
||||
"_____X___X_____"
|
||||
"____X_____X____"
|
||||
"_______________"
|
||||
"_______________"
|
||||
};
|
||||
|
||||
// Transform matrices
|
||||
@ -135,7 +145,7 @@ GLConsumer::GLConsumer(const sp<IGraphicBufferConsumer>& bq, uint32_t tex,
|
||||
mCurrentTexture(BufferQueue::INVALID_BUFFER_SLOT),
|
||||
mAttached(true)
|
||||
{
|
||||
ST_LOGV("GLConsumer");
|
||||
GLC_LOGV("GLConsumer");
|
||||
|
||||
memcpy(mCurrentTransformMatrix, mtxIdentity,
|
||||
sizeof(mCurrentTransformMatrix));
|
||||
@ -154,7 +164,7 @@ GLConsumer::GLConsumer(const sp<IGraphicBufferConsumer>& bq, uint32_t texTarget,
|
||||
mDefaultWidth(1),
|
||||
mDefaultHeight(1),
|
||||
mFilteringEnabled(true),
|
||||
mTexName(-1),
|
||||
mTexName(0),
|
||||
mUseFenceSync(useFenceSync),
|
||||
mTexTarget(texTarget),
|
||||
mEglDisplay(EGL_NO_DISPLAY),
|
||||
@ -162,7 +172,7 @@ GLConsumer::GLConsumer(const sp<IGraphicBufferConsumer>& bq, uint32_t texTarget,
|
||||
mCurrentTexture(BufferQueue::INVALID_BUFFER_SLOT),
|
||||
mAttached(false)
|
||||
{
|
||||
ST_LOGV("GLConsumer");
|
||||
GLC_LOGV("GLConsumer");
|
||||
|
||||
memcpy(mCurrentTransformMatrix, mtxIdentity,
|
||||
sizeof(mCurrentTransformMatrix));
|
||||
@ -186,11 +196,11 @@ status_t GLConsumer::setDefaultBufferSize(uint32_t w, uint32_t h)
|
||||
|
||||
status_t GLConsumer::updateTexImage() {
|
||||
ATRACE_CALL();
|
||||
ST_LOGV("updateTexImage");
|
||||
GLC_LOGV("updateTexImage");
|
||||
Mutex::Autolock lock(mMutex);
|
||||
|
||||
if (mAbandoned) {
|
||||
ST_LOGE("updateTexImage: GLConsumer is abandoned!");
|
||||
GLC_LOGE("updateTexImage: GLConsumer is abandoned!");
|
||||
return NO_INIT;
|
||||
}
|
||||
|
||||
@ -209,11 +219,11 @@ status_t GLConsumer::updateTexImage() {
|
||||
if (err != NO_ERROR) {
|
||||
if (err == BufferQueue::NO_BUFFER_AVAILABLE) {
|
||||
// We always bind the texture even if we don't update its contents.
|
||||
ST_LOGV("updateTexImage: no buffers were available");
|
||||
GLC_LOGV("updateTexImage: no buffers were available");
|
||||
glBindTexture(mTexTarget, mTexName);
|
||||
err = NO_ERROR;
|
||||
} else {
|
||||
ST_LOGE("updateTexImage: acquire failed: %s (%d)",
|
||||
GLC_LOGE("updateTexImage: acquire failed: %s (%d)",
|
||||
strerror(-err), err);
|
||||
}
|
||||
return err;
|
||||
@ -234,11 +244,11 @@ status_t GLConsumer::updateTexImage() {
|
||||
|
||||
status_t GLConsumer::releaseTexImage() {
|
||||
ATRACE_CALL();
|
||||
ST_LOGV("releaseTexImage");
|
||||
GLC_LOGV("releaseTexImage");
|
||||
Mutex::Autolock lock(mMutex);
|
||||
|
||||
if (mAbandoned) {
|
||||
ST_LOGE("releaseTexImage: GLConsumer is abandoned!");
|
||||
GLC_LOGE("releaseTexImage: GLConsumer is abandoned!");
|
||||
return NO_INIT;
|
||||
}
|
||||
|
||||
@ -258,13 +268,13 @@ status_t GLConsumer::releaseTexImage() {
|
||||
int buf = mCurrentTexture;
|
||||
if (buf != BufferQueue::INVALID_BUFFER_SLOT) {
|
||||
|
||||
ST_LOGV("releaseTexImage: (slot=%d, mAttached=%d)", buf, mAttached);
|
||||
GLC_LOGV("releaseTexImage: (slot=%d, mAttached=%d)", buf, mAttached);
|
||||
|
||||
if (mAttached) {
|
||||
// Do whatever sync ops we need to do before releasing the slot.
|
||||
err = syncForReleaseLocked(mEglDisplay);
|
||||
if (err != NO_ERROR) {
|
||||
ST_LOGE("syncForReleaseLocked failed (slot=%d), err=%d", buf, err);
|
||||
GLC_LOGE("syncForReleaseLocked failed (slot=%d), err=%d", buf, err);
|
||||
return err;
|
||||
}
|
||||
} else {
|
||||
@ -274,7 +284,7 @@ status_t GLConsumer::releaseTexImage() {
|
||||
|
||||
err = releaseBufferLocked(buf, mSlots[buf].mGraphicBuffer, mEglDisplay, EGL_NO_SYNC_KHR);
|
||||
if (err < NO_ERROR) {
|
||||
ST_LOGE("releaseTexImage: failed to release buffer: %s (%d)",
|
||||
GLC_LOGE("releaseTexImage: failed to release buffer: %s (%d)",
|
||||
strerror(-err), err);
|
||||
return err;
|
||||
}
|
||||
@ -293,9 +303,9 @@ status_t GLConsumer::releaseTexImage() {
|
||||
|
||||
if (mAttached) {
|
||||
// This binds a dummy buffer (mReleasedTexImage).
|
||||
status_t err = bindTextureImageLocked();
|
||||
if (err != NO_ERROR) {
|
||||
return err;
|
||||
status_t result = bindTextureImageLocked();
|
||||
if (result != NO_ERROR) {
|
||||
return result;
|
||||
}
|
||||
} else {
|
||||
// detached, don't touch the texture (and we may not even have an
|
||||
@ -316,14 +326,15 @@ sp<GraphicBuffer> GLConsumer::getDebugTexImageBuffer() {
|
||||
GraphicBuffer::USAGE_SW_WRITE_RARELY);
|
||||
uint32_t* bits;
|
||||
buffer->lock(GraphicBuffer::USAGE_SW_WRITE_RARELY, reinterpret_cast<void**>(&bits));
|
||||
size_t w = buffer->getStride();
|
||||
size_t h = buffer->getHeight();
|
||||
memset(bits, 0, w*h*4);
|
||||
for (size_t y=0 ; y<kDebugData.height ; y++) {
|
||||
for (size_t x=0 ; x<kDebugData.width ; x++) {
|
||||
bits[x] = (kDebugData.bits[y*kDebugData.width+x] == 'X') ? 0xFF000000 : 0xFFFFFFFF;
|
||||
uint32_t stride = buffer->getStride();
|
||||
uint32_t height = buffer->getHeight();
|
||||
memset(bits, 0, stride * height * 4);
|
||||
for (uint32_t y = 0; y < kDebugData.height; y++) {
|
||||
for (uint32_t x = 0; x < kDebugData.width; x++) {
|
||||
bits[x] = (kDebugData.bits[y + kDebugData.width + x] == 'X') ?
|
||||
0xFF000000 : 0xFFFFFFFF;
|
||||
}
|
||||
bits += w;
|
||||
bits += stride;
|
||||
}
|
||||
buffer->unlock();
|
||||
sReleasedTexImageBuffer = buffer;
|
||||
@ -369,7 +380,7 @@ status_t GLConsumer::updateAndReleaseLocked(const BufferQueue::BufferItem& item)
|
||||
int buf = item.mBuf;
|
||||
|
||||
if (!mAttached) {
|
||||
ST_LOGE("updateAndRelease: GLConsumer is not attached to an OpenGL "
|
||||
GLC_LOGE("updateAndRelease: GLConsumer is not attached to an OpenGL "
|
||||
"ES context");
|
||||
releaseBufferLocked(buf, mSlots[buf].mGraphicBuffer,
|
||||
mEglDisplay, EGL_NO_SYNC_KHR);
|
||||
@ -391,7 +402,7 @@ status_t GLConsumer::updateAndReleaseLocked(const BufferQueue::BufferItem& item)
|
||||
// means the buffer was previously acquired).
|
||||
err = mEglSlots[buf].mEglImage->createIfNeeded(mEglDisplay, item.mCrop);
|
||||
if (err != NO_ERROR) {
|
||||
ST_LOGW("updateAndRelease: unable to createImage on display=%p slot=%d",
|
||||
GLC_LOGW("updateAndRelease: unable to createImage on display=%p slot=%d",
|
||||
mEglDisplay, buf);
|
||||
releaseBufferLocked(buf, mSlots[buf].mGraphicBuffer,
|
||||
mEglDisplay, EGL_NO_SYNC_KHR);
|
||||
@ -410,7 +421,7 @@ status_t GLConsumer::updateAndReleaseLocked(const BufferQueue::BufferItem& item)
|
||||
return err;
|
||||
}
|
||||
|
||||
ST_LOGV("updateAndRelease: (slot=%d buf=%p) -> (slot=%d buf=%p)",
|
||||
GLC_LOGV("updateAndRelease: (slot=%d buf=%p) -> (slot=%d buf=%p)",
|
||||
mCurrentTexture, mCurrentTextureImage != NULL ?
|
||||
mCurrentTextureImage->graphicBufferHandle() : 0,
|
||||
buf, mSlots[buf].mGraphicBuffer->handle);
|
||||
@ -421,7 +432,7 @@ status_t GLConsumer::updateAndReleaseLocked(const BufferQueue::BufferItem& item)
|
||||
mCurrentTexture, mCurrentTextureImage->graphicBuffer(),
|
||||
mEglDisplay, mEglSlots[mCurrentTexture].mEglFence);
|
||||
if (status < NO_ERROR) {
|
||||
ST_LOGE("updateAndRelease: failed to release buffer: %s (%d)",
|
||||
GLC_LOGE("updateAndRelease: failed to release buffer: %s (%d)",
|
||||
strerror(-status), status);
|
||||
err = status;
|
||||
// keep going, with error raised [?]
|
||||
@ -449,22 +460,22 @@ status_t GLConsumer::bindTextureImageLocked() {
|
||||
return INVALID_OPERATION;
|
||||
}
|
||||
|
||||
GLint error;
|
||||
GLenum error;
|
||||
while ((error = glGetError()) != GL_NO_ERROR) {
|
||||
ST_LOGW("bindTextureImage: clearing GL error: %#04x", error);
|
||||
GLC_LOGW("bindTextureImage: clearing GL error: %#04x", error);
|
||||
}
|
||||
|
||||
glBindTexture(mTexTarget, mTexName);
|
||||
if (mCurrentTexture == BufferQueue::INVALID_BUFFER_SLOT &&
|
||||
mCurrentTextureImage == NULL) {
|
||||
ST_LOGE("bindTextureImage: no currently-bound texture");
|
||||
GLC_LOGE("bindTextureImage: no currently-bound texture");
|
||||
return NO_INIT;
|
||||
}
|
||||
|
||||
status_t err = mCurrentTextureImage->createIfNeeded(mEglDisplay,
|
||||
mCurrentCrop);
|
||||
if (err != NO_ERROR) {
|
||||
ST_LOGW("bindTextureImage: can't create image on display=%p slot=%d",
|
||||
GLC_LOGW("bindTextureImage: can't create image on display=%p slot=%d",
|
||||
mEglDisplay, mCurrentTexture);
|
||||
return UNKNOWN_ERROR;
|
||||
}
|
||||
@ -476,17 +487,17 @@ status_t GLConsumer::bindTextureImageLocked() {
|
||||
// forcing the creation of a new image.
|
||||
if ((error = glGetError()) != GL_NO_ERROR) {
|
||||
glBindTexture(mTexTarget, mTexName);
|
||||
status_t err = mCurrentTextureImage->createIfNeeded(mEglDisplay,
|
||||
mCurrentCrop,
|
||||
true);
|
||||
if (err != NO_ERROR) {
|
||||
ST_LOGW("bindTextureImage: can't create image on display=%p slot=%d",
|
||||
status_t result = mCurrentTextureImage->createIfNeeded(mEglDisplay,
|
||||
mCurrentCrop,
|
||||
true);
|
||||
if (result != NO_ERROR) {
|
||||
GLC_LOGW("bindTextureImage: can't create image on display=%p slot=%d",
|
||||
mEglDisplay, mCurrentTexture);
|
||||
return UNKNOWN_ERROR;
|
||||
}
|
||||
mCurrentTextureImage->bindToTextureTarget(mTexTarget);
|
||||
if ((error = glGetError()) != GL_NO_ERROR) {
|
||||
ST_LOGE("bindTextureImage: error binding external image: %#04x", error);
|
||||
GLC_LOGE("bindTextureImage: error binding external image: %#04x", error);
|
||||
return UNKNOWN_ERROR;
|
||||
}
|
||||
}
|
||||
@ -511,12 +522,12 @@ status_t GLConsumer::checkAndUpdateEglStateLocked(bool contextCheck) {
|
||||
}
|
||||
|
||||
if (mEglDisplay != dpy || dpy == EGL_NO_DISPLAY) {
|
||||
ST_LOGE("checkAndUpdateEglState: invalid current EGLDisplay");
|
||||
GLC_LOGE("checkAndUpdateEglState: invalid current EGLDisplay");
|
||||
return INVALID_OPERATION;
|
||||
}
|
||||
|
||||
if (mEglContext != ctx || ctx == EGL_NO_CONTEXT) {
|
||||
ST_LOGE("checkAndUpdateEglState: invalid current EGLContext");
|
||||
GLC_LOGE("checkAndUpdateEglState: invalid current EGLContext");
|
||||
return INVALID_OPERATION;
|
||||
}
|
||||
|
||||
@ -531,7 +542,7 @@ void GLConsumer::setReleaseFence(const sp<Fence>& fence) {
|
||||
status_t err = addReleaseFence(mCurrentTexture,
|
||||
mCurrentTextureImage->graphicBuffer(), fence);
|
||||
if (err != OK) {
|
||||
ST_LOGE("setReleaseFence: failed to add the fence: %s (%d)",
|
||||
GLC_LOGE("setReleaseFence: failed to add the fence: %s (%d)",
|
||||
strerror(-err), err);
|
||||
}
|
||||
}
|
||||
@ -539,16 +550,16 @@ void GLConsumer::setReleaseFence(const sp<Fence>& fence) {
|
||||
|
||||
status_t GLConsumer::detachFromContext() {
|
||||
ATRACE_CALL();
|
||||
ST_LOGV("detachFromContext");
|
||||
GLC_LOGV("detachFromContext");
|
||||
Mutex::Autolock lock(mMutex);
|
||||
|
||||
if (mAbandoned) {
|
||||
ST_LOGE("detachFromContext: abandoned GLConsumer");
|
||||
GLC_LOGE("detachFromContext: abandoned GLConsumer");
|
||||
return NO_INIT;
|
||||
}
|
||||
|
||||
if (!mAttached) {
|
||||
ST_LOGE("detachFromContext: GLConsumer is not attached to a "
|
||||
GLC_LOGE("detachFromContext: GLConsumer is not attached to a "
|
||||
"context");
|
||||
return INVALID_OPERATION;
|
||||
}
|
||||
@ -557,12 +568,12 @@ status_t GLConsumer::detachFromContext() {
|
||||
EGLContext ctx = eglGetCurrentContext();
|
||||
|
||||
if (mEglDisplay != dpy && mEglDisplay != EGL_NO_DISPLAY) {
|
||||
ST_LOGE("detachFromContext: invalid current EGLDisplay");
|
||||
GLC_LOGE("detachFromContext: invalid current EGLDisplay");
|
||||
return INVALID_OPERATION;
|
||||
}
|
||||
|
||||
if (mEglContext != ctx && mEglContext != EGL_NO_CONTEXT) {
|
||||
ST_LOGE("detachFromContext: invalid current EGLContext");
|
||||
GLC_LOGE("detachFromContext: invalid current EGLContext");
|
||||
return INVALID_OPERATION;
|
||||
}
|
||||
|
||||
@ -584,16 +595,16 @@ status_t GLConsumer::detachFromContext() {
|
||||
|
||||
status_t GLConsumer::attachToContext(uint32_t tex) {
|
||||
ATRACE_CALL();
|
||||
ST_LOGV("attachToContext");
|
||||
GLC_LOGV("attachToContext");
|
||||
Mutex::Autolock lock(mMutex);
|
||||
|
||||
if (mAbandoned) {
|
||||
ST_LOGE("attachToContext: abandoned GLConsumer");
|
||||
GLC_LOGE("attachToContext: abandoned GLConsumer");
|
||||
return NO_INIT;
|
||||
}
|
||||
|
||||
if (mAttached) {
|
||||
ST_LOGE("attachToContext: GLConsumer is already attached to a "
|
||||
GLC_LOGE("attachToContext: GLConsumer is already attached to a "
|
||||
"context");
|
||||
return INVALID_OPERATION;
|
||||
}
|
||||
@ -602,12 +613,12 @@ status_t GLConsumer::attachToContext(uint32_t tex) {
|
||||
EGLContext ctx = eglGetCurrentContext();
|
||||
|
||||
if (dpy == EGL_NO_DISPLAY) {
|
||||
ST_LOGE("attachToContext: invalid current EGLDisplay");
|
||||
GLC_LOGE("attachToContext: invalid current EGLDisplay");
|
||||
return INVALID_OPERATION;
|
||||
}
|
||||
|
||||
if (ctx == EGL_NO_CONTEXT) {
|
||||
ST_LOGE("attachToContext: invalid current EGLContext");
|
||||
GLC_LOGE("attachToContext: invalid current EGLContext");
|
||||
return INVALID_OPERATION;
|
||||
}
|
||||
|
||||
@ -636,14 +647,14 @@ status_t GLConsumer::attachToContext(uint32_t tex) {
|
||||
|
||||
|
||||
status_t GLConsumer::syncForReleaseLocked(EGLDisplay dpy) {
|
||||
ST_LOGV("syncForReleaseLocked");
|
||||
GLC_LOGV("syncForReleaseLocked");
|
||||
|
||||
if (mCurrentTexture != BufferQueue::INVALID_BUFFER_SLOT) {
|
||||
if (SyncFeatures::getInstance().useNativeFenceSync()) {
|
||||
EGLSyncKHR sync = eglCreateSyncKHR(dpy,
|
||||
EGL_SYNC_NATIVE_FENCE_ANDROID, NULL);
|
||||
if (sync == EGL_NO_SYNC_KHR) {
|
||||
ST_LOGE("syncForReleaseLocked: error creating EGL fence: %#x",
|
||||
GLC_LOGE("syncForReleaseLocked: error creating EGL fence: %#x",
|
||||
eglGetError());
|
||||
return UNKNOWN_ERROR;
|
||||
}
|
||||
@ -651,7 +662,7 @@ status_t GLConsumer::syncForReleaseLocked(EGLDisplay dpy) {
|
||||
int fenceFd = eglDupNativeFenceFDANDROID(dpy, sync);
|
||||
eglDestroySyncKHR(dpy, sync);
|
||||
if (fenceFd == EGL_NO_NATIVE_FENCE_FD_ANDROID) {
|
||||
ST_LOGE("syncForReleaseLocked: error dup'ing native fence "
|
||||
GLC_LOGE("syncForReleaseLocked: error dup'ing native fence "
|
||||
"fd: %#x", eglGetError());
|
||||
return UNKNOWN_ERROR;
|
||||
}
|
||||
@ -659,7 +670,7 @@ status_t GLConsumer::syncForReleaseLocked(EGLDisplay dpy) {
|
||||
status_t err = addReleaseFenceLocked(mCurrentTexture,
|
||||
mCurrentTextureImage->graphicBuffer(), fence);
|
||||
if (err != OK) {
|
||||
ST_LOGE("syncForReleaseLocked: error adding release fence: "
|
||||
GLC_LOGE("syncForReleaseLocked: error adding release fence: "
|
||||
"%s (%d)", strerror(-err), err);
|
||||
return err;
|
||||
}
|
||||
@ -672,11 +683,11 @@ status_t GLConsumer::syncForReleaseLocked(EGLDisplay dpy) {
|
||||
// before the producer accesses it.
|
||||
EGLint result = eglClientWaitSyncKHR(dpy, fence, 0, 1000000000);
|
||||
if (result == EGL_FALSE) {
|
||||
ST_LOGE("syncForReleaseLocked: error waiting for previous "
|
||||
GLC_LOGE("syncForReleaseLocked: error waiting for previous "
|
||||
"fence: %#x", eglGetError());
|
||||
return UNKNOWN_ERROR;
|
||||
} else if (result == EGL_TIMEOUT_EXPIRED_KHR) {
|
||||
ST_LOGE("syncForReleaseLocked: timeout waiting for previous "
|
||||
GLC_LOGE("syncForReleaseLocked: timeout waiting for previous "
|
||||
"fence");
|
||||
return TIMED_OUT;
|
||||
}
|
||||
@ -687,7 +698,7 @@ status_t GLConsumer::syncForReleaseLocked(EGLDisplay dpy) {
|
||||
// OpenGL ES context.
|
||||
fence = eglCreateSyncKHR(dpy, EGL_SYNC_FENCE_KHR, NULL);
|
||||
if (fence == EGL_NO_SYNC_KHR) {
|
||||
ST_LOGE("syncForReleaseLocked: error creating fence: %#x",
|
||||
GLC_LOGE("syncForReleaseLocked: error creating fence: %#x",
|
||||
eglGetError());
|
||||
return UNKNOWN_ERROR;
|
||||
}
|
||||
@ -699,7 +710,7 @@ status_t GLConsumer::syncForReleaseLocked(EGLDisplay dpy) {
|
||||
return OK;
|
||||
}
|
||||
|
||||
bool GLConsumer::isExternalFormat(uint32_t format)
|
||||
bool GLConsumer::isExternalFormat(PixelFormat format)
|
||||
{
|
||||
switch (format) {
|
||||
// supported YUV formats
|
||||
@ -730,14 +741,14 @@ void GLConsumer::getTransformMatrix(float mtx[16]) {
|
||||
void GLConsumer::setFilteringEnabled(bool enabled) {
|
||||
Mutex::Autolock lock(mMutex);
|
||||
if (mAbandoned) {
|
||||
ST_LOGE("setFilteringEnabled: GLConsumer is abandoned!");
|
||||
GLC_LOGE("setFilteringEnabled: GLConsumer is abandoned!");
|
||||
return;
|
||||
}
|
||||
bool needsRecompute = mFilteringEnabled != enabled;
|
||||
mFilteringEnabled = enabled;
|
||||
|
||||
if (needsRecompute && mCurrentTextureImage==NULL) {
|
||||
ST_LOGD("setFilteringEnabled called with mCurrentTextureImage == NULL");
|
||||
GLC_LOGD("setFilteringEnabled called with mCurrentTextureImage == NULL");
|
||||
}
|
||||
|
||||
if (needsRecompute && mCurrentTextureImage != NULL) {
|
||||
@ -746,7 +757,7 @@ void GLConsumer::setFilteringEnabled(bool enabled) {
|
||||
}
|
||||
|
||||
void GLConsumer::computeCurrentTransformMatrixLocked() {
|
||||
ST_LOGV("computeCurrentTransformMatrixLocked");
|
||||
GLC_LOGV("computeCurrentTransformMatrixLocked");
|
||||
|
||||
float xform[16];
|
||||
for (int i = 0; i < 16; i++) {
|
||||
@ -778,7 +789,7 @@ void GLConsumer::computeCurrentTransformMatrixLocked() {
|
||||
NULL : mCurrentTextureImage->graphicBuffer();
|
||||
|
||||
if (buf == NULL) {
|
||||
ST_LOGD("computeCurrentTransformMatrixLocked: mCurrentTextureImage is NULL");
|
||||
GLC_LOGD("computeCurrentTransformMatrixLocked: mCurrentTextureImage is NULL");
|
||||
}
|
||||
|
||||
float mtxBeforeFlipV[16];
|
||||
@ -850,13 +861,13 @@ void GLConsumer::computeCurrentTransformMatrixLocked() {
|
||||
}
|
||||
|
||||
nsecs_t GLConsumer::getTimestamp() {
|
||||
ST_LOGV("getTimestamp");
|
||||
GLC_LOGV("getTimestamp");
|
||||
Mutex::Autolock lock(mMutex);
|
||||
return mCurrentTimestamp;
|
||||
}
|
||||
|
||||
nsecs_t GLConsumer::getFrameNumber() {
|
||||
ST_LOGV("getFrameNumber");
|
||||
uint64_t GLConsumer::getFrameNumber() {
|
||||
GLC_LOGV("getFrameNumber");
|
||||
Mutex::Autolock lock(mMutex);
|
||||
return mCurrentFrameNumber;
|
||||
}
|
||||
@ -872,30 +883,33 @@ Rect GLConsumer::getCurrentCrop() const {
|
||||
|
||||
Rect outCrop = mCurrentCrop;
|
||||
if (mCurrentScalingMode == NATIVE_WINDOW_SCALING_MODE_SCALE_CROP) {
|
||||
int32_t newWidth = mCurrentCrop.width();
|
||||
int32_t newHeight = mCurrentCrop.height();
|
||||
uint32_t newWidth = static_cast<uint32_t>(mCurrentCrop.width());
|
||||
uint32_t newHeight = static_cast<uint32_t>(mCurrentCrop.height());
|
||||
|
||||
if (newWidth * mDefaultHeight > newHeight * mDefaultWidth) {
|
||||
newWidth = newHeight * mDefaultWidth / mDefaultHeight;
|
||||
ST_LOGV("too wide: newWidth = %d", newWidth);
|
||||
GLC_LOGV("too wide: newWidth = %d", newWidth);
|
||||
} else if (newWidth * mDefaultHeight < newHeight * mDefaultWidth) {
|
||||
newHeight = newWidth * mDefaultHeight / mDefaultWidth;
|
||||
ST_LOGV("too tall: newHeight = %d", newHeight);
|
||||
GLC_LOGV("too tall: newHeight = %d", newHeight);
|
||||
}
|
||||
|
||||
uint32_t currentWidth = static_cast<uint32_t>(mCurrentCrop.width());
|
||||
uint32_t currentHeight = static_cast<uint32_t>(mCurrentCrop.height());
|
||||
|
||||
// The crop is too wide
|
||||
if (newWidth < mCurrentCrop.width()) {
|
||||
int32_t dw = (newWidth - mCurrentCrop.width())/2;
|
||||
if (newWidth < currentWidth) {
|
||||
uint32_t dw = (newWidth - currentWidth) / 2;
|
||||
outCrop.left -=dw;
|
||||
outCrop.right += dw;
|
||||
// The crop is too tall
|
||||
} else if (newHeight < mCurrentCrop.height()) {
|
||||
int32_t dh = (newHeight - mCurrentCrop.height())/2;
|
||||
} else if (newHeight < currentHeight) {
|
||||
uint32_t dh = (newHeight - currentHeight) / 2;
|
||||
outCrop.top -= dh;
|
||||
outCrop.bottom += dh;
|
||||
}
|
||||
|
||||
ST_LOGV("getCurrentCrop final crop [%d,%d,%d,%d]",
|
||||
GLC_LOGV("getCurrentCrop final crop [%d,%d,%d,%d]",
|
||||
outCrop.left, outCrop.top,
|
||||
outCrop.right,outCrop.bottom);
|
||||
}
|
||||
@ -929,12 +943,12 @@ status_t GLConsumer::doGLFenceWaitLocked() const {
|
||||
EGLContext ctx = eglGetCurrentContext();
|
||||
|
||||
if (mEglDisplay != dpy || mEglDisplay == EGL_NO_DISPLAY) {
|
||||
ST_LOGE("doGLFenceWait: invalid current EGLDisplay");
|
||||
GLC_LOGE("doGLFenceWait: invalid current EGLDisplay");
|
||||
return INVALID_OPERATION;
|
||||
}
|
||||
|
||||
if (mEglContext != ctx || mEglContext == EGL_NO_CONTEXT) {
|
||||
ST_LOGE("doGLFenceWait: invalid current EGLContext");
|
||||
GLC_LOGE("doGLFenceWait: invalid current EGLContext");
|
||||
return INVALID_OPERATION;
|
||||
}
|
||||
|
||||
@ -943,7 +957,7 @@ status_t GLConsumer::doGLFenceWaitLocked() const {
|
||||
// Create an EGLSyncKHR from the current fence.
|
||||
int fenceFd = mCurrentFence->dup();
|
||||
if (fenceFd == -1) {
|
||||
ST_LOGE("doGLFenceWait: error dup'ing fence fd: %d", errno);
|
||||
GLC_LOGE("doGLFenceWait: error dup'ing fence fd: %d", errno);
|
||||
return -errno;
|
||||
}
|
||||
EGLint attribs[] = {
|
||||
@ -954,7 +968,7 @@ status_t GLConsumer::doGLFenceWaitLocked() const {
|
||||
EGL_SYNC_NATIVE_FENCE_ANDROID, attribs);
|
||||
if (sync == EGL_NO_SYNC_KHR) {
|
||||
close(fenceFd);
|
||||
ST_LOGE("doGLFenceWait: error creating EGL fence: %#x",
|
||||
GLC_LOGE("doGLFenceWait: error creating EGL fence: %#x",
|
||||
eglGetError());
|
||||
return UNKNOWN_ERROR;
|
||||
}
|
||||
@ -966,7 +980,7 @@ status_t GLConsumer::doGLFenceWaitLocked() const {
|
||||
EGLint eglErr = eglGetError();
|
||||
eglDestroySyncKHR(dpy, sync);
|
||||
if (eglErr != EGL_SUCCESS) {
|
||||
ST_LOGE("doGLFenceWait: error waiting for EGL fence: %#x",
|
||||
GLC_LOGE("doGLFenceWait: error waiting for EGL fence: %#x",
|
||||
eglErr);
|
||||
return UNKNOWN_ERROR;
|
||||
}
|
||||
@ -974,7 +988,7 @@ status_t GLConsumer::doGLFenceWaitLocked() const {
|
||||
status_t err = mCurrentFence->waitForever(
|
||||
"GLConsumer::doGLFenceWaitLocked");
|
||||
if (err != NO_ERROR) {
|
||||
ST_LOGE("doGLFenceWait: error waiting for fence: %d", err);
|
||||
GLC_LOGE("doGLFenceWait: error waiting for fence: %d", err);
|
||||
return err;
|
||||
}
|
||||
}
|
||||
@ -984,7 +998,7 @@ status_t GLConsumer::doGLFenceWaitLocked() const {
|
||||
}
|
||||
|
||||
void GLConsumer::freeBufferLocked(int slotIndex) {
|
||||
ST_LOGV("freeBufferLocked: slotIndex=%d", slotIndex);
|
||||
GLC_LOGV("freeBufferLocked: slotIndex=%d", slotIndex);
|
||||
if (slotIndex == mCurrentTexture) {
|
||||
mCurrentTexture = BufferQueue::INVALID_BUFFER_SLOT;
|
||||
}
|
||||
@ -993,7 +1007,7 @@ void GLConsumer::freeBufferLocked(int slotIndex) {
|
||||
}
|
||||
|
||||
void GLConsumer::abandonLocked() {
|
||||
ST_LOGV("abandonLocked");
|
||||
GLC_LOGV("abandonLocked");
|
||||
mCurrentTextureImage.clear();
|
||||
ConsumerBase::abandonLocked();
|
||||
}
|
||||
@ -1004,7 +1018,7 @@ void GLConsumer::setName(const String8& name) {
|
||||
mConsumer->setConsumerName(name);
|
||||
}
|
||||
|
||||
status_t GLConsumer::setDefaultBufferFormat(uint32_t defaultFormat) {
|
||||
status_t GLConsumer::setDefaultBufferFormat(PixelFormat defaultFormat) {
|
||||
Mutex::Autolock lock(mMutex);
|
||||
return mConsumer->setDefaultBufferFormat(defaultFormat);
|
||||
}
|
||||
@ -1107,12 +1121,14 @@ status_t GLConsumer::EglImage::createIfNeeded(EGLDisplay eglDisplay,
|
||||
}
|
||||
|
||||
void GLConsumer::EglImage::bindToTextureTarget(uint32_t texTarget) {
|
||||
glEGLImageTargetTexture2DOES(texTarget, (GLeglImageOES)mEglImage);
|
||||
glEGLImageTargetTexture2DOES(texTarget,
|
||||
static_cast<GLeglImageOES>(mEglImage));
|
||||
}
|
||||
|
||||
EGLImageKHR GLConsumer::EglImage::createImage(EGLDisplay dpy,
|
||||
const sp<GraphicBuffer>& graphicBuffer, const Rect& crop) {
|
||||
EGLClientBuffer cbuf = (EGLClientBuffer)graphicBuffer->getNativeBuffer();
|
||||
EGLClientBuffer cbuf =
|
||||
static_cast<EGLClientBuffer>(graphicBuffer->getNativeBuffer());
|
||||
EGLint attrs[] = {
|
||||
EGL_IMAGE_PRESERVED_KHR, EGL_TRUE,
|
||||
EGL_IMAGE_CROP_LEFT_ANDROID, crop.left,
|
||||
|
@ -31,9 +31,10 @@ GraphicBufferAlloc::GraphicBufferAlloc() {
|
||||
GraphicBufferAlloc::~GraphicBufferAlloc() {
|
||||
}
|
||||
|
||||
sp<GraphicBuffer> GraphicBufferAlloc::createGraphicBuffer(uint32_t w, uint32_t h,
|
||||
PixelFormat format, uint32_t usage, status_t* error) {
|
||||
sp<GraphicBuffer> graphicBuffer(new GraphicBuffer(w, h, format, usage));
|
||||
sp<GraphicBuffer> GraphicBufferAlloc::createGraphicBuffer(uint32_t width,
|
||||
uint32_t height, PixelFormat format, uint32_t usage, status_t* error) {
|
||||
sp<GraphicBuffer> graphicBuffer(
|
||||
new GraphicBuffer(width, height, format, usage));
|
||||
status_t err = graphicBuffer->initCheck();
|
||||
*error = err;
|
||||
if (err != 0 || graphicBuffer->handle == 0) {
|
||||
@ -42,7 +43,7 @@ sp<GraphicBuffer> GraphicBufferAlloc::createGraphicBuffer(uint32_t w, uint32_t h
|
||||
}
|
||||
ALOGE("GraphicBufferAlloc::createGraphicBuffer(w=%d, h=%d) "
|
||||
"failed (%s), handle=%p",
|
||||
w, h, strerror(-err), graphicBuffer->handle);
|
||||
width, height, strerror(-err), graphicBuffer->handle);
|
||||
return 0;
|
||||
}
|
||||
return graphicBuffer;
|
||||
|
@ -40,6 +40,8 @@ public:
|
||||
: BpInterface<IConsumerListener>(impl) {
|
||||
}
|
||||
|
||||
virtual ~BpConsumerListener();
|
||||
|
||||
virtual void onFrameAvailable(const BufferItem& item) {
|
||||
Parcel data, reply;
|
||||
data.writeInterfaceToken(IConsumerListener::getInterfaceDescriptor());
|
||||
@ -60,6 +62,10 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
// Out-of-line virtual method definition to trigger vtable emission in this
|
||||
// translation unit (see clang warning -Wweak-vtables)
|
||||
BpConsumerListener::~BpConsumerListener() {}
|
||||
|
||||
IMPLEMENT_META_INTERFACE(ConsumerListener, "android.gui.IConsumerListener");
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
@ -44,6 +44,8 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
virtual ~BpDisplayEventConnection();
|
||||
|
||||
virtual sp<BitTube> getDataChannel() const
|
||||
{
|
||||
Parcel data, reply;
|
||||
@ -55,7 +57,7 @@ public:
|
||||
virtual void setVsyncRate(uint32_t count) {
|
||||
Parcel data, reply;
|
||||
data.writeInterfaceToken(IDisplayEventConnection::getInterfaceDescriptor());
|
||||
data.writeInt32(count);
|
||||
data.writeUint32(count);
|
||||
remote()->transact(SET_VSYNC_RATE, data, &reply);
|
||||
}
|
||||
|
||||
@ -66,6 +68,10 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
// Out-of-line virtual method definition to trigger vtable emission in this
|
||||
// translation unit (see clang warning -Wweak-vtables)
|
||||
BpDisplayEventConnection::~BpDisplayEventConnection() {}
|
||||
|
||||
IMPLEMENT_META_INTERFACE(DisplayEventConnection, "android.gui.DisplayEventConnection");
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
@ -79,17 +85,17 @@ status_t BnDisplayEventConnection::onTransact(
|
||||
sp<BitTube> channel(getDataChannel());
|
||||
channel->writeToParcel(reply);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case SET_VSYNC_RATE: {
|
||||
CHECK_INTERFACE(IDisplayEventConnection, data, reply);
|
||||
setVsyncRate(data.readInt32());
|
||||
setVsyncRate(data.readUint32());
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case REQUEST_NEXT_VSYNC: {
|
||||
CHECK_INTERFACE(IDisplayEventConnection, data, reply);
|
||||
requestNextVsync();
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
}
|
||||
return BBinder::onTransact(code, data, reply, flags);
|
||||
}
|
||||
|
@ -42,14 +42,17 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
virtual sp<GraphicBuffer> createGraphicBuffer(uint32_t w, uint32_t h,
|
||||
PixelFormat format, uint32_t usage, status_t* error) {
|
||||
virtual ~BpGraphicBufferAlloc();
|
||||
|
||||
virtual sp<GraphicBuffer> createGraphicBuffer(uint32_t width,
|
||||
uint32_t height, PixelFormat format, uint32_t usage,
|
||||
status_t* error) {
|
||||
Parcel data, reply;
|
||||
data.writeInterfaceToken(IGraphicBufferAlloc::getInterfaceDescriptor());
|
||||
data.writeInt32(w);
|
||||
data.writeInt32(h);
|
||||
data.writeInt32(format);
|
||||
data.writeInt32(usage);
|
||||
data.writeUint32(width);
|
||||
data.writeUint32(height);
|
||||
data.writeInt32(static_cast<int32_t>(format));
|
||||
data.writeUint32(usage);
|
||||
remote()->transact(CREATE_GRAPHIC_BUFFER, data, &reply);
|
||||
sp<GraphicBuffer> graphicBuffer;
|
||||
status_t result = reply.readInt32();
|
||||
@ -65,6 +68,10 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
// Out-of-line virtual method definition to trigger vtable emission in this
|
||||
// translation unit (see clang warning -Wweak-vtables)
|
||||
BpGraphicBufferAlloc::~BpGraphicBufferAlloc() {}
|
||||
|
||||
IMPLEMENT_META_INTERFACE(GraphicBufferAlloc, "android.ui.IGraphicBufferAlloc");
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
@ -74,27 +81,26 @@ status_t BnGraphicBufferAlloc::onTransact(
|
||||
{
|
||||
// codes that don't require permission check
|
||||
|
||||
/* BufferReference just keeps a strong reference to a
|
||||
* GraphicBuffer until it is destroyed (that is, until
|
||||
* no local or remote process have a reference to it).
|
||||
*/
|
||||
// BufferReference just keeps a strong reference to a GraphicBuffer until it
|
||||
// is destroyed (that is, until no local or remote process have a reference
|
||||
// to it).
|
||||
class BufferReference : public BBinder {
|
||||
sp<GraphicBuffer> buffer;
|
||||
sp<GraphicBuffer> mBuffer;
|
||||
public:
|
||||
BufferReference(const sp<GraphicBuffer>& buffer) : buffer(buffer) { }
|
||||
BufferReference(const sp<GraphicBuffer>& buffer) : mBuffer(buffer) {}
|
||||
};
|
||||
|
||||
|
||||
switch(code) {
|
||||
switch (code) {
|
||||
case CREATE_GRAPHIC_BUFFER: {
|
||||
CHECK_INTERFACE(IGraphicBufferAlloc, data, reply);
|
||||
uint32_t w = data.readInt32();
|
||||
uint32_t h = data.readInt32();
|
||||
PixelFormat format = data.readInt32();
|
||||
uint32_t usage = data.readInt32();
|
||||
uint32_t width = data.readUint32();
|
||||
uint32_t height = data.readUint32();
|
||||
PixelFormat format = static_cast<PixelFormat>(data.readInt32());
|
||||
uint32_t usage = data.readUint32();
|
||||
status_t error;
|
||||
sp<GraphicBuffer> result =
|
||||
createGraphicBuffer(w, h, format, usage, &error);
|
||||
createGraphicBuffer(width, height, format, usage, &error);
|
||||
reply->writeInt32(error);
|
||||
if (result != 0) {
|
||||
reply->write(*result);
|
||||
@ -107,7 +113,7 @@ status_t BnGraphicBufferAlloc::onTransact(
|
||||
reply->writeStrongBinder( new BufferReference(result) );
|
||||
}
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
default:
|
||||
return BBinder::onTransact(code, data, reply, flags);
|
||||
}
|
||||
|
@ -215,6 +215,8 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
virtual ~BpGraphicBufferConsumer();
|
||||
|
||||
virtual status_t acquireBuffer(BufferItem *buffer, nsecs_t presentWhen) {
|
||||
Parcel data, reply;
|
||||
data.writeInterfaceToken(IGraphicBufferConsumer::getInterfaceDescriptor());
|
||||
@ -261,7 +263,7 @@ public:
|
||||
Parcel data, reply;
|
||||
data.writeInterfaceToken(IGraphicBufferConsumer::getInterfaceDescriptor());
|
||||
data.writeInt32(buf);
|
||||
data.writeInt64(frameNumber);
|
||||
data.writeInt64(static_cast<int64_t>(frameNumber));
|
||||
data.write(*releaseFence);
|
||||
status_t result = remote()->transact(RELEASE_BUFFER, data, &reply);
|
||||
if (result != NO_ERROR) {
|
||||
@ -303,15 +305,15 @@ public:
|
||||
if (result != NO_ERROR) {
|
||||
return result;
|
||||
}
|
||||
*slotMask = reply.readInt64();
|
||||
*slotMask = static_cast<uint64_t>(reply.readInt64());
|
||||
return reply.readInt32();
|
||||
}
|
||||
|
||||
virtual status_t setDefaultBufferSize(uint32_t w, uint32_t h) {
|
||||
virtual status_t setDefaultBufferSize(uint32_t width, uint32_t height) {
|
||||
Parcel data, reply;
|
||||
data.writeInterfaceToken(IGraphicBufferConsumer::getInterfaceDescriptor());
|
||||
data.writeInt32(w);
|
||||
data.writeInt32(h);
|
||||
data.writeUint32(width);
|
||||
data.writeUint32(height);
|
||||
status_t result = remote()->transact(SET_DEFAULT_BUFFER_SIZE, data, &reply);
|
||||
if (result != NO_ERROR) {
|
||||
return result;
|
||||
@ -358,10 +360,10 @@ public:
|
||||
remote()->transact(SET_CONSUMER_NAME, data, &reply);
|
||||
}
|
||||
|
||||
virtual status_t setDefaultBufferFormat(uint32_t defaultFormat) {
|
||||
virtual status_t setDefaultBufferFormat(PixelFormat defaultFormat) {
|
||||
Parcel data, reply;
|
||||
data.writeInterfaceToken(IGraphicBufferConsumer::getInterfaceDescriptor());
|
||||
data.writeInt32(defaultFormat);
|
||||
data.writeInt32(static_cast<int32_t>(defaultFormat));
|
||||
status_t result = remote()->transact(SET_DEFAULT_BUFFER_FORMAT, data, &reply);
|
||||
if (result != NO_ERROR) {
|
||||
return result;
|
||||
@ -372,7 +374,7 @@ public:
|
||||
virtual status_t setConsumerUsageBits(uint32_t usage) {
|
||||
Parcel data, reply;
|
||||
data.writeInterfaceToken(IGraphicBufferConsumer::getInterfaceDescriptor());
|
||||
data.writeInt32(usage);
|
||||
data.writeUint32(usage);
|
||||
status_t result = remote()->transact(SET_CONSUMER_USAGE_BITS, data, &reply);
|
||||
if (result != NO_ERROR) {
|
||||
return result;
|
||||
@ -383,7 +385,7 @@ public:
|
||||
virtual status_t setTransformHint(uint32_t hint) {
|
||||
Parcel data, reply;
|
||||
data.writeInterfaceToken(IGraphicBufferConsumer::getInterfaceDescriptor());
|
||||
data.writeInt32(hint);
|
||||
data.writeUint32(hint);
|
||||
status_t result = remote()->transact(SET_TRANSFORM_HINT, data, &reply);
|
||||
if (result != NO_ERROR) {
|
||||
return result;
|
||||
@ -415,6 +417,10 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
// Out-of-line virtual method definition to trigger vtable emission in this
|
||||
// translation unit (see clang warning -Wweak-vtables)
|
||||
BpGraphicBufferConsumer::~BpGraphicBufferConsumer() {}
|
||||
|
||||
IMPLEMENT_META_INTERFACE(GraphicBufferConsumer, "android.gui.IGraphicBufferConsumer");
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
@ -432,14 +438,14 @@ status_t BnGraphicBufferConsumer::onTransact(
|
||||
if (err) return err;
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case DETACH_BUFFER: {
|
||||
CHECK_INTERFACE(IGraphicBufferConsumer, data, reply);
|
||||
int slot = data.readInt32();
|
||||
int result = detachBuffer(slot);
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case ATTACH_BUFFER: {
|
||||
CHECK_INTERFACE(IGraphicBufferConsumer, data, reply);
|
||||
sp<GraphicBuffer> buffer = new GraphicBuffer();
|
||||
@ -449,11 +455,11 @@ status_t BnGraphicBufferConsumer::onTransact(
|
||||
reply->writeInt32(slot);
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case RELEASE_BUFFER: {
|
||||
CHECK_INTERFACE(IGraphicBufferConsumer, data, reply);
|
||||
int buf = data.readInt32();
|
||||
uint64_t frameNumber = data.readInt64();
|
||||
uint64_t frameNumber = static_cast<uint64_t>(data.readInt64());
|
||||
sp<Fence> releaseFence = new Fence();
|
||||
status_t err = data.read(*releaseFence);
|
||||
if (err) return err;
|
||||
@ -461,7 +467,7 @@ status_t BnGraphicBufferConsumer::onTransact(
|
||||
EGL_NO_DISPLAY, EGL_NO_SYNC_KHR, releaseFence);
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case CONSUMER_CONNECT: {
|
||||
CHECK_INTERFACE(IGraphicBufferConsumer, data, reply);
|
||||
sp<IConsumerListener> consumer = IConsumerListener::asInterface( data.readStrongBinder() );
|
||||
@ -469,75 +475,75 @@ status_t BnGraphicBufferConsumer::onTransact(
|
||||
status_t result = consumerConnect(consumer, controlledByApp);
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case CONSUMER_DISCONNECT: {
|
||||
CHECK_INTERFACE(IGraphicBufferConsumer, data, reply);
|
||||
status_t result = consumerDisconnect();
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case GET_RELEASED_BUFFERS: {
|
||||
CHECK_INTERFACE(IGraphicBufferConsumer, data, reply);
|
||||
uint64_t slotMask;
|
||||
status_t result = getReleasedBuffers(&slotMask);
|
||||
reply->writeInt64(slotMask);
|
||||
reply->writeInt64(static_cast<int64_t>(slotMask));
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case SET_DEFAULT_BUFFER_SIZE: {
|
||||
CHECK_INTERFACE(IGraphicBufferConsumer, data, reply);
|
||||
uint32_t w = data.readInt32();
|
||||
uint32_t h = data.readInt32();
|
||||
status_t result = setDefaultBufferSize(w, h);
|
||||
uint32_t width = data.readUint32();
|
||||
uint32_t height = data.readUint32();
|
||||
status_t result = setDefaultBufferSize(width, height);
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case SET_DEFAULT_MAX_BUFFER_COUNT: {
|
||||
CHECK_INTERFACE(IGraphicBufferConsumer, data, reply);
|
||||
uint32_t bufferCount = data.readInt32();
|
||||
int bufferCount = data.readInt32();
|
||||
status_t result = setDefaultMaxBufferCount(bufferCount);
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case DISABLE_ASYNC_BUFFER: {
|
||||
CHECK_INTERFACE(IGraphicBufferConsumer, data, reply);
|
||||
status_t result = disableAsyncBuffer();
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case SET_MAX_ACQUIRED_BUFFER_COUNT: {
|
||||
CHECK_INTERFACE(IGraphicBufferConsumer, data, reply);
|
||||
uint32_t maxAcquiredBuffers = data.readInt32();
|
||||
int maxAcquiredBuffers = data.readInt32();
|
||||
status_t result = setMaxAcquiredBufferCount(maxAcquiredBuffers);
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case SET_CONSUMER_NAME: {
|
||||
CHECK_INTERFACE(IGraphicBufferConsumer, data, reply);
|
||||
setConsumerName( data.readString8() );
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case SET_DEFAULT_BUFFER_FORMAT: {
|
||||
CHECK_INTERFACE(IGraphicBufferConsumer, data, reply);
|
||||
uint32_t defaultFormat = data.readInt32();
|
||||
PixelFormat defaultFormat = static_cast<PixelFormat>(data.readInt32());
|
||||
status_t result = setDefaultBufferFormat(defaultFormat);
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case SET_CONSUMER_USAGE_BITS: {
|
||||
CHECK_INTERFACE(IGraphicBufferConsumer, data, reply);
|
||||
uint32_t usage = data.readInt32();
|
||||
uint32_t usage = data.readUint32();
|
||||
status_t result = setConsumerUsageBits(usage);
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case SET_TRANSFORM_HINT: {
|
||||
CHECK_INTERFACE(IGraphicBufferConsumer, data, reply);
|
||||
uint32_t hint = data.readInt32();
|
||||
uint32_t hint = data.readUint32();
|
||||
status_t result = setTransformHint(hint);
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case DUMP: {
|
||||
CHECK_INTERFACE(IGraphicBufferConsumer, data, reply);
|
||||
String8 result = data.readString8();
|
||||
|
@ -56,6 +56,8 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
virtual ~BpGraphicBufferProducer();
|
||||
|
||||
virtual status_t requestBuffer(int bufferIdx, sp<GraphicBuffer>* buf) {
|
||||
Parcel data, reply;
|
||||
data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
|
||||
@ -91,14 +93,15 @@ public:
|
||||
}
|
||||
|
||||
virtual status_t dequeueBuffer(int *buf, sp<Fence>* fence, bool async,
|
||||
uint32_t w, uint32_t h, uint32_t format, uint32_t usage) {
|
||||
uint32_t width, uint32_t height, PixelFormat format,
|
||||
uint32_t usage) {
|
||||
Parcel data, reply;
|
||||
data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
|
||||
data.writeInt32(async);
|
||||
data.writeInt32(w);
|
||||
data.writeInt32(h);
|
||||
data.writeInt32(format);
|
||||
data.writeInt32(usage);
|
||||
data.writeInt32(static_cast<int32_t>(async));
|
||||
data.writeUint32(width);
|
||||
data.writeUint32(height);
|
||||
data.writeInt32(static_cast<int32_t>(format));
|
||||
data.writeUint32(usage);
|
||||
status_t result = remote()->transact(DEQUEUE_BUFFER, data, &reply);
|
||||
if (result != NO_ERROR) {
|
||||
return result;
|
||||
@ -255,14 +258,14 @@ public:
|
||||
}
|
||||
|
||||
virtual void allocateBuffers(bool async, uint32_t width, uint32_t height,
|
||||
uint32_t format, uint32_t usage) {
|
||||
PixelFormat format, uint32_t usage) {
|
||||
Parcel data, reply;
|
||||
data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
|
||||
data.writeInt32(static_cast<int32_t>(async));
|
||||
data.writeInt32(static_cast<int32_t>(width));
|
||||
data.writeInt32(static_cast<int32_t>(height));
|
||||
data.writeUint32(width);
|
||||
data.writeUint32(height);
|
||||
data.writeInt32(static_cast<int32_t>(format));
|
||||
data.writeInt32(static_cast<int32_t>(usage));
|
||||
data.writeUint32(usage);
|
||||
status_t result = remote()->transact(ALLOCATE_BUFFERS, data, &reply);
|
||||
if (result != NO_ERROR) {
|
||||
ALOGE("allocateBuffers failed to transact: %d", result);
|
||||
@ -270,6 +273,10 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
// Out-of-line virtual method definition to trigger vtable emission in this
|
||||
// translation unit (see clang warning -Wweak-vtables)
|
||||
BpGraphicBufferProducer::~BpGraphicBufferProducer() {}
|
||||
|
||||
IMPLEMENT_META_INTERFACE(GraphicBufferProducer, "android.gui.IGraphicBufferProducer");
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
@ -289,24 +296,25 @@ status_t BnGraphicBufferProducer::onTransact(
|
||||
}
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case SET_BUFFER_COUNT: {
|
||||
CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
|
||||
int bufferCount = data.readInt32();
|
||||
int result = setBufferCount(bufferCount);
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case DEQUEUE_BUFFER: {
|
||||
CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
|
||||
bool async = data.readInt32();
|
||||
uint32_t w = data.readInt32();
|
||||
uint32_t h = data.readInt32();
|
||||
uint32_t format = data.readInt32();
|
||||
uint32_t usage = data.readInt32();
|
||||
bool async = static_cast<bool>(data.readInt32());
|
||||
uint32_t width = data.readUint32();
|
||||
uint32_t height = data.readUint32();
|
||||
PixelFormat format = static_cast<PixelFormat>(data.readInt32());
|
||||
uint32_t usage = data.readUint32();
|
||||
int buf;
|
||||
sp<Fence> fence;
|
||||
int result = dequeueBuffer(&buf, &fence, async, w, h, format, usage);
|
||||
int result = dequeueBuffer(&buf, &fence, async, width, height,
|
||||
format, usage);
|
||||
reply->writeInt32(buf);
|
||||
reply->writeInt32(fence != NULL);
|
||||
if (fence != NULL) {
|
||||
@ -314,14 +322,14 @@ status_t BnGraphicBufferProducer::onTransact(
|
||||
}
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case DETACH_BUFFER: {
|
||||
CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
|
||||
int slot = data.readInt32();
|
||||
int result = detachBuffer(slot);
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case DETACH_NEXT_BUFFER: {
|
||||
CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
|
||||
sp<GraphicBuffer> buffer;
|
||||
@ -339,7 +347,7 @@ status_t BnGraphicBufferProducer::onTransact(
|
||||
}
|
||||
}
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case ATTACH_BUFFER: {
|
||||
CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
|
||||
sp<GraphicBuffer> buffer = new GraphicBuffer();
|
||||
@ -349,7 +357,7 @@ status_t BnGraphicBufferProducer::onTransact(
|
||||
reply->writeInt32(slot);
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case QUEUE_BUFFER: {
|
||||
CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
|
||||
int buf = data.readInt32();
|
||||
@ -360,7 +368,7 @@ status_t BnGraphicBufferProducer::onTransact(
|
||||
status_t result = queueBuffer(buf, input, output);
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case CANCEL_BUFFER: {
|
||||
CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
|
||||
int buf = data.readInt32();
|
||||
@ -368,7 +376,7 @@ status_t BnGraphicBufferProducer::onTransact(
|
||||
data.read(*fence.get());
|
||||
cancelBuffer(buf, fence);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case QUERY: {
|
||||
CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
|
||||
int value;
|
||||
@ -377,7 +385,7 @@ status_t BnGraphicBufferProducer::onTransact(
|
||||
reply->writeInt32(value);
|
||||
reply->writeInt32(res);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case CONNECT: {
|
||||
CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
|
||||
sp<IProducerListener> listener;
|
||||
@ -392,14 +400,14 @@ status_t BnGraphicBufferProducer::onTransact(
|
||||
status_t res = connect(listener, api, producerControlledByApp, output);
|
||||
reply->writeInt32(res);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case DISCONNECT: {
|
||||
CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
|
||||
int api = data.readInt32();
|
||||
status_t res = disconnect(api);
|
||||
reply->writeInt32(res);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case SET_SIDEBAND_STREAM: {
|
||||
CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
|
||||
sp<NativeHandle> stream;
|
||||
@ -409,14 +417,14 @@ status_t BnGraphicBufferProducer::onTransact(
|
||||
status_t result = setSidebandStream(stream);
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case ALLOCATE_BUFFERS:
|
||||
CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
|
||||
bool async = static_cast<bool>(data.readInt32());
|
||||
uint32_t width = static_cast<uint32_t>(data.readInt32());
|
||||
uint32_t height = static_cast<uint32_t>(data.readInt32());
|
||||
uint32_t format = static_cast<uint32_t>(data.readInt32());
|
||||
uint32_t usage = static_cast<uint32_t>(data.readInt32());
|
||||
uint32_t width = data.readUint32();
|
||||
uint32_t height = data.readUint32();
|
||||
PixelFormat format = static_cast<PixelFormat>(data.readInt32());
|
||||
uint32_t usage = data.readUint32();
|
||||
allocateBuffers(async, width, height, format, usage);
|
||||
return NO_ERROR;
|
||||
}
|
||||
|
@ -30,6 +30,8 @@ public:
|
||||
BpProducerListener(const sp<IBinder>& impl)
|
||||
: BpInterface<IProducerListener>(impl) {}
|
||||
|
||||
virtual ~BpProducerListener();
|
||||
|
||||
virtual void onBufferReleased() {
|
||||
Parcel data, reply;
|
||||
data.writeInterfaceToken(IProducerListener::getInterfaceDescriptor());
|
||||
@ -37,6 +39,10 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
// Out-of-line virtual method definition to trigger vtable emission in this
|
||||
// translation unit (see clang warning -Wweak-vtables)
|
||||
BpProducerListener::~BpProducerListener() {}
|
||||
|
||||
IMPLEMENT_META_INTERFACE(ProducerListener, "android.gui.IProducerListener")
|
||||
|
||||
status_t BnProducerListener::onTransact(uint32_t code, const Parcel& data,
|
||||
|
@ -45,6 +45,8 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
virtual ~BpSensorEventConnection();
|
||||
|
||||
virtual sp<BitTube> getSensorChannel() const
|
||||
{
|
||||
Parcel data, reply;
|
||||
@ -85,6 +87,10 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
// Out-of-line virtual method definition to trigger vtable emission in this
|
||||
// translation unit (see clang warning -Wweak-vtables)
|
||||
BpSensorEventConnection::~BpSensorEventConnection() {}
|
||||
|
||||
IMPLEMENT_META_INTERFACE(SensorEventConnection, "android.gui.SensorEventConnection");
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
@ -98,7 +104,7 @@ status_t BnSensorEventConnection::onTransact(
|
||||
sp<BitTube> channel(getSensorChannel());
|
||||
channel->writeToParcel(reply);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case ENABLE_DISABLE: {
|
||||
CHECK_INTERFACE(ISensorEventConnection, data, reply);
|
||||
int handle = data.readInt32();
|
||||
@ -110,21 +116,21 @@ status_t BnSensorEventConnection::onTransact(
|
||||
maxBatchReportLatencyNs, reservedFlags);
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case SET_EVENT_RATE: {
|
||||
CHECK_INTERFACE(ISensorEventConnection, data, reply);
|
||||
int handle = data.readInt32();
|
||||
int ns = data.readInt64();
|
||||
nsecs_t ns = data.readInt64();
|
||||
status_t result = setEventRate(handle, ns);
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case FLUSH_SENSOR: {
|
||||
CHECK_INTERFACE(ISensorEventConnection, data, reply);
|
||||
status_t result = flush();
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
}
|
||||
return BBinder::onTransact(code, data, reply, flags);
|
||||
}
|
||||
|
@ -45,6 +45,8 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
virtual ~BpSensorServer();
|
||||
|
||||
virtual Vector<Sensor> getSensorList()
|
||||
{
|
||||
Parcel data, reply;
|
||||
@ -52,7 +54,7 @@ public:
|
||||
remote()->transact(GET_SENSOR_LIST, data, &reply);
|
||||
Sensor s;
|
||||
Vector<Sensor> v;
|
||||
int32_t n = reply.readInt32();
|
||||
uint32_t n = reply.readUint32();
|
||||
v.setCapacity(n);
|
||||
while (n--) {
|
||||
reply.read(s);
|
||||
@ -70,6 +72,10 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
// Out-of-line virtual method definition to trigger vtable emission in this
|
||||
// translation unit (see clang warning -Wweak-vtables)
|
||||
BpSensorServer::~BpSensorServer() {}
|
||||
|
||||
IMPLEMENT_META_INTERFACE(SensorServer, "android.gui.SensorServer");
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
@ -82,18 +88,18 @@ status_t BnSensorServer::onTransact(
|
||||
CHECK_INTERFACE(ISensorServer, data, reply);
|
||||
Vector<Sensor> v(getSensorList());
|
||||
size_t n = v.size();
|
||||
reply->writeInt32(n);
|
||||
for (size_t i=0 ; i<n ; i++) {
|
||||
reply->writeUint32(static_cast<uint32_t>(n));
|
||||
for (size_t i = 0; i < n; i++) {
|
||||
reply->write(v[i]);
|
||||
}
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case CREATE_SENSOR_EVENT_CONNECTION: {
|
||||
CHECK_INTERFACE(ISensorServer, data, reply);
|
||||
sp<ISensorEventConnection> connection(createSensorEventConnection());
|
||||
reply->writeStrongBinder(IInterface::asBinder(connection));
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
}
|
||||
return BBinder::onTransact(code, data, reply, flags);
|
||||
}
|
||||
|
@ -51,6 +51,8 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
virtual ~BpSurfaceComposer();
|
||||
|
||||
virtual sp<ISurfaceComposerClient> createConnection()
|
||||
{
|
||||
Parcel data, reply;
|
||||
@ -74,23 +76,18 @@ public:
|
||||
{
|
||||
Parcel data, reply;
|
||||
data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
|
||||
{
|
||||
Vector<ComposerState>::const_iterator b(state.begin());
|
||||
Vector<ComposerState>::const_iterator e(state.end());
|
||||
data.writeInt32(state.size());
|
||||
for ( ; b != e ; ++b ) {
|
||||
b->write(data);
|
||||
}
|
||||
|
||||
data.writeUint32(static_cast<uint32_t>(state.size()));
|
||||
for (const auto& s : state) {
|
||||
s.write(data);
|
||||
}
|
||||
{
|
||||
Vector<DisplayState>::const_iterator b(displays.begin());
|
||||
Vector<DisplayState>::const_iterator e(displays.end());
|
||||
data.writeInt32(displays.size());
|
||||
for ( ; b != e ; ++b ) {
|
||||
b->write(data);
|
||||
}
|
||||
|
||||
data.writeUint32(static_cast<uint32_t>(displays.size()));
|
||||
for (const auto& d : displays) {
|
||||
d.write(data);
|
||||
}
|
||||
data.writeInt32(flags);
|
||||
|
||||
data.writeUint32(flags);
|
||||
remote()->transact(BnSurfaceComposer::SET_TRANSACTION_STATE, data, &reply);
|
||||
}
|
||||
|
||||
@ -113,10 +110,10 @@ public:
|
||||
data.writeStrongBinder(display);
|
||||
data.writeStrongBinder(IInterface::asBinder(producer));
|
||||
data.write(sourceCrop);
|
||||
data.writeInt32(reqWidth);
|
||||
data.writeInt32(reqHeight);
|
||||
data.writeInt32(minLayerZ);
|
||||
data.writeInt32(maxLayerZ);
|
||||
data.writeUint32(reqWidth);
|
||||
data.writeUint32(reqHeight);
|
||||
data.writeUint32(minLayerZ);
|
||||
data.writeUint32(maxLayerZ);
|
||||
data.writeInt32(static_cast<int32_t>(useIdentityTransform));
|
||||
data.writeInt32(static_cast<int32_t>(rotation));
|
||||
remote()->transact(BnSurfaceComposer::CAPTURE_SCREEN, data, &reply);
|
||||
@ -224,7 +221,7 @@ public:
|
||||
remote()->transact(BnSurfaceComposer::GET_DISPLAY_CONFIGS, data, &reply);
|
||||
status_t result = reply.readInt32();
|
||||
if (result == NO_ERROR) {
|
||||
size_t numConfigs = static_cast<size_t>(reply.readInt32());
|
||||
size_t numConfigs = reply.readUint32();
|
||||
configs->clear();
|
||||
configs->resize(numConfigs);
|
||||
for (size_t c = 0; c < numConfigs; ++c) {
|
||||
@ -287,6 +284,10 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
// Out-of-line virtual method definition to trigger vtable emission in this
|
||||
// translation unit (see clang warning -Wweak-vtables)
|
||||
BpSurfaceComposer::~BpSurfaceComposer() {}
|
||||
|
||||
IMPLEMENT_META_INTERFACE(SurfaceComposer, "android.ui.ISurfaceComposer");
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
@ -309,34 +310,37 @@ status_t BnSurfaceComposer::onTransact(
|
||||
}
|
||||
case SET_TRANSACTION_STATE: {
|
||||
CHECK_INTERFACE(ISurfaceComposer, data, reply);
|
||||
size_t count = data.readInt32();
|
||||
|
||||
size_t count = data.readUint32();
|
||||
if (count > data.dataSize()) {
|
||||
return BAD_VALUE;
|
||||
}
|
||||
ComposerState s;
|
||||
Vector<ComposerState> state;
|
||||
state.setCapacity(count);
|
||||
for (size_t i=0 ; i<count ; i++) {
|
||||
for (size_t i = 0; i < count; i++) {
|
||||
if (s.read(data) == BAD_VALUE) {
|
||||
return BAD_VALUE;
|
||||
}
|
||||
state.add(s);
|
||||
}
|
||||
count = data.readInt32();
|
||||
|
||||
count = data.readUint32();
|
||||
if (count > data.dataSize()) {
|
||||
return BAD_VALUE;
|
||||
}
|
||||
DisplayState d;
|
||||
Vector<DisplayState> displays;
|
||||
displays.setCapacity(count);
|
||||
for (size_t i=0 ; i<count ; i++) {
|
||||
for (size_t i = 0; i < count; i++) {
|
||||
if (d.read(data) == BAD_VALUE) {
|
||||
return BAD_VALUE;
|
||||
}
|
||||
displays.add(d);
|
||||
}
|
||||
uint32_t flags = data.readInt32();
|
||||
setTransactionState(state, displays, flags);
|
||||
|
||||
uint32_t stateFlags = data.readUint32();
|
||||
setTransactionState(state, displays, stateFlags);
|
||||
return NO_ERROR;
|
||||
}
|
||||
case BOOT_FINISHED: {
|
||||
@ -351,12 +355,12 @@ status_t BnSurfaceComposer::onTransact(
|
||||
interface_cast<IGraphicBufferProducer>(data.readStrongBinder());
|
||||
Rect sourceCrop;
|
||||
data.read(sourceCrop);
|
||||
uint32_t reqWidth = data.readInt32();
|
||||
uint32_t reqHeight = data.readInt32();
|
||||
uint32_t minLayerZ = data.readInt32();
|
||||
uint32_t maxLayerZ = data.readInt32();
|
||||
uint32_t reqWidth = data.readUint32();
|
||||
uint32_t reqHeight = data.readUint32();
|
||||
uint32_t minLayerZ = data.readUint32();
|
||||
uint32_t maxLayerZ = data.readUint32();
|
||||
bool useIdentityTransform = static_cast<bool>(data.readInt32());
|
||||
uint32_t rotation = data.readInt32();
|
||||
int32_t rotation = data.readInt32();
|
||||
|
||||
status_t res = captureScreen(display, producer,
|
||||
sourceCrop, reqWidth, reqHeight, minLayerZ, maxLayerZ,
|
||||
@ -407,7 +411,7 @@ status_t BnSurfaceComposer::onTransact(
|
||||
status_t result = getDisplayConfigs(display, &configs);
|
||||
reply->writeInt32(result);
|
||||
if (result == NO_ERROR) {
|
||||
reply->writeInt32(static_cast<int32_t>(configs.size()));
|
||||
reply->writeUint32(static_cast<uint32_t>(configs.size()));
|
||||
for (size_t c = 0; c < configs.size(); ++c) {
|
||||
memcpy(reply->writeInplace(sizeof(DisplayInfo)),
|
||||
&configs[c], sizeof(DisplayInfo));
|
||||
@ -467,8 +471,6 @@ status_t BnSurfaceComposer::onTransact(
|
||||
return BBinder::onTransact(code, data, reply, flags);
|
||||
}
|
||||
}
|
||||
// should be unreachable
|
||||
return NO_ERROR;
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
@ -51,17 +51,19 @@ public:
|
||||
: BpInterface<ISurfaceComposerClient>(impl) {
|
||||
}
|
||||
|
||||
virtual status_t createSurface(const String8& name, uint32_t w,
|
||||
uint32_t h, PixelFormat format, uint32_t flags,
|
||||
virtual ~BpSurfaceComposerClient();
|
||||
|
||||
virtual status_t createSurface(const String8& name, uint32_t width,
|
||||
uint32_t height, PixelFormat format, uint32_t flags,
|
||||
sp<IBinder>* handle,
|
||||
sp<IGraphicBufferProducer>* gbp) {
|
||||
Parcel data, reply;
|
||||
data.writeInterfaceToken(ISurfaceComposerClient::getInterfaceDescriptor());
|
||||
data.writeString8(name);
|
||||
data.writeInt32(w);
|
||||
data.writeInt32(h);
|
||||
data.writeInt32(format);
|
||||
data.writeInt32(flags);
|
||||
data.writeUint32(width);
|
||||
data.writeUint32(height);
|
||||
data.writeInt32(static_cast<int32_t>(format));
|
||||
data.writeUint32(flags);
|
||||
remote()->transact(CREATE_SURFACE, data, &reply);
|
||||
*handle = reply.readStrongBinder();
|
||||
*gbp = interface_cast<IGraphicBufferProducer>(reply.readStrongBinder());
|
||||
@ -94,6 +96,10 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
// Out-of-line virtual method definition to trigger vtable emission in this
|
||||
// translation unit (see clang warning -Wweak-vtables)
|
||||
BpSurfaceComposerClient::~BpSurfaceComposerClient() {}
|
||||
|
||||
IMPLEMENT_META_INTERFACE(SurfaceComposerClient, "android.ui.ISurfaceComposerClient");
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
@ -105,31 +111,31 @@ status_t BnSurfaceComposerClient::onTransact(
|
||||
case CREATE_SURFACE: {
|
||||
CHECK_INTERFACE(ISurfaceComposerClient, data, reply);
|
||||
String8 name = data.readString8();
|
||||
uint32_t w = data.readInt32();
|
||||
uint32_t h = data.readInt32();
|
||||
PixelFormat format = data.readInt32();
|
||||
uint32_t flags = data.readInt32();
|
||||
uint32_t width = data.readUint32();
|
||||
uint32_t height = data.readUint32();
|
||||
PixelFormat format = static_cast<PixelFormat>(data.readInt32());
|
||||
uint32_t createFlags = data.readUint32();
|
||||
sp<IBinder> handle;
|
||||
sp<IGraphicBufferProducer> gbp;
|
||||
status_t result = createSurface(name, w, h, format, flags,
|
||||
&handle, &gbp);
|
||||
status_t result = createSurface(name, width, height, format,
|
||||
createFlags, &handle, &gbp);
|
||||
reply->writeStrongBinder(handle);
|
||||
reply->writeStrongBinder(IInterface::asBinder(gbp));
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case DESTROY_SURFACE: {
|
||||
CHECK_INTERFACE(ISurfaceComposerClient, data, reply);
|
||||
reply->writeInt32(destroySurface( data.readStrongBinder() ) );
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case CLEAR_LAYER_FRAME_STATS: {
|
||||
CHECK_INTERFACE(ISurfaceComposerClient, data, reply);
|
||||
sp<IBinder> handle = data.readStrongBinder();
|
||||
status_t result = clearLayerFrameStats(handle);
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
case GET_LAYER_FRAME_STATS: {
|
||||
CHECK_INTERFACE(ISurfaceComposerClient, data, reply);
|
||||
sp<IBinder> handle = data.readStrongBinder();
|
||||
@ -138,7 +144,7 @@ status_t BnSurfaceComposerClient::onTransact(
|
||||
reply->write(stats);
|
||||
reply->writeInt32(result);
|
||||
return NO_ERROR;
|
||||
} break;
|
||||
}
|
||||
default:
|
||||
return BBinder::onTransact(code, data, reply, flags);
|
||||
}
|
||||
|
@ -25,16 +25,16 @@ namespace android {
|
||||
status_t layer_state_t::write(Parcel& output) const
|
||||
{
|
||||
output.writeStrongBinder(surface);
|
||||
output.writeInt32(what);
|
||||
output.writeUint32(what);
|
||||
output.writeFloat(x);
|
||||
output.writeFloat(y);
|
||||
output.writeInt32(z);
|
||||
output.writeInt32(w);
|
||||
output.writeInt32(h);
|
||||
output.writeInt32(layerStack);
|
||||
output.writeUint32(z);
|
||||
output.writeUint32(w);
|
||||
output.writeUint32(h);
|
||||
output.writeUint32(layerStack);
|
||||
output.writeFloat(alpha);
|
||||
output.writeInt32(flags);
|
||||
output.writeInt32(mask);
|
||||
output.writeUint32(flags);
|
||||
output.writeUint32(mask);
|
||||
*reinterpret_cast<layer_state_t::matrix22_t *>(
|
||||
output.writeInplace(sizeof(layer_state_t::matrix22_t))) = matrix;
|
||||
output.write(crop);
|
||||
@ -45,16 +45,16 @@ status_t layer_state_t::write(Parcel& output) const
|
||||
status_t layer_state_t::read(const Parcel& input)
|
||||
{
|
||||
surface = input.readStrongBinder();
|
||||
what = input.readInt32();
|
||||
what = input.readUint32();
|
||||
x = input.readFloat();
|
||||
y = input.readFloat();
|
||||
z = input.readInt32();
|
||||
w = input.readInt32();
|
||||
h = input.readInt32();
|
||||
layerStack = input.readInt32();
|
||||
z = input.readUint32();
|
||||
w = input.readUint32();
|
||||
h = input.readUint32();
|
||||
layerStack = input.readUint32();
|
||||
alpha = input.readFloat();
|
||||
flags = input.readInt32();
|
||||
mask = input.readInt32();
|
||||
flags = static_cast<uint8_t>(input.readUint32());
|
||||
mask = static_cast<uint8_t>(input.readUint32());
|
||||
const void* matrix_data = input.readInplace(sizeof(layer_state_t::matrix22_t));
|
||||
if (matrix_data) {
|
||||
matrix = *reinterpret_cast<layer_state_t::matrix22_t const *>(matrix_data);
|
||||
@ -80,26 +80,26 @@ status_t ComposerState::read(const Parcel& input) {
|
||||
status_t DisplayState::write(Parcel& output) const {
|
||||
output.writeStrongBinder(token);
|
||||
output.writeStrongBinder(IInterface::asBinder(surface));
|
||||
output.writeInt32(what);
|
||||
output.writeInt32(layerStack);
|
||||
output.writeInt32(orientation);
|
||||
output.writeUint32(what);
|
||||
output.writeUint32(layerStack);
|
||||
output.writeUint32(orientation);
|
||||
output.write(viewport);
|
||||
output.write(frame);
|
||||
output.writeInt32(width);
|
||||
output.writeInt32(height);
|
||||
output.writeUint32(width);
|
||||
output.writeUint32(height);
|
||||
return NO_ERROR;
|
||||
}
|
||||
|
||||
status_t DisplayState::read(const Parcel& input) {
|
||||
token = input.readStrongBinder();
|
||||
surface = interface_cast<IGraphicBufferProducer>(input.readStrongBinder());
|
||||
what = input.readInt32();
|
||||
layerStack = input.readInt32();
|
||||
orientation = input.readInt32();
|
||||
what = input.readUint32();
|
||||
layerStack = input.readUint32();
|
||||
orientation = input.readUint32();
|
||||
input.read(viewport);
|
||||
input.read(frame);
|
||||
width = input.readInt32();
|
||||
height = input.readInt32();
|
||||
width = input.readUint32();
|
||||
height = input.readUint32();
|
||||
return NO_ERROR;
|
||||
}
|
||||
|
||||
|
@ -72,7 +72,7 @@ Sensor::Sensor(struct sensor_t const* hwSensor, int halVersion)
|
||||
static_cast<int64_t>(hwSensor->maxDelay));
|
||||
mMaxDelay = INT_MAX;
|
||||
} else {
|
||||
mMaxDelay = (int32_t) hwSensor->maxDelay;
|
||||
mMaxDelay = static_cast<int32_t>(hwSensor->maxDelay);
|
||||
}
|
||||
} else {
|
||||
// For older hals set maxDelay to 0.
|
||||
@ -221,7 +221,7 @@ Sensor::Sensor(struct sensor_t const* hwSensor, int halVersion)
|
||||
}
|
||||
|
||||
if (halVersion >= SENSORS_DEVICE_API_VERSION_1_3) {
|
||||
mFlags = (int32_t) hwSensor->flags;
|
||||
mFlags = static_cast<uint32_t>(hwSensor->flags);
|
||||
} else {
|
||||
// This is an OEM defined sensor on an older HAL. Use minDelay to determine the
|
||||
// reporting mode of the sensor.
|
||||
@ -302,11 +302,11 @@ int32_t Sensor::getVersion() const {
|
||||
return mVersion;
|
||||
}
|
||||
|
||||
int32_t Sensor::getFifoReservedEventCount() const {
|
||||
uint32_t Sensor::getFifoReservedEventCount() const {
|
||||
return mFifoReservedEventCount;
|
||||
}
|
||||
|
||||
int32_t Sensor::getFifoMaxEventCount() const {
|
||||
uint32_t Sensor::getFifoMaxEventCount() const {
|
||||
return mFifoMaxEventCount;
|
||||
}
|
||||
|
||||
@ -322,7 +322,7 @@ int32_t Sensor::getMaxDelay() const {
|
||||
return mMaxDelay;
|
||||
}
|
||||
|
||||
int32_t Sensor::getFlags() const {
|
||||
uint32_t Sensor::getFlags() const {
|
||||
return mFlags;
|
||||
}
|
||||
|
||||
@ -414,7 +414,7 @@ status_t Sensor::unflatten(void const* buffer, size_t size) {
|
||||
|
||||
void Sensor::flattenString8(void*& buffer, size_t& size,
|
||||
const String8& string8) {
|
||||
uint32_t len = string8.length();
|
||||
uint32_t len = static_cast<uint32_t>(string8.length());
|
||||
FlattenableUtils::write(buffer, size, len);
|
||||
memcpy(static_cast<char*>(buffer), string8.string(), len);
|
||||
FlattenableUtils::advance(buffer, size, FlattenableUtils::align<4>(len));
|
||||
|
@ -16,6 +16,7 @@
|
||||
|
||||
#define LOG_TAG "Sensors"
|
||||
|
||||
#include <algorithm>
|
||||
#include <stdint.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
@ -31,6 +32,8 @@
|
||||
|
||||
#include <android/sensor.h>
|
||||
|
||||
using std::min;
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
namespace android {
|
||||
// ----------------------------------------------------------------------------
|
||||
@ -68,14 +71,14 @@ ssize_t SensorEventQueue::read(ASensorEvent* events, size_t numEvents) {
|
||||
if (err < 0) {
|
||||
return err;
|
||||
}
|
||||
mAvailable = err;
|
||||
mAvailable = static_cast<size_t>(err);
|
||||
mConsumed = 0;
|
||||
}
|
||||
size_t count = numEvents < mAvailable ? numEvents : mAvailable;
|
||||
memcpy(events, mRecBuffer + mConsumed, count*sizeof(ASensorEvent));
|
||||
size_t count = min(numEvents, mAvailable);
|
||||
memcpy(events, mRecBuffer + mConsumed, count * sizeof(ASensorEvent));
|
||||
mAvailable -= count;
|
||||
mConsumed += count;
|
||||
return count;
|
||||
return static_cast<ssize_t>(count);
|
||||
}
|
||||
|
||||
sp<Looper> SensorEventQueue::getLooper() const
|
||||
|
@ -90,7 +90,8 @@ status_t SensorManager::assertStateLocked() const {
|
||||
|
||||
mSensors = mSensorServer->getSensorList();
|
||||
size_t count = mSensors.size();
|
||||
mSensorList = (Sensor const**)malloc(count * sizeof(Sensor*));
|
||||
mSensorList =
|
||||
static_cast<Sensor const**>(malloc(count * sizeof(Sensor*)));
|
||||
for (size_t i=0 ; i<count ; i++) {
|
||||
mSensorList[i] = mSensors.array() + i;
|
||||
}
|
||||
@ -106,10 +107,10 @@ ssize_t SensorManager::getSensorList(Sensor const* const** list) const
|
||||
Mutex::Autolock _l(mLock);
|
||||
status_t err = assertStateLocked();
|
||||
if (err < 0) {
|
||||
return ssize_t(err);
|
||||
return static_cast<ssize_t>(err);
|
||||
}
|
||||
*list = mSensorList;
|
||||
return mSensors.size();
|
||||
return static_cast<ssize_t>(mSensors.size());
|
||||
}
|
||||
|
||||
Sensor const* SensorManager::getDefaultSensor(int type)
|
||||
|
@ -141,7 +141,7 @@ void StreamSplitter::onFrameAvailable(const BufferItem& /* item */) {
|
||||
|
||||
IGraphicBufferProducer::QueueBufferInput queueInput(
|
||||
bufferItem.mTimestamp, bufferItem.mIsAutoTimestamp,
|
||||
bufferItem.mCrop, bufferItem.mScalingMode,
|
||||
bufferItem.mCrop, static_cast<int32_t>(bufferItem.mScalingMode),
|
||||
bufferItem.mTransform, bufferItem.mIsDroppable,
|
||||
bufferItem.mFence);
|
||||
|
||||
|
@ -193,17 +193,17 @@ int Surface::dequeueBuffer(android_native_buffer_t** buffer, int* fenceFd) {
|
||||
ATRACE_CALL();
|
||||
ALOGV("Surface::dequeueBuffer");
|
||||
|
||||
int reqW;
|
||||
int reqH;
|
||||
uint32_t reqWidth;
|
||||
uint32_t reqHeight;
|
||||
bool swapIntervalZero;
|
||||
uint32_t reqFormat;
|
||||
PixelFormat reqFormat;
|
||||
uint32_t reqUsage;
|
||||
|
||||
{
|
||||
Mutex::Autolock lock(mMutex);
|
||||
|
||||
reqW = mReqWidth ? mReqWidth : mUserWidth;
|
||||
reqH = mReqHeight ? mReqHeight : mUserHeight;
|
||||
reqWidth = mReqWidth ? mReqWidth : mUserWidth;
|
||||
reqHeight = mReqHeight ? mReqHeight : mUserHeight;
|
||||
|
||||
swapIntervalZero = mSwapIntervalZero;
|
||||
reqFormat = mReqFormat;
|
||||
@ -213,12 +213,12 @@ int Surface::dequeueBuffer(android_native_buffer_t** buffer, int* fenceFd) {
|
||||
int buf = -1;
|
||||
sp<Fence> fence;
|
||||
status_t result = mGraphicBufferProducer->dequeueBuffer(&buf, &fence, swapIntervalZero,
|
||||
reqW, reqH, reqFormat, reqUsage);
|
||||
reqWidth, reqHeight, reqFormat, reqUsage);
|
||||
|
||||
if (result < 0) {
|
||||
ALOGV("dequeueBuffer: IGraphicBufferProducer::dequeueBuffer(%d, %d, %d, %d, %d)"
|
||||
"failed: %d", swapIntervalZero, reqW, reqH, reqFormat, reqUsage,
|
||||
result);
|
||||
"failed: %d", swapIntervalZero, reqWidth, reqHeight, reqFormat,
|
||||
reqUsage, result);
|
||||
return result;
|
||||
}
|
||||
|
||||
@ -346,7 +346,7 @@ int Surface::query(int what, int* value) const {
|
||||
switch (what) {
|
||||
case NATIVE_WINDOW_FORMAT:
|
||||
if (mReqFormat) {
|
||||
*value = mReqFormat;
|
||||
*value = static_cast<int>(mReqFormat);
|
||||
return NO_ERROR;
|
||||
}
|
||||
break;
|
||||
@ -364,13 +364,15 @@ int Surface::query(int what, int* value) const {
|
||||
*value = NATIVE_WINDOW_SURFACE;
|
||||
return NO_ERROR;
|
||||
case NATIVE_WINDOW_DEFAULT_WIDTH:
|
||||
*value = mUserWidth ? mUserWidth : mDefaultWidth;
|
||||
*value = static_cast<int>(
|
||||
mUserWidth ? mUserWidth : mDefaultWidth);
|
||||
return NO_ERROR;
|
||||
case NATIVE_WINDOW_DEFAULT_HEIGHT:
|
||||
*value = mUserHeight ? mUserHeight : mDefaultHeight;
|
||||
*value = static_cast<int>(
|
||||
mUserHeight ? mUserHeight : mDefaultHeight);
|
||||
return NO_ERROR;
|
||||
case NATIVE_WINDOW_TRANSFORM_HINT:
|
||||
*value = mTransformHint;
|
||||
*value = static_cast<int>(mTransformHint);
|
||||
return NO_ERROR;
|
||||
case NATIVE_WINDOW_CONSUMER_RUNNING_BEHIND: {
|
||||
status_t err = NO_ERROR;
|
||||
@ -466,7 +468,7 @@ int Surface::dispatchDisconnect(va_list args) {
|
||||
|
||||
int Surface::dispatchSetUsage(va_list args) {
|
||||
int usage = va_arg(args, int);
|
||||
return setUsage(usage);
|
||||
return setUsage(static_cast<uint32_t>(usage));
|
||||
}
|
||||
|
||||
int Surface::dispatchSetCrop(va_list args) {
|
||||
@ -476,49 +478,49 @@ int Surface::dispatchSetCrop(va_list args) {
|
||||
|
||||
int Surface::dispatchSetBufferCount(va_list args) {
|
||||
size_t bufferCount = va_arg(args, size_t);
|
||||
return setBufferCount(bufferCount);
|
||||
return setBufferCount(static_cast<int32_t>(bufferCount));
|
||||
}
|
||||
|
||||
int Surface::dispatchSetBuffersGeometry(va_list args) {
|
||||
int w = va_arg(args, int);
|
||||
int h = va_arg(args, int);
|
||||
int f = va_arg(args, int);
|
||||
int err = setBuffersDimensions(w, h);
|
||||
uint32_t width = va_arg(args, uint32_t);
|
||||
uint32_t height = va_arg(args, uint32_t);
|
||||
PixelFormat format = va_arg(args, PixelFormat);
|
||||
int err = setBuffersDimensions(width, height);
|
||||
if (err != 0) {
|
||||
return err;
|
||||
}
|
||||
return setBuffersFormat(f);
|
||||
return setBuffersFormat(format);
|
||||
}
|
||||
|
||||
int Surface::dispatchSetBuffersDimensions(va_list args) {
|
||||
int w = va_arg(args, int);
|
||||
int h = va_arg(args, int);
|
||||
return setBuffersDimensions(w, h);
|
||||
uint32_t width = va_arg(args, uint32_t);
|
||||
uint32_t height = va_arg(args, uint32_t);
|
||||
return setBuffersDimensions(width, height);
|
||||
}
|
||||
|
||||
int Surface::dispatchSetBuffersUserDimensions(va_list args) {
|
||||
int w = va_arg(args, int);
|
||||
int h = va_arg(args, int);
|
||||
return setBuffersUserDimensions(w, h);
|
||||
uint32_t width = va_arg(args, uint32_t);
|
||||
uint32_t height = va_arg(args, uint32_t);
|
||||
return setBuffersUserDimensions(width, height);
|
||||
}
|
||||
|
||||
int Surface::dispatchSetBuffersFormat(va_list args) {
|
||||
int f = va_arg(args, int);
|
||||
return setBuffersFormat(f);
|
||||
PixelFormat format = va_arg(args, PixelFormat);
|
||||
return setBuffersFormat(format);
|
||||
}
|
||||
|
||||
int Surface::dispatchSetScalingMode(va_list args) {
|
||||
int m = va_arg(args, int);
|
||||
return setScalingMode(m);
|
||||
int mode = va_arg(args, int);
|
||||
return setScalingMode(mode);
|
||||
}
|
||||
|
||||
int Surface::dispatchSetBuffersTransform(va_list args) {
|
||||
int transform = va_arg(args, int);
|
||||
uint32_t transform = va_arg(args, uint32_t);
|
||||
return setBuffersTransform(transform);
|
||||
}
|
||||
|
||||
int Surface::dispatchSetBuffersStickyTransform(va_list args) {
|
||||
int transform = va_arg(args, int);
|
||||
uint32_t transform = va_arg(args, uint32_t);
|
||||
return setBuffersStickyTransform(transform);
|
||||
}
|
||||
|
||||
@ -638,47 +640,38 @@ int Surface::setBufferCount(int bufferCount)
|
||||
return err;
|
||||
}
|
||||
|
||||
int Surface::setBuffersDimensions(int w, int h)
|
||||
int Surface::setBuffersDimensions(uint32_t width, uint32_t height)
|
||||
{
|
||||
ATRACE_CALL();
|
||||
ALOGV("Surface::setBuffersDimensions");
|
||||
|
||||
if (w<0 || h<0)
|
||||
return BAD_VALUE;
|
||||
|
||||
if ((w && !h) || (!w && h))
|
||||
if ((width && !height) || (!width && height))
|
||||
return BAD_VALUE;
|
||||
|
||||
Mutex::Autolock lock(mMutex);
|
||||
mReqWidth = w;
|
||||
mReqHeight = h;
|
||||
mReqWidth = width;
|
||||
mReqHeight = height;
|
||||
return NO_ERROR;
|
||||
}
|
||||
|
||||
int Surface::setBuffersUserDimensions(int w, int h)
|
||||
int Surface::setBuffersUserDimensions(uint32_t width, uint32_t height)
|
||||
{
|
||||
ATRACE_CALL();
|
||||
ALOGV("Surface::setBuffersUserDimensions");
|
||||
|
||||
if (w<0 || h<0)
|
||||
return BAD_VALUE;
|
||||
|
||||
if ((w && !h) || (!w && h))
|
||||
if ((width && !height) || (!width && height))
|
||||
return BAD_VALUE;
|
||||
|
||||
Mutex::Autolock lock(mMutex);
|
||||
mUserWidth = w;
|
||||
mUserHeight = h;
|
||||
mUserWidth = width;
|
||||
mUserHeight = height;
|
||||
return NO_ERROR;
|
||||
}
|
||||
|
||||
int Surface::setBuffersFormat(int format)
|
||||
int Surface::setBuffersFormat(PixelFormat format)
|
||||
{
|
||||
ALOGV("Surface::setBuffersFormat");
|
||||
|
||||
if (format<0)
|
||||
return BAD_VALUE;
|
||||
|
||||
Mutex::Autolock lock(mMutex);
|
||||
mReqFormat = format;
|
||||
return NO_ERROR;
|
||||
@ -704,7 +697,7 @@ int Surface::setScalingMode(int mode)
|
||||
return NO_ERROR;
|
||||
}
|
||||
|
||||
int Surface::setBuffersTransform(int transform)
|
||||
int Surface::setBuffersTransform(uint32_t transform)
|
||||
{
|
||||
ATRACE_CALL();
|
||||
ALOGV("Surface::setBuffersTransform");
|
||||
@ -713,7 +706,7 @@ int Surface::setBuffersTransform(int transform)
|
||||
return NO_ERROR;
|
||||
}
|
||||
|
||||
int Surface::setBuffersStickyTransform(int transform)
|
||||
int Surface::setBuffersStickyTransform(uint32_t transform)
|
||||
{
|
||||
ATRACE_CALL();
|
||||
ALOGV("Surface::setBuffersStickyTransform");
|
||||
@ -747,30 +740,34 @@ static status_t copyBlt(
|
||||
// src and dst with, height and format must be identical. no verification
|
||||
// is done here.
|
||||
status_t err;
|
||||
uint8_t const * src_bits = NULL;
|
||||
err = src->lock(GRALLOC_USAGE_SW_READ_OFTEN, reg.bounds(), (void**)&src_bits);
|
||||
uint8_t* src_bits = NULL;
|
||||
err = src->lock(GRALLOC_USAGE_SW_READ_OFTEN, reg.bounds(),
|
||||
reinterpret_cast<void**>(&src_bits));
|
||||
ALOGE_IF(err, "error locking src buffer %s", strerror(-err));
|
||||
|
||||
uint8_t* dst_bits = NULL;
|
||||
err = dst->lock(GRALLOC_USAGE_SW_WRITE_OFTEN, reg.bounds(), (void**)&dst_bits);
|
||||
err = dst->lock(GRALLOC_USAGE_SW_WRITE_OFTEN, reg.bounds(),
|
||||
reinterpret_cast<void**>(&dst_bits));
|
||||
ALOGE_IF(err, "error locking dst buffer %s", strerror(-err));
|
||||
|
||||
Region::const_iterator head(reg.begin());
|
||||
Region::const_iterator tail(reg.end());
|
||||
if (head != tail && src_bits && dst_bits) {
|
||||
const size_t bpp = bytesPerPixel(src->format);
|
||||
const size_t dbpr = dst->stride * bpp;
|
||||
const size_t sbpr = src->stride * bpp;
|
||||
const size_t dbpr = static_cast<uint32_t>(dst->stride) * bpp;
|
||||
const size_t sbpr = static_cast<uint32_t>(src->stride) * bpp;
|
||||
|
||||
while (head != tail) {
|
||||
const Rect& r(*head++);
|
||||
ssize_t h = r.height();
|
||||
int32_t h = r.height();
|
||||
if (h <= 0) continue;
|
||||
size_t size = r.width() * bpp;
|
||||
uint8_t const * s = src_bits + (r.left + src->stride * r.top) * bpp;
|
||||
uint8_t * d = dst_bits + (r.left + dst->stride * r.top) * bpp;
|
||||
size_t size = static_cast<uint32_t>(r.width()) * bpp;
|
||||
uint8_t const * s = src_bits +
|
||||
static_cast<uint32_t>(r.left + src->stride * r.top) * bpp;
|
||||
uint8_t * d = dst_bits +
|
||||
static_cast<uint32_t>(r.left + dst->stride * r.top) * bpp;
|
||||
if (dbpr==sbpr && size==sbpr) {
|
||||
size *= h;
|
||||
size *= static_cast<size_t>(h);
|
||||
h = 1;
|
||||
}
|
||||
do {
|
||||
|
@ -143,7 +143,7 @@ public:
|
||||
status_t setSize(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
|
||||
uint32_t w, uint32_t h);
|
||||
status_t setLayer(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
|
||||
int32_t z);
|
||||
uint32_t z);
|
||||
status_t setFlags(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id,
|
||||
uint32_t flags, uint32_t mask);
|
||||
status_t setTransparentRegionHint(
|
||||
@ -293,7 +293,7 @@ status_t Composer::setSize(const sp<SurfaceComposerClient>& client,
|
||||
}
|
||||
|
||||
status_t Composer::setLayer(const sp<SurfaceComposerClient>& client,
|
||||
const sp<IBinder>& id, int32_t z) {
|
||||
const sp<IBinder>& id, uint32_t z) {
|
||||
Mutex::Autolock _l(mLock);
|
||||
layer_state_t* s = getLayerStateLocked(client, id);
|
||||
if (!s)
|
||||
@ -395,7 +395,7 @@ DisplayState& Composer::getDisplayStateLocked(const sp<IBinder>& token) {
|
||||
s.what = 0;
|
||||
index = mDisplayStates.add(s);
|
||||
}
|
||||
return mDisplayStates.editItemAt(index);
|
||||
return mDisplayStates.editItemAt(static_cast<size_t>(index));
|
||||
}
|
||||
|
||||
void Composer::setDisplaySurface(const sp<IBinder>& token,
|
||||
@ -571,7 +571,7 @@ status_t SurfaceComposerClient::setSize(const sp<IBinder>& id, uint32_t w, uint3
|
||||
return getComposer().setSize(this, id, w, h);
|
||||
}
|
||||
|
||||
status_t SurfaceComposerClient::setLayer(const sp<IBinder>& id, int32_t z) {
|
||||
status_t SurfaceComposerClient::setLayer(const sp<IBinder>& id, uint32_t z) {
|
||||
return getComposer().setLayer(this, id, z);
|
||||
}
|
||||
|
||||
@ -657,7 +657,7 @@ status_t SurfaceComposerClient::getDisplayInfo(const sp<IBinder>& display,
|
||||
return NAME_NOT_FOUND;
|
||||
}
|
||||
|
||||
*info = configs[activeId];
|
||||
*info = configs[static_cast<size_t>(activeId)];
|
||||
return NO_ERROR;
|
||||
}
|
||||
|
||||
|
@ -89,12 +89,12 @@ bool SurfaceControl::isSameSurface(
|
||||
return lhs->mHandle == rhs->mHandle;
|
||||
}
|
||||
|
||||
status_t SurfaceControl::setLayerStack(int32_t layerStack) {
|
||||
status_t SurfaceControl::setLayerStack(uint32_t layerStack) {
|
||||
status_t err = validate();
|
||||
if (err < 0) return err;
|
||||
return mClient->setLayerStack(mHandle, layerStack);
|
||||
}
|
||||
status_t SurfaceControl::setLayer(int32_t layer) {
|
||||
status_t SurfaceControl::setLayer(uint32_t layer) {
|
||||
status_t err = validate();
|
||||
if (err < 0) return err;
|
||||
return mClient->setLayer(mHandle, layer);
|
||||
|
@ -16,7 +16,6 @@
|
||||
|
||||
#define LOG_TAG "GLConsumer"
|
||||
|
||||
#define GL_GLEXT_PROTOTYPES
|
||||
#define EGL_EGLEXT_PROTOTYPES
|
||||
|
||||
#include <EGL/egl.h>
|
||||
|
@ -284,7 +284,7 @@ status_t VirtualDisplaySurface::setBufferCount(int bufferCount) {
|
||||
}
|
||||
|
||||
status_t VirtualDisplaySurface::dequeueBuffer(Source source,
|
||||
uint32_t format, uint32_t usage, int* sslot, sp<Fence>* fence) {
|
||||
PixelFormat format, uint32_t usage, int* sslot, sp<Fence>* fence) {
|
||||
LOG_FATAL_IF(mDisplayId < 0, "mDisplayId=%d but should not be < 0.", mDisplayId);
|
||||
// Don't let a slow consumer block us
|
||||
bool async = (source == SOURCE_SINK);
|
||||
@ -329,7 +329,7 @@ status_t VirtualDisplaySurface::dequeueBuffer(Source source,
|
||||
}
|
||||
|
||||
status_t VirtualDisplaySurface::dequeueBuffer(int* pslot, sp<Fence>* fence, bool async,
|
||||
uint32_t w, uint32_t h, uint32_t format, uint32_t usage) {
|
||||
uint32_t w, uint32_t h, PixelFormat format, uint32_t usage) {
|
||||
if (mDisplayId < 0)
|
||||
return mSource[SOURCE_SINK]->dequeueBuffer(pslot, fence, async, w, h, format, usage);
|
||||
|
||||
@ -364,7 +364,7 @@ status_t VirtualDisplaySurface::dequeueBuffer(int* pslot, sp<Fence>* fence, bool
|
||||
usage |= GRALLOC_USAGE_HW_COMPOSER;
|
||||
const sp<GraphicBuffer>& buf = mProducerBuffers[mOutputProducerSlot];
|
||||
if ((usage & ~buf->getUsage()) != 0 ||
|
||||
(format != 0 && format != (uint32_t)buf->getPixelFormat()) ||
|
||||
(format != 0 && format != buf->getPixelFormat()) ||
|
||||
(w != 0 && w != mSinkBufferWidth) ||
|
||||
(h != 0 && h != mSinkBufferHeight)) {
|
||||
VDS_LOGV("dequeueBuffer: dequeueing new output buffer: "
|
||||
@ -517,7 +517,7 @@ status_t VirtualDisplaySurface::setSidebandStream(const sp<NativeHandle>& /*stre
|
||||
}
|
||||
|
||||
void VirtualDisplaySurface::allocateBuffers(bool /* async */,
|
||||
uint32_t /* width */, uint32_t /* height */, uint32_t /* format */,
|
||||
uint32_t /* width */, uint32_t /* height */, PixelFormat /* format */,
|
||||
uint32_t /* usage */) {
|
||||
// TODO: Should we actually allocate buffers for a virtual display?
|
||||
}
|
||||
|
@ -100,7 +100,7 @@ private:
|
||||
virtual status_t requestBuffer(int pslot, sp<GraphicBuffer>* outBuf);
|
||||
virtual status_t setBufferCount(int bufferCount);
|
||||
virtual status_t dequeueBuffer(int* pslot, sp<Fence>* fence, bool async,
|
||||
uint32_t w, uint32_t h, uint32_t format, uint32_t usage);
|
||||
uint32_t w, uint32_t h, PixelFormat format, uint32_t usage);
|
||||
virtual status_t detachBuffer(int slot);
|
||||
virtual status_t detachNextBuffer(sp<GraphicBuffer>* outBuffer,
|
||||
sp<Fence>* outFence);
|
||||
@ -114,13 +114,13 @@ private:
|
||||
virtual status_t disconnect(int api);
|
||||
virtual status_t setSidebandStream(const sp<NativeHandle>& stream);
|
||||
virtual void allocateBuffers(bool async, uint32_t width, uint32_t height,
|
||||
uint32_t format, uint32_t usage);
|
||||
PixelFormat format, uint32_t usage);
|
||||
|
||||
//
|
||||
// Utility methods
|
||||
//
|
||||
static Source fbSourceForCompositionType(CompositionType type);
|
||||
status_t dequeueBuffer(Source source, uint32_t format, uint32_t usage,
|
||||
status_t dequeueBuffer(Source source, PixelFormat format, uint32_t usage,
|
||||
int* sslot, sp<Fence>* fence);
|
||||
void updateQueueBufferOutput(const QueueBufferOutput& qbo);
|
||||
void resetPerFrameState();
|
||||
|
@ -61,7 +61,7 @@ status_t MonitoredProducer::setBufferCount(int bufferCount) {
|
||||
}
|
||||
|
||||
status_t MonitoredProducer::dequeueBuffer(int* slot, sp<Fence>* fence,
|
||||
bool async, uint32_t w, uint32_t h, uint32_t format, uint32_t usage) {
|
||||
bool async, uint32_t w, uint32_t h, PixelFormat format, uint32_t usage) {
|
||||
return mProducer->dequeueBuffer(slot, fence, async, w, h, format, usage);
|
||||
}
|
||||
|
||||
@ -106,7 +106,7 @@ status_t MonitoredProducer::setSidebandStream(const sp<NativeHandle>& stream) {
|
||||
}
|
||||
|
||||
void MonitoredProducer::allocateBuffers(bool async, uint32_t width,
|
||||
uint32_t height, uint32_t format, uint32_t usage) {
|
||||
uint32_t height, PixelFormat format, uint32_t usage) {
|
||||
mProducer->allocateBuffers(async, width, height, format, usage);
|
||||
}
|
||||
|
||||
|
@ -37,7 +37,7 @@ public:
|
||||
virtual status_t requestBuffer(int slot, sp<GraphicBuffer>* buf);
|
||||
virtual status_t setBufferCount(int bufferCount);
|
||||
virtual status_t dequeueBuffer(int* slot, sp<Fence>* fence, bool async,
|
||||
uint32_t w, uint32_t h, uint32_t format, uint32_t usage);
|
||||
uint32_t w, uint32_t h, PixelFormat format, uint32_t usage);
|
||||
virtual status_t detachBuffer(int slot);
|
||||
virtual status_t detachNextBuffer(sp<GraphicBuffer>* outBuffer,
|
||||
sp<Fence>* outFence);
|
||||
@ -52,7 +52,7 @@ public:
|
||||
virtual status_t disconnect(int api);
|
||||
virtual status_t setSidebandStream(const sp<NativeHandle>& stream);
|
||||
virtual void allocateBuffers(bool async, uint32_t width, uint32_t height,
|
||||
uint32_t format, uint32_t usage);
|
||||
PixelFormat format, uint32_t usage);
|
||||
virtual IBinder* onAsBinder();
|
||||
|
||||
private:
|
||||
|
Loading…
Reference in New Issue
Block a user