Lines Matching refs:streamInfo
1843 cam_stream_info_t *streamInfo) in allocateMiscBuf() argument
1850 streamInfo->reprocess_config.pp_feature_config.feature_mask; in allocateMiscBuf()
1852 switch (streamInfo->stream_type) { in allocateMiscBuf()
1916 cam_stream_info_t *streamInfo = (cam_stream_info_t *)streamInfoBuf->getPtr(0); in allocateStreamInfoBuf() local
1917 memset(streamInfo, 0, sizeof(cam_stream_info_t)); in allocateStreamInfoBuf()
1918 streamInfo->stream_type = stream_type; in allocateStreamInfoBuf()
1919 rc = mParameters.getStreamFormat(stream_type, streamInfo->fmt); in allocateStreamInfoBuf()
1920 rc = mParameters.getStreamDimension(stream_type, streamInfo->dim); in allocateStreamInfoBuf()
1921 rc = mParameters.getStreamRotation(stream_type, streamInfo->pp_config, streamInfo->dim); in allocateStreamInfoBuf()
1922 streamInfo->num_bufs = getBufNumRequired(stream_type); in allocateStreamInfoBuf()
1923 streamInfo->streaming_mode = CAM_STREAMING_MODE_CONTINUOUS; in allocateStreamInfoBuf()
1924 streamInfo->is_secure = NON_SECURE; in allocateStreamInfoBuf()
1929 streamInfo->streaming_mode = CAM_STREAMING_MODE_CONTINUOUS; in allocateStreamInfoBuf()
1931 streamInfo->streaming_mode = CAM_STREAMING_MODE_BURST; in allocateStreamInfoBuf()
1932 streamInfo->num_of_burst = (uint8_t) in allocateStreamInfoBuf()
1946 streamInfo->streaming_mode = CAM_STREAMING_MODE_CONTINUOUS; in allocateStreamInfoBuf()
1948 streamInfo->streaming_mode = CAM_STREAMING_MODE_BURST; in allocateStreamInfoBuf()
1949 streamInfo->num_of_burst = mParameters.getNumOfSnapshots(); in allocateStreamInfoBuf()
1952 streamInfo->is_secure = SECURE; in allocateStreamInfoBuf()
1954 streamInfo->is_secure = NON_SECURE; in allocateStreamInfoBuf()
1959 streamInfo->streaming_mode = CAM_STREAMING_MODE_CONTINUOUS; in allocateStreamInfoBuf()
1961 streamInfo->streaming_mode = CAM_STREAMING_MODE_BURST; in allocateStreamInfoBuf()
1962 streamInfo->num_of_burst = (uint8_t)(mParameters.getNumOfSnapshots() in allocateStreamInfoBuf()
1969 streamInfo->dis_enable = mParameters.isDISEnabled(); in allocateStreamInfoBuf()
1972 streamInfo->streaming_mode = CAM_STREAMING_MODE_BATCH; in allocateStreamInfoBuf()
1973 streamInfo->user_buf_info.frame_buf_cnt = mParameters.getBufBatchCount(); in allocateStreamInfoBuf()
1974 streamInfo->user_buf_info.size = in allocateStreamInfoBuf()
1978 streamInfo->user_buf_info.frameInterval = in allocateStreamInfoBuf()
1981 streamInfo->user_buf_info.frame_buf_cnt, in allocateStreamInfoBuf()
1982 streamInfo->user_buf_info.frameInterval); in allocateStreamInfoBuf()
1990 streamInfo->is_type = mParameters.getISType(); in allocateStreamInfoBuf()
1992 streamInfo->is_type = IS_TYPE_NONE; in allocateStreamInfoBuf()
1996 streamInfo->is_secure = SECURE; in allocateStreamInfoBuf()
2000 streamInfo->noFrameExpected = 1; in allocateStreamInfoBuf()
2010 mParameters.getStreamPpMask(stream_type, streamInfo->pp_config.feature_mask); in allocateStreamInfoBuf()
2013 if (streamInfo->pp_config.feature_mask & CAM_QCOM_FEATURE_FLIP) { in allocateStreamInfoBuf()
2016 streamInfo->pp_config.flip = (uint32_t)flipMode; in allocateStreamInfoBuf()
2019 if (streamInfo->pp_config.feature_mask & CAM_QCOM_FEATURE_SHARPNESS) { in allocateStreamInfoBuf()
2020 streamInfo->pp_config.sharpness = mParameters.getInt(QCameraParameters::KEY_QC_SHARPNESS); in allocateStreamInfoBuf()
2022 if (streamInfo->pp_config.feature_mask & CAM_QCOM_FEATURE_EFFECT) { in allocateStreamInfoBuf()
2023 streamInfo->pp_config.effect = mParameters.getEffectValue(); in allocateStreamInfoBuf()
2026 if (streamInfo->pp_config.feature_mask & CAM_QCOM_FEATURE_DENOISE2D) { in allocateStreamInfoBuf()
2027 streamInfo->pp_config.denoise2d.denoise_enable = 1; in allocateStreamInfoBuf()
2028 streamInfo->pp_config.denoise2d.process_plates = in allocateStreamInfoBuf()
2035 streamInfo->pp_config.feature_mask |= CAM_QCOM_FEATURE_CROP; in allocateStreamInfoBuf()
2037 streamInfo->pp_config.feature_mask |= CAM_QCOM_FEATURE_SCALE; in allocateStreamInfoBuf()
2041 __func__, stream_type, streamInfo->pp_config.feature_mask); in allocateStreamInfoBuf()
2059 cam_stream_info_t *streamInfo) in allocateStreamUserBuf() argument
2066 if (streamInfo->streaming_mode != CAM_STREAMING_MODE_BATCH) { in allocateStreamUserBuf()
2072 switch (streamInfo->stream_type) { in allocateStreamUserBuf()
2076 video_mem->allocateMeta(streamInfo->num_bufs); in allocateStreamUserBuf()
2103 size = PAD_TO_SIZE((streamInfo->num_bufs * streamInfo->user_buf_info.size), in allocateStreamUserBuf()
2106 CDBG_HIGH("%s: Allocating BATCH Buffer count = %d", __func__, streamInfo->num_bufs); in allocateStreamUserBuf()