Home
last modified time | relevance | path

Searched refs:mHeight (Results 1 – 25 of 37) sorted by relevance

12

/hardware/google/av/media/eco/include/eco/
DECOService.h83 int32_t mHeight; member
87 : mWidth(w), mHeight(h), mIsCameraRecording(isCameraRecording) {} in SessionConfig()
90 return mWidth == cfg.mWidth && mHeight == cfg.mHeight &&
96 return p1.mWidth == p2.mWidth && p1.mHeight == p2.mHeight &&
105 return cfg.mWidth | (cfg.mHeight << 16) | ((int32_t)cfg.mIsCameraRecording << 31); in operator()
DECOServiceStatsProvider.h69 int32_t mHeight = 0; variable
DECOSession.h152 const int32_t mHeight; variable
/hardware/google/av/media/eco/tests/
DFakeECOServiceInfoListener.cpp42 mHeight(height), in FakeECOServiceInfoListener()
46 mHeight, mIsCameraRecording); in FakeECOServiceInfoListener()
51 : mWidth(width), mHeight(height), mIsCameraRecording(isCameraRecording) { in FakeECOServiceInfoListener()
53 mHeight, mIsCameraRecording); in FakeECOServiceInfoListener()
DFakeECOServiceStatsProvider.cpp42 mHeight(height), in FakeECOServiceStatsProvider()
49 mWidth, mHeight, mIsCameraRecording, mFrameRate); in FakeECOServiceStatsProvider()
55 mHeight(height), in FakeECOServiceStatsProvider()
61 mWidth, mHeight, mIsCameraRecording, mFrameRate); in FakeECOServiceStatsProvider()
DFakeECOServiceStatsProvider.h90 int32_t mHeight; variable
DFakeECOServiceInfoListener.h78 int32_t mHeight; variable
/hardware/interfaces/graphics/composer/2.2/utils/vts/
DReadbackVts.cpp200 mHeight = height; in ReadbackBuffer()
213 mGralloc->allocate(mWidth, mHeight, mLayerCount, mFormat, mUsage, in setReadbackBuffer()
215 ASSERT_NE(false, mGralloc->validateBufferSize(mBufferHandle->get(), mWidth, mHeight, in setReadbackBuffer()
227 ReadbackHelper::compareColorBuffers(expectedColors, bufData, mStride, mWidth, mHeight, in checkReadbackBuffer()
261 mHeight = height;
285 new GraphicBuffer(mBufferHandle->get(), GraphicBuffer::CLONE_HANDLE, mWidth, mHeight, in toRenderEngineLayerSettings()
294 const float scaleY = (mSourceCrop.bottom - mSourceCrop.top) / (mHeight); in toRenderEngineLayerSettings()
296 const float translateY = mSourceCrop.top / (mHeight); in toRenderEngineLayerSettings()
308 ReadbackHelper::fillBuffer(mWidth, mHeight, mStride, bufData, mFormat, expectedColors)); in fillBuffer()
318 mGralloc->allocate(mWidth, mHeight, mLayerCount, mFormat, mUsage, in setBuffer()
[all …]
/hardware/libhardware/modules/camera/3_0/
DStream.cpp41 mHeight(s->height), in Stream()
181 if (s->height != mHeight) { in isValidReuseStream()
183 __func__, mId, s->height, mHeight); in isValidReuseStream()
229 dprintf(fd, "Width: %" PRIu32 " Height: %" PRIu32 "\n", mWidth, mHeight); in dump()
DStream.h65 const uint32_t mHeight; variable
/hardware/google/av/media/eco/
DECOSession.cpp74 mHeight(height), in ECOSession()
76 ECOLOGI("ECOSession created with w: %d, h: %d, isCameraRecording: %d", mWidth, mHeight, in ECOSession()
100 ECOLOGI("ECOSession destroyed with w: %d, h: %d, isCameraRecording: %d", mWidth, mHeight, in ~ECOSession()
215 if (height != mHeight) { in processSessionStats()
216 ECOLOGW("Codec height: %d, expected: %d", height, mHeight); in processSessionStats()
227 if (mOutputHeight != mHeight) { in processSessionStats()
228 ECOLOGW("Codec output height: %d, expected: %d", mOutputHeight, mHeight); in processSessionStats()
530 *_aidl_return = mHeight; in getHeight()
556 mWidth, mHeight, mIsCameraRecording, mTargetBitrateBps, mCodecType, mCodecProfile, in dump()
DECOServiceStatsProvider.cpp30 mHeight(height), in ECOServiceStatsProvider()
/hardware/interfaces/automotive/evs/1.0/default/
DEvsCamera.cpp55 mHeight = 480; // full NTSC/VGA in EvsCamera()
59 mHeight = 240; // 1/2 NTSC/VGA in EvsCamera()
314 status_t result = alloc.allocate(mWidth, mHeight, mFormat, 1, mUsage, in increaseAvailableFrames_Locked()
317 ALOGE("Error %d allocating %d x %d graphics buffer", result, mWidth, mHeight); in increaseAvailableFrames_Locked()
425 buff.height = mHeight; in generateFrames()
DEvsCamera.h75 uint32_t mHeight = 0; // Vertical pixel count in the buffers variable
/hardware/qcom/display/msm8994/libhdmi/
Dhdmi.h40 int mMode, mWidth, mHeight, mFps; member
44 : mMode(mode), mWidth(width), mHeight(height), mFps(fps), mModeOrder(order) in EDIDData()
Dhdmi.cpp661 height = gEDIDData[dataIndex].mHeight; in getAttrForMode()
773 yres = gEDIDData[dataIndex].mHeight; in getAttrForConfig()
/hardware/interfaces/camera/device/3.4/default/
DExternalCameraUtils.cpp46 mWidth(width), mHeight(height), mFourcc(fourcc) {} in Frame()
106 if ((mWidth % 2) || (mHeight % 2)) { in allocate()
107 ALOGE("%s: bad dimension %dx%d (not multiple of 2)", __FUNCTION__, mWidth, mHeight); in allocate()
111 uint32_t dataSize = mWidth * mHeight * 3 / 2; // YUV420 in allocate()
119 uint8_t* cbStart = mData.data() + mWidth * mHeight; in allocate()
120 uint8_t* crStart = cbStart + mWidth * mHeight / 4; in allocate()
143 static_cast<int32_t>(mHeight)}; in getLayout()
155 (rect.top + rect.height) > static_cast<int>(mHeight) || in getCroppedLayout()
164 uint8_t* cbStart = mData.data() + mWidth * mHeight; in getCroppedLayout()
165 uint8_t* crStart = cbStart + mWidth * mHeight / 4; in getCroppedLayout()
[all …]
DExternalCameraDeviceSession.cpp936 Size inSz = {in->mWidth, in->mHeight}; in cropAndScaleLocked()
1028 Size inSz {in->mWidth, in->mHeight}; in cropAndScaleThumbLocked()
1031 (mYu12ThumbFrame->mWidth * mYu12ThumbFrame->mHeight)) { in cropAndScaleThumbLocked()
1034 mYu12ThumbFrame->mWidth, mYu12ThumbFrame->mHeight); in cropAndScaleThumbLocked()
1261 mYu12Frame->mWidth, mYu12Frame->mHeight); in createJpegLocked()
1472 mYu12Frame->mWidth, mYu12Frame->mHeight, mYu12Frame->mWidth, mYu12Frame->mHeight); in threadLoop()
1613 mYu12Frame->mHeight != v4lSize.height) { in allocateIntermediateBuffers()
1626 mYu12ThumbFrame->mHeight != thumbSize.height) { in allocateIntermediateBuffers()
/hardware/interfaces/automotive/evs/1.1/default/
DEvsCamera.cpp415 status_t result = alloc.allocate(mWidth, mHeight, mFormat, 1, mUsage, in increaseAvailableFrames_Locked()
418 ALOGE("Error %d allocating %d x %d graphics buffer", result, mWidth, mHeight); in increaseAvailableFrames_Locked()
528 pDesc->height = mHeight; in generateFrames()
708 evsCamera->mHeight = it->second[2]; in Create()
DEvsCamera.h123 uint32_t mHeight = 0; // Vertical pixel count in the buffers variable
/hardware/interfaces/graphics/composer/2.2/utils/vts/include/composer-vts/2.2/
DReadbackVts.h134 uint32_t mHeight; variable
192 uint32_t mHeight; variable
/hardware/interfaces/camera/device/3.6/default/
DExternalCameraOfflineSession.cpp94 Size inputSize = { mOfflineReqs[0]->frameIn->mWidth, mOfflineReqs[0]->frameIn->mHeight}; in initOutputThread()
156 mYu12Frame->mWidth, mYu12Frame->mHeight, mYu12Frame->mWidth, mYu12Frame->mHeight); in threadLoop()
/hardware/interfaces/graphics/composer/2.2/vts/functional/
DVtsHalGraphicsComposerV2_2ReadbackTest.cpp452 mPrimaryDisplay, layer->mWidth, layer->mHeight, clientFormat, clientDataspace); in TEST_P()
457 << " height: " << layer->mHeight in TEST_P()
468 mGralloc->allocate(layer->mWidth, layer->mHeight, layer->mLayerCount, in TEST_P()
475 ASSERT_NO_FATAL_FAILURE(ReadbackHelper::fillBuffer(layer->mWidth, layer->mHeight, in TEST_P()
543 deviceLayer->mHeight); in TEST_P()
546 static_cast<int32_t>(deviceLayer->mHeight)}, in TEST_P()
549 static_cast<int32_t>(deviceLayer->mHeight)}); in TEST_P()
/hardware/interfaces/camera/device/3.4/default/include/ext_device_v3_4_impl/
DExternalCameraUtils.h135 const uint32_t mHeight; member
/hardware/qcom/camera/msm8998/QCamera2/HAL/
DQCameraMem.h316 int mWidth, mHeight, mFormat, mStride, mScanline, mUsage; variable

12