/hardware/qcom/camera/QCamera2/stack/mm-camera-test/src/ |
D | mm_qcamera_rdi.c | 135 stream->s_config.stream_info = (cam_stream_info_t *)stream->s_info_buf.buf.buffer; in mm_app_add_rdi_stream() 136 memset(stream->s_config.stream_info, 0, sizeof(cam_stream_info_t)); in mm_app_add_rdi_stream() 137 stream->s_config.stream_info->stream_type = CAM_STREAM_TYPE_RAW; in mm_app_add_rdi_stream() 139 stream->s_config.stream_info->streaming_mode = CAM_STREAMING_MODE_CONTINUOUS; in mm_app_add_rdi_stream() 141 stream->s_config.stream_info->streaming_mode = CAM_STREAMING_MODE_BURST; in mm_app_add_rdi_stream() 142 stream->s_config.stream_info->num_of_burst = num_burst; in mm_app_add_rdi_stream() 144 stream->s_config.stream_info->fmt = fmt; in mm_app_add_rdi_stream() 148 stream->s_config.stream_info->dim.width = cam_cap->raw_dim[0].width; in mm_app_add_rdi_stream() 149 stream->s_config.stream_info->dim.height = cam_cap->raw_dim[0].height; in mm_app_add_rdi_stream() 158 buf_planes = &stream->s_config.stream_info->buf_planes; in mm_app_add_rdi_stream() [all …]
|
D | mm_qcamera_preview.c | 67 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_METADATA) { in mm_app_metadata_notify_cb() 147 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_PREVIEW) { in mm_app_preview_notify_cb() 226 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_PREVIEW) { in mm_app_zsl_notify_cb() 238 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_SNAPSHOT) { in mm_app_zsl_notify_cb() 250 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_METADATA) { in mm_app_zsl_notify_cb() 413 stream->s_config.stream_info = (cam_stream_info_t *)stream->s_info_buf.buf.buffer; in mm_app_add_metadata_stream() 414 memset(stream->s_config.stream_info, 0, sizeof(cam_stream_info_t)); in mm_app_add_metadata_stream() 415 stream->s_config.stream_info->stream_type = CAM_STREAM_TYPE_METADATA; in mm_app_add_metadata_stream() 416 stream->s_config.stream_info->streaming_mode = CAM_STREAMING_MODE_CONTINUOUS; in mm_app_add_metadata_stream() 417 stream->s_config.stream_info->fmt = DEFAULT_PREVIEW_FORMAT; in mm_app_add_metadata_stream() [all …]
|
D | mm_qcamera_reprocess.c | 144 stream->s_config.stream_info = (cam_stream_info_t *)stream->s_info_buf.buf.buffer; in mm_app_add_reprocess_stream_from_source() 146 memset(stream->s_config.stream_info, 0, sizeof(cam_stream_info_t)); in mm_app_add_reprocess_stream_from_source() 147 stream->s_config.stream_info->stream_type = CAM_STREAM_TYPE_OFFLINE_PROC; in mm_app_add_reprocess_stream_from_source() 148 stream->s_config.stream_info->streaming_mode = CAM_STREAMING_MODE_CONTINUOUS; in mm_app_add_reprocess_stream_from_source() 149 stream->s_config.stream_info->fmt = source_stream_info->fmt; in mm_app_add_reprocess_stream_from_source() 150 stream->s_config.stream_info->dim = source_stream_info->dim; in mm_app_add_reprocess_stream_from_source() 154 stream->s_config.stream_info->reprocess_config.pp_type = CAM_ONLINE_REPROCESS_TYPE; in mm_app_add_reprocess_stream_from_source() 155 …stream->s_config.stream_info->reprocess_config.online.input_stream_id = source->s_config.stream_in… in mm_app_add_reprocess_stream_from_source() 156 …stream->s_config.stream_info->reprocess_config.online.input_stream_type = source->s_config.stream_… in mm_app_add_reprocess_stream_from_source() 157 stream->s_config.stream_info->reprocess_config.pp_feature_config = pp_config; in mm_app_add_reprocess_stream_from_source() [all …]
|
D | mm_qcamera_snapshot.c | 108 job.encode_job.main_dim.src_dim = m_stream->s_config.stream_info->dim; in encodeData() 109 job.encode_job.main_dim.dst_dim = m_stream->s_config.stream_info->dim; in encodeData() 112 job.encode_job.thumb_dim.src_dim = m_stream->s_config.stream_info->dim; in encodeData() 166 encode_param.main_dim.src_dim = m_stream->s_config.stream_info->dim; in createEncodingSession() 167 encode_param.main_dim.dst_dim = m_stream->s_config.stream_info->dim; in createEncodingSession() 211 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_METADATA) { in mm_app_snapshot_metadata_notify_cb() 291 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_RAW) { in mm_app_snapshot_notify_cb_raw() 361 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_SNAPSHOT) { in mm_app_snapshot_notify_cb() 389 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_POSTVIEW) { in mm_app_snapshot_notify_cb() 507 stream->s_config.stream_info = (cam_stream_info_t *)stream->s_info_buf.buf.buffer; in mm_app_add_postview_stream() [all …]
|
D | mm_qcamera_video.c | 82 stream->s_config.stream_info = (cam_stream_info_t *)stream->s_info_buf.buf.buffer; in mm_app_add_video_stream() 83 memset(stream->s_config.stream_info, 0, sizeof(cam_stream_info_t)); in mm_app_add_video_stream() 84 stream->s_config.stream_info->stream_type = CAM_STREAM_TYPE_VIDEO; in mm_app_add_video_stream() 85 stream->s_config.stream_info->streaming_mode = CAM_STREAMING_MODE_CONTINUOUS; in mm_app_add_video_stream() 86 stream->s_config.stream_info->fmt = DEFAULT_VIDEO_FORMAT; in mm_app_add_video_stream() 87 stream->s_config.stream_info->dim.width = DEFAULT_VIDEO_WIDTH; in mm_app_add_video_stream() 88 stream->s_config.stream_info->dim.height = DEFAULT_VIDEO_HEIGHT; in mm_app_add_video_stream()
|
/hardware/qcom/camera/QCamera2/stack/mm-camera-interface/src/ |
D | mm_camera_stream.c | 103 int32_t mm_stream_calc_offset_postproc(cam_stream_info_t *stream_info, 272 if (my_obj->stream_info->streaming_mode == CAM_STREAMING_MODE_BATCH) { in mm_stream_data_notify() 899 my_obj->stream_info = config->stream_info; in mm_stream_config() 900 my_obj->buf_num = (uint8_t) config->stream_info->num_bufs; in mm_stream_config() 1176 interval_nsec = ((my_obj->stream_info->user_buf_info.frameInterval) * 1000000); in mm_stream_read_user_buf() 1197 my_obj->stream_info->stream_type, frame_ts); in mm_stream_read_user_buf() 1247 __func__, my_obj->stream_info->stream_type, rc, strerror(errno)); in mm_stream_read_msm_frame() 1253 my_obj, my_obj->stream_info->stream_type); in mm_stream_read_msm_frame() 1257 my_obj, my_obj->stream_info->stream_type); in mm_stream_read_msm_frame() 1274 my_obj->stream_info->stream_type, rc, in mm_stream_read_msm_frame() [all …]
|
D | mm_camera_channel.c | 1188 stream_type = s_obj->stream_info->stream_type; in mm_channel_get_bundle_info() 1237 stream_type = s_obj->stream_info->stream_type; in mm_channel_start() 1245 if (!s_obj->stream_info->noFrameExpected) { in mm_channel_start() 1272 if(!(s_objs[i]->stream_info->noFrameExpected)) { in mm_channel_start() 1363 s_objs[j]->stream_info->stream_type); in mm_channel_start() 1439 stream_type = s_obj->stream_info->stream_type; in mm_channel_stop() 2099 if (NULL == stream_obj->stream_info) { in mm_channel_handle_metadata() 2106 if ((CAM_STREAM_TYPE_METADATA == stream_obj->stream_info->stream_type) && in mm_channel_handle_metadata() 2142 ch_obj->streams[i].stream_info->stream_type) { in mm_channel_handle_metadata()
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/ |
D | main.c | 57 ret = (_dmem.stream_info[indx].buffered_data) ? CONFIG_IPC_MESSAGE_MAX_SIZE:0; in viddec_fw_get_total_input_Q_data() 90 if( (_dmem.stream_info[indx].state == 1) in mfd_round_robin() 91 && (_dmem.stream_info[indx].priority == pri)) in mfd_round_robin() 96 …inpt_avail = (_dmem.stream_info[indx].buffered_data > 0) || (ipc_mq_read_avail(&rcv_q->mq, (int32_… in mfd_round_robin() 151 cxt_swap = (mfd_stream_info *)&(_dmem.stream_info[stream_id]); in viddec_fw_init_swap_memory() 278 inpt_avail += ((_dmem.stream_info[indx].buffered_data > 0) ? CONFIG_IPC_MESSAGE_MAX_SIZE: 0); in viddec_fw_debug_scheduled_stream_state() 323 cxt_swap = (mfd_stream_info *)&(_dmem.stream_info[cur]); in viddec_fw_process_async_queues() 499 if(_dmem.stream_info[i].state == 1) in viddec_fw_check_for_pending_int() 501 if((_dmem.stream_info[i].pending_interrupt) && _dmem.int_status[i].mask) in viddec_fw_check_for_pending_int() 528 _dmem.stream_info[i].pending_interrupt = false; in viddec_fw_clear_processed_int()
|
D | viddec_pm_flush.c | 44 cxt_swap = (mfd_stream_info *)&(_dmem.stream_info[stream_id]); in viddec_fw_parser_flush()
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/include/ |
D | fw_pvt.h | 69 mfd_stream_info stream_info[FW_SUPPORTED_STREAMS]; member
|
/hardware/qcom/camera/QCamera2/stack/common/ |
D | mm_camera_interface.h | 263 cam_stream_info_t *stream_info; member 803 int32_t mm_stream_calc_offset_postproc(cam_stream_info_t *stream_info,
|
/hardware/qcom/msm8960/original-kernel-headers/linux/ |
D | msm_audio.h | 291 struct msm_audio_bitstream_info stream_info; member
|
/hardware/qcom/msm8960/kernel-headers/linux/ |
D | msm_audio.h | 267 struct msm_audio_bitstream_info stream_info; member
|
/hardware/qcom/msm8x74/kernel-headers/linux/ |
D | msm_audio.h | 306 struct msm_audio_bitstream_info stream_info; member
|
/hardware/qcom/msm8x84/kernel-headers/linux/ |
D | msm_audio.h | 306 struct msm_audio_bitstream_info stream_info; member
|
/hardware/qcom/msm8x74/original-kernel-headers/linux/ |
D | msm_audio.h | 340 struct msm_audio_bitstream_info stream_info; member
|
/hardware/qcom/msm8x84/original-kernel-headers/linux/ |
D | msm_audio.h | 340 struct msm_audio_bitstream_info stream_info; member
|
/hardware/qcom/msm8x26/original-kernel-headers/linux/ |
D | msm_audio.h | 348 struct msm_audio_bitstream_info stream_info; member
|
/hardware/qcom/msm8x26/kernel-headers/linux/ |
D | msm_audio.h | 306 struct msm_audio_bitstream_info stream_info; member
|
/hardware/qcom/msm8994/kernel-headers/linux/ |
D | msm_audio.h | 314 struct msm_audio_bitstream_info stream_info; member
|
/hardware/qcom/msm8994/original-kernel-headers/linux/ |
D | msm_audio.h | 357 struct msm_audio_bitstream_info stream_info; member
|
/hardware/qcom/camera/QCamera2/stack/mm-camera-interface/inc/ |
D | mm_camera.h | 231 cam_stream_info_t *stream_info; member
|
/hardware/qcom/camera/QCamera2/HAL3/ |
D | QCamera3Stream.cpp | 398 stream_config.stream_info = mStreamInfo; in init()
|
D | QCamera3HWI.cpp | 1410 stream_info_t* stream_info; in configureStreamsPerfLocked() local 1411 stream_info = (stream_info_t* )malloc(sizeof(stream_info_t)); in configureStreamsPerfLocked() 1412 if (!stream_info) { in configureStreamsPerfLocked() 1418 stream_info->stream = newStream; in configureStreamsPerfLocked() 1419 stream_info->status = VALID; in configureStreamsPerfLocked() 1420 stream_info->channel = NULL; in configureStreamsPerfLocked() 1421 mStreamInfo.push_back(stream_info); in configureStreamsPerfLocked()
|
/hardware/qcom/camera/QCamera2/HAL/ |
D | QCameraStream.cpp | 2163 stream_config.stream_info = mStreamInfo; in configStream()
|