Merge "Add ConsumerBase::isAbandoned" into mnc-dev
This commit is contained in:
commit
3db36803b2
@ -56,6 +56,9 @@ public:
|
|||||||
// or by OpenGL ES as a texture) then those buffer will remain allocated.
|
// or by OpenGL ES as a texture) then those buffer will remain allocated.
|
||||||
void abandon();
|
void abandon();
|
||||||
|
|
||||||
|
// Returns true if the ConsumerBase is in the 'abandoned' state
|
||||||
|
bool isAbandoned();
|
||||||
|
|
||||||
// set the name of the ConsumerBase that will be used to identify it in
|
// set the name of the ConsumerBase that will be used to identify it in
|
||||||
// log messages.
|
// log messages.
|
||||||
void setName(const String8& name);
|
void setName(const String8& name);
|
||||||
|
@ -171,6 +171,11 @@ void ConsumerBase::abandonLocked() {
|
|||||||
mConsumer.clear();
|
mConsumer.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool ConsumerBase::isAbandoned() {
|
||||||
|
Mutex::Autolock _l(mMutex);
|
||||||
|
return mAbandoned;
|
||||||
|
}
|
||||||
|
|
||||||
void ConsumerBase::setFrameAvailableListener(
|
void ConsumerBase::setFrameAvailableListener(
|
||||||
const wp<FrameAvailableListener>& listener) {
|
const wp<FrameAvailableListener>& listener) {
|
||||||
CB_LOGV("setFrameAvailableListener");
|
CB_LOGV("setFrameAvailableListener");
|
||||||
|
Loading…
Reference in New Issue
Block a user