Merge "libgui: Implement onTransact for sideband streams"

This commit is contained in:
Dan Stoza 2015-04-29 17:17:52 +00:00 committed by Gerrit Code Review
commit ca8c569598
1 changed files with 9 additions and 0 deletions

View File

@ -414,6 +414,15 @@ status_t BnGraphicBufferConsumer::onTransact(
reply->writeInt32(result);
return NO_ERROR;
}
case GET_SIDEBAND_STREAM: {
CHECK_INTERFACE(IGraphicBufferConsumer, data, reply);
sp<NativeHandle> stream = getSidebandStream();
reply->writeInt32(static_cast<int32_t>(stream != NULL));
if (stream != NULL) {
reply->writeNativeHandle(stream->handle());
}
return NO_ERROR;
}
case DUMP: {
CHECK_INTERFACE(IGraphicBufferConsumer, data, reply);
String8 result = data.readString8();