You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
151 lines
6.5 KiB
151 lines
6.5 KiB
/*
|
|
* Copyright (C) 2017 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.
|
|
*/
|
|
|
|
#include "RenderPixelCopy.h"
|
|
#include "FormatConvert.h"
|
|
|
|
#include <android-base/logging.h>
|
|
|
|
|
|
RenderPixelCopy::RenderPixelCopy(sp<IEvsEnumerator> enumerator,
|
|
const ConfigManager::CameraInfo& cam) {
|
|
mEnumerator = enumerator;
|
|
mCameraInfo = cam;
|
|
}
|
|
|
|
|
|
bool RenderPixelCopy::activate() {
|
|
// Set up the camera to feed this texture
|
|
sp<IEvsCamera> pCamera =
|
|
IEvsCamera::castFrom(mEnumerator->openCamera(mCameraInfo.cameraId.c_str()))
|
|
.withDefault(nullptr);
|
|
|
|
if (pCamera.get() == nullptr) {
|
|
LOG(ERROR) << "Failed to allocate new EVS Camera interface";
|
|
return false;
|
|
}
|
|
|
|
// Initialize the stream that will help us update this texture's contents
|
|
sp<StreamHandler> pStreamHandler = new StreamHandler(pCamera);
|
|
if (pStreamHandler.get() == nullptr) {
|
|
LOG(ERROR) << "Failed to allocate FrameHandler";
|
|
return false;
|
|
}
|
|
|
|
// Start the video stream
|
|
if (!pStreamHandler->startStream()) {
|
|
LOG(ERROR) << "Start stream failed";
|
|
return false;
|
|
}
|
|
|
|
mStreamHandler = pStreamHandler;
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
void RenderPixelCopy::deactivate() {
|
|
mStreamHandler = nullptr;
|
|
}
|
|
|
|
|
|
bool RenderPixelCopy::drawFrame(const BufferDesc& tgtBuffer) {
|
|
bool success = true;
|
|
const AHardwareBuffer_Desc* pTgtDesc =
|
|
reinterpret_cast<const AHardwareBuffer_Desc *>(&tgtBuffer.buffer.description);
|
|
|
|
sp<android::GraphicBuffer> tgt = new android::GraphicBuffer(tgtBuffer.buffer.nativeHandle,
|
|
android::GraphicBuffer::CLONE_HANDLE,
|
|
pTgtDesc->width,
|
|
pTgtDesc->height,
|
|
pTgtDesc->format,
|
|
pTgtDesc->layers,
|
|
pTgtDesc->usage,
|
|
pTgtDesc->stride);
|
|
|
|
// Lock our target buffer for writing (should be RGBA8888 format)
|
|
uint32_t* tgtPixels = nullptr;
|
|
tgt->lock(GRALLOC_USAGE_SW_WRITE_OFTEN, (void**)&tgtPixels);
|
|
|
|
if (tgtPixels) {
|
|
if (pTgtDesc->format != HAL_PIXEL_FORMAT_RGBA_8888) {
|
|
// We always expect 32 bit RGB for the display output for now. Is there a need for 565?
|
|
LOG(ERROR) << "Diplay buffer is always expected to be 32bit RGBA";
|
|
success = false;
|
|
} else {
|
|
// Make sure we have the latest frame data
|
|
if (mStreamHandler->newFrameAvailable()) {
|
|
const BufferDesc& srcBuffer = mStreamHandler->getNewFrame();
|
|
const AHardwareBuffer_Desc* pSrcDesc =
|
|
reinterpret_cast<const AHardwareBuffer_Desc *>(&srcBuffer.buffer.description);
|
|
|
|
// Lock our source buffer for reading (current expectation are for this to be NV21 format)
|
|
sp<android::GraphicBuffer> src = new android::GraphicBuffer(srcBuffer.buffer.nativeHandle,
|
|
android::GraphicBuffer::CLONE_HANDLE,
|
|
pSrcDesc->width,
|
|
pSrcDesc->height,
|
|
pSrcDesc->format,
|
|
pSrcDesc->layers,
|
|
pSrcDesc->usage,
|
|
pSrcDesc->stride);
|
|
|
|
unsigned char* srcPixels = nullptr;
|
|
src->lock(GRALLOC_USAGE_SW_READ_OFTEN, (void**)&srcPixels);
|
|
if (srcPixels != nullptr) {
|
|
// Make sure we don't run off the end of either buffer
|
|
const unsigned width = std::min(pTgtDesc->width,
|
|
pSrcDesc->width);
|
|
const unsigned height = std::min(pTgtDesc->height,
|
|
pSrcDesc->height);
|
|
|
|
if (pSrcDesc->format == HAL_PIXEL_FORMAT_YCRCB_420_SP) { // 420SP == NV21
|
|
copyNV21toRGB32(width, height,
|
|
srcPixels,
|
|
tgtPixels, pTgtDesc->stride);
|
|
} else if (pSrcDesc->format == HAL_PIXEL_FORMAT_YV12) { // YUV_420P == YV12
|
|
copyYV12toRGB32(width, height,
|
|
srcPixels,
|
|
tgtPixels, pTgtDesc->stride);
|
|
} else if (pSrcDesc->format == HAL_PIXEL_FORMAT_YCBCR_422_I) { // YUYV
|
|
copyYUYVtoRGB32(width, height,
|
|
srcPixels, pSrcDesc->stride,
|
|
tgtPixels, pTgtDesc->stride);
|
|
} else if (pSrcDesc->format == pTgtDesc->format) { // 32bit RGBA
|
|
copyMatchedInterleavedFormats(width, height,
|
|
srcPixels, pSrcDesc->stride,
|
|
tgtPixels, pTgtDesc->stride,
|
|
tgtBuffer.pixelSize);
|
|
}
|
|
} else {
|
|
LOG(ERROR) << "Failed to get pointer into src image data";
|
|
success = false;
|
|
}
|
|
|
|
mStreamHandler->doneWithFrame(srcBuffer);
|
|
}
|
|
}
|
|
} else {
|
|
LOG(ERROR) << "Failed to lock buffer contents for contents transfer";
|
|
success = false;
|
|
}
|
|
|
|
if (tgtPixels) {
|
|
tgt->unlock();
|
|
}
|
|
|
|
return success;
|
|
}
|