Home
last modified time | relevance | path

Searched refs:mCroppingType (Results 1 – 5 of 5) sorted by relevance

/hardware/interfaces/camera/device/3.4/default/
DExternalCameraDevice.cpp153 callback, mCfg, mSupportedFormats, mCroppingType, in open()
959 mCroppingType = VERTICAL; in initSupportedFormatsLocked()
963 mCroppingType = HORIZONTAL; in initSupportedFormatsLocked()
976 mCroppingType = HORIZONTAL; in initSupportedFormatsLocked()
979 mCroppingType = VERTICAL; in initSupportedFormatsLocked()
984 mCroppingType = HORIZONTAL; in initSupportedFormatsLocked()
988 mCroppingType = VERTICAL; in initSupportedFormatsLocked()
992 mCroppingType = HORIZONTAL; in initSupportedFormatsLocked()
995 mCroppingType = VERTICAL; in initSupportedFormatsLocked()
DExternalCameraDeviceSession.cpp105 mCroppingType(croppingType), in ExternalCameraDeviceSession()
186 mOutputThread = new OutputThread(this, mCroppingType); in initOutputThread()
270 (mCroppingType == VERTICAL) ? "vertical" : "horizontal", in dumpState()
948 CroppingType ct) : mParent(parent), mCroppingType(ct) {} in OutputThread()
1056 ret = getCropRect(mCroppingType, inSz, outSz, &inputCrop); in cropAndScaleLocked()
1071 if ((mCroppingType == VERTICAL && inSz.width == outSz.width) || in cropAndScaleLocked()
1072 (mCroppingType == HORIZONTAL && inSz.height == outSz.height)) { in cropAndScaleLocked()
2657 float desiredAr = (mCroppingType == VERTICAL) ? kMaxAspectRatio : kMinAspectRatio; in configureStreams()
2662 if ((mCroppingType == VERTICAL && aspectRatio < desiredAr) || in configureStreams()
2663 (mCroppingType == HORIZONTAL && aspectRatio > desiredAr)) { in configureStreams()
[all …]
/hardware/interfaces/camera/device/3.4/default/include/ext_device_v3_4_impl/
DExternalCameraDevice_3_4.h154 CroppingType mCroppingType; member
DExternalCameraDeviceSession.h312 const CroppingType mCroppingType; member
347 const CroppingType mCroppingType; member
/hardware/interfaces/camera/device/3.5/default/
DExternalCameraDeviceSession.cpp257 mOutputThread = new OutputThread(this, mCroppingType, mBufferRequestThread); in initOutputThread()