Home
last modified time | relevance | path

Searched refs:thumbSize (Results 1 – 3 of 3) sorted by relevance

/hardware/interfaces/camera/device/3.4/default/
DExternalCameraUtils.cpp564 Size thumbSize { 0, 0 }; in getMaxThumbnailResolution() local
570 if(sz.width * sz.height > thumbSize.width * thumbSize.height) { in getMaxThumbnailResolution()
571 thumbSize = sz; in getMaxThumbnailResolution()
575 if (thumbSize.width * thumbSize.height == 0) { in getMaxThumbnailResolution()
579 return thumbSize; in getMaxThumbnailResolution()
DExternalCameraDeviceSession.cpp1264 Size thumbSize; in createJpegLocked() local
1288 thumbSize = Size { static_cast<uint32_t>(entry.data.i32[0]), in createJpegLocked()
1291 if (thumbSize.width == 0 && thumbSize.height == 0) { in createJpegLocked()
1326 ret = cropAndScaleThumbLocked(mYu12Frame, thumbSize, &yu12Thumb); in createJpegLocked()
1343 ret = encodeJpegYU12(thumbSize, yu12Thumb, in createJpegLocked()
1601 const Size& v4lSize, const Size& thumbSize, in allocateIntermediateBuffers() argument
1625 mYu12ThumbFrame->mWidth != thumbSize.width || in allocateIntermediateBuffers()
1626 mYu12ThumbFrame->mHeight != thumbSize.height) { in allocateIntermediateBuffers()
1628 mYu12ThumbFrame = new AllocatedFrame(thumbSize.width, thumbSize.height); in allocateIntermediateBuffers()
2373 Size thumbSize { 0, 0 }; in configureStreams() local
[all …]
/hardware/interfaces/camera/device/3.4/default/include/ext_device_v3_4_impl/
DExternalCameraDeviceSession.h121 const Size& v4lSize, const Size& thumbSize,