Lines Matching refs:stream_type

14468  *  @stream_type: Camera stream type
14473 int32_t QCameraParameters::updatePpFeatureMask(cam_stream_type_t stream_type) {
14477 if (stream_type >= CAM_STREAM_TYPE_MAX) {
14478 LOGE("Error!! stream type: %d not valid", stream_type);
14483 if (isSeeMoreEnabled() && ((stream_type == CAM_STREAM_TYPE_VIDEO) ||
14484 (stream_type == CAM_STREAM_TYPE_PREVIEW && getRecordingHintValue() &&
14490 ((stream_type == CAM_STREAM_TYPE_VIDEO) ||
14491 (stream_type == CAM_STREAM_TYPE_PREVIEW && getRecordingHintValue() &&
14499 (stream_type == CAM_STREAM_TYPE_SNAPSHOT) && is4k2kVideoResolution()) ||
14500 (stream_type != CAM_STREAM_TYPE_SNAPSHOT) ||
14501 ((stream_type == CAM_STREAM_TYPE_SNAPSHOT) && isSmallJpegSizeEnabled())) {
14515 int flipMode = getFlipMode(stream_type);
14521 if ((isTNRVideoEnabled() && (CAM_STREAM_TYPE_VIDEO == stream_type))
14522 || (isTNRPreviewEnabled() && (CAM_STREAM_TYPE_PREVIEW == stream_type))) {
14526 ((CAM_STREAM_TYPE_PREVIEW == stream_type) ||
14527 (CAM_STREAM_TYPE_SNAPSHOT == stream_type))) {
14532 ((CAM_STREAM_TYPE_PREVIEW == stream_type) ||
14533 (CAM_STREAM_TYPE_VIDEO == stream_type) ||
14534 (CAM_STREAM_TYPE_CALLBACK == stream_type) ||
14535 (CAM_STREAM_TYPE_POSTVIEW == stream_type) ||
14536 ((CAM_STREAM_TYPE_SNAPSHOT == stream_type) &&
14545 if (isTNRSnapshotEnabled() && (CAM_STREAM_TYPE_SNAPSHOT == stream_type)
14554 getStreamRotation(stream_type, config, dim);
14565 if (((CAM_STREAM_TYPE_ANALYSIS == stream_type) ||
14566 (CAM_STREAM_TYPE_PREVIEW == stream_type)) &&
14576 if (m_bDcrfEnabled && (CAM_STREAM_TYPE_ANALYSIS == stream_type)) {
14592 if ((stream_type == CAM_STREAM_TYPE_CALLBACK) ||
14593 (stream_type == CAM_STREAM_TYPE_PREVIEW)) {
14595 } else if (stream_type == CAM_STREAM_TYPE_VIDEO) {
14601 if (stream_type == CAM_STREAM_TYPE_ANALYSIS) {
14611 if ((stream_type == CAM_STREAM_TYPE_VIDEO) &&
14628 if (stream_type == CAM_STREAM_TYPE_VIDEO &&
14632 } else if ((stream_type == CAM_STREAM_TYPE_PREVIEW)||
14633 (stream_type == CAM_STREAM_TYPE_CALLBACK)) {
14645 if (stream_type == CAM_STREAM_TYPE_ANALYSIS) {
14657 if (stream_type == CAM_STREAM_TYPE_ANALYSIS) {
14669 if ((stream_type == CAM_STREAM_TYPE_PREVIEW)||
14670 (stream_type == CAM_STREAM_TYPE_CALLBACK)) {
14677 if (stream_type == CAM_STREAM_TYPE_VIDEO ||
14678 stream_type == CAM_STREAM_TYPE_PREVIEW) {
14685 LOGH("Fixed FOVC feature mask set for stream type %d", stream_type);
14691 setStreamPpMask(stream_type, feature_mask);
14692 LOGH("stream type: %d, pp_mask: 0x%llx", stream_type, feature_mask);
14703 * @stream_type: Camera stream type
14709 int32_t QCameraParameters::setStreamPpMask(cam_stream_type_t stream_type,
14712 if(stream_type >= CAM_STREAM_TYPE_MAX) {
14716 mStreamPpMask[stream_type] = pp_mask;
14726 * @stream_type: Camera stream type
14732 int32_t QCameraParameters::getStreamPpMask(cam_stream_type_t stream_type,
14735 if(stream_type >= CAM_STREAM_TYPE_MAX) {
14739 pp_mask = mStreamPpMask[stream_type];