/hardware/qcom/camera/QCamera2/HAL/ |
D | QCamera2HWICallbacks.cpp | 60 void QCamera2HardwareInterface::zsl_channel_cb(mm_camera_super_buf_t *recvd_frame, in zsl_channel_cb() argument 72 pme->mCameraHandle->camera_handle != recvd_frame->camera_handle){ in zsl_channel_cb() 79 pChannel->getMyHandle() != recvd_frame->ch_id) { in zsl_channel_cb() 86 pme->selectScene(pChannel, recvd_frame); in zsl_channel_cb() 87 pChannel->bufDone(recvd_frame); in zsl_channel_cb() 92 __func__, recvd_frame->bUnlockAEC, pme->m_bLedAfAecLock); in zsl_channel_cb() 93 if(recvd_frame->bUnlockAEC && pme->m_bLedAfAecLock) { in zsl_channel_cb() 113 if (recvd_frame->bReadyForPrepareSnapshot) { in zsl_channel_cb() 141 pChannel->bufDone(recvd_frame); in zsl_channel_cb() 144 *frame = *recvd_frame; in zsl_channel_cb() [all …]
|
D | QCameraPostProc.h | 167 int32_t processRawImageImpl(mm_camera_super_buf_t *recvd_frame); 176 int32_t setYUVFrameInfo(mm_camera_super_buf_t *recvd_frame);
|
D | QCamera2HWI.h | 379 mm_camera_super_buf_t *recvd_frame); 407 mm_camera_buf_def_t *getSnapshotFrame(mm_camera_super_buf_t *recvd_frame); 459 static void zsl_channel_cb(mm_camera_super_buf_t *recvd_frame, void *userdata); 460 static void capture_channel_cb_routine(mm_camera_super_buf_t *recvd_frame, 462 static void postproc_channel_cb_routine(mm_camera_super_buf_t *recvd_frame,
|
D | QCameraPostProc.cpp | 1789 mm_camera_super_buf_t *recvd_frame = jpeg_job_data->src_frame; in encodeData() local 1795 QCameraChannel *pChannel = m_parent->getChannelByHandle(recvd_frame->ch_id); in encodeData() 1800 (mPPChannels[i]->getMyHandle() == recvd_frame->ch_id)) { in encodeData() 1809 __func__, __LINE__, recvd_frame->ch_id); in encodeData() 1820 recvd_frame, in encodeData() 2155 int32_t QCameraPostProcessor::processRawImageImpl(mm_camera_super_buf_t *recvd_frame) in processRawImageImpl() argument 2159 QCameraChannel *pChannel = m_parent->getChannelByHandle(recvd_frame->ch_id); in processRawImageImpl() 2166 (mPPChannels[i]->getMyHandle() == recvd_frame->ch_id)) { in processRawImageImpl() 2174 __func__, __LINE__, recvd_frame->ch_id); in processRawImageImpl() 2179 for (uint32_t i = 0; i < recvd_frame->num_bufs; i++) { in processRawImageImpl() [all …]
|
D | QCameraChannel.cpp | 405 int32_t QCameraChannel::bufDone(mm_camera_super_buf_t *recvd_frame) in bufDone() argument 408 for (uint32_t i = 0; i < recvd_frame->num_bufs; i++) { in bufDone() 409 if (recvd_frame->bufs[i] != NULL) { in bufDone() 412 mStreams[j]->getMyHandle() == recvd_frame->bufs[i]->stream_id) { in bufDone() 413 rc = mStreams[j]->bufDone(recvd_frame->bufs[i]->buf_idx); in bufDone()
|
D | QCameraChannel.h | 61 virtual int32_t bufDone(mm_camera_super_buf_t *recvd_frame);
|
D | QCameraStream.cpp | 901 void QCameraStream::dataNotifyCB(mm_camera_super_buf_t *recvd_frame, in dataNotifyCB() argument 907 recvd_frame == NULL || in dataNotifyCB() 908 recvd_frame->bufs[0] == NULL || in dataNotifyCB() 909 recvd_frame->bufs[0]->stream_id != stream->getMyHandle()) { in dataNotifyCB() 918 stream->bufDone(recvd_frame->bufs[0]->buf_idx); in dataNotifyCB() 921 *frame = *recvd_frame; in dataNotifyCB()
|
D | QCameraStream.h | 75 static void dataNotifyCB(mm_camera_super_buf_t *recvd_frame, void *userdata);
|
/hardware/qcom/camera/QCamera2/stack/mm-camera-test/src/ |
D | mm_qcamera_reprocess.c | 348 mm_camera_super_buf_t *recvd_frame = ( mm_camera_super_buf_t * ) data; in mm_app_release_ppinput() local 351 for ( i = 0 ; i < recvd_frame->num_bufs ; i++) { in mm_app_release_ppinput() 353 recvd_frame->ch_id, in mm_app_release_ppinput() 354 recvd_frame->bufs[i])) { in mm_app_release_ppinput() 357 mm_app_cache_ops((mm_camera_app_meminfo_t *) recvd_frame->bufs[i]->mem_info, in mm_app_release_ppinput()
|
D | mm_qcamera_snapshot.c | 79 int encodeData(mm_camera_test_obj_t *test_obj, mm_camera_super_buf_t* recvd_frame, in encodeData() argument 94 *(test_obj->current_job_frames) = *recvd_frame; in encodeData()
|
/hardware/qcom/camera/QCamera2/HAL3/ |
D | QCamera3Channel.h | 73 int32_t bufDone(mm_camera_super_buf_t *recvd_frame); 182 int32_t metadataBufDone(mm_camera_super_buf_t *recvd_frame); 463 static void dataNotifyCB(mm_camera_super_buf_t *recvd_frame, 512 int32_t bufDone(mm_camera_super_buf_t *recvd_frame); 515 static void dataNotifyCB(mm_camera_super_buf_t *recvd_frame,
|
D | QCamera3PostProc.cpp | 1083 qcamera_fwk_input_pp_data_t *recvd_frame = NULL; in encodeFWKData() local 1094 recvd_frame = jpeg_job_data->fwk_frame; in encodeFWKData() 1095 if (NULL == recvd_frame) { in encodeFWKData() 1127 src_dim.width = recvd_frame->reproc_config.input_stream_dim.width; in encodeFWKData() 1128 src_dim.height = recvd_frame->reproc_config.input_stream_dim.height; in encodeFWKData() 1132 dst_dim.width = recvd_frame->reproc_config.output_stream_dim.width; in encodeFWKData() 1133 dst_dim.height = recvd_frame->reproc_config.output_stream_dim.height; in encodeFWKData() 1155 getFWKJpegEncodeConfig(encodeParam, recvd_frame, jpeg_settings); in encodeFWKData() 1294 mm_camera_super_buf_t *recvd_frame = NULL; in encodeData() local 1306 recvd_frame = jpeg_job_data->src_frame; in encodeData() [all …]
|
D | QCamera3Stream.cpp | 514 void QCamera3Stream::dataNotifyCB(mm_camera_super_buf_t *recvd_frame, in dataNotifyCB() argument 520 recvd_frame == NULL || in dataNotifyCB() 521 recvd_frame->bufs[0] == NULL || in dataNotifyCB() 522 recvd_frame->bufs[0]->stream_id != stream->getMyHandle()) { in dataNotifyCB() 531 stream->bufDone(recvd_frame->bufs[0]->buf_idx); in dataNotifyCB() 534 *frame = *recvd_frame; in dataNotifyCB()
|
D | QCamera3Channel.cpp | 322 int32_t QCamera3Channel::bufDone(mm_camera_super_buf_t *recvd_frame) in bufDone() argument 325 for (uint32_t i = 0; i < recvd_frame->num_bufs; i++) { in bufDone() 326 if (recvd_frame->bufs[i] != NULL) { in bufDone() 329 mStreams[j]->getMyHandle() == recvd_frame->bufs[i]->stream_id) { in bufDone() 330 rc = mStreams[j]->bufDone(recvd_frame->bufs[i]->buf_idx); in bufDone() 1110 int32_t QCamera3ProcessingChannel::metadataBufDone(mm_camera_super_buf_t *recvd_frame) in metadataBufDone() argument 1113 if ((NULL == m_pMetaChannel) || (NULL == recvd_frame)) { in metadataBufDone() 1118 rc = ((QCamera3MetadataChannel*)m_pMetaChannel)->bufDone(recvd_frame); in metadataBufDone() 3094 void QCamera3PicChannel::dataNotifyCB(mm_camera_super_buf_t *recvd_frame, in dataNotifyCB() argument 3117 channel->QCamera3PicChannel::streamCbRoutine(recvd_frame, channel->mStreams[0]); in dataNotifyCB() [all …]
|
D | QCamera3Stream.h | 79 static void dataNotifyCB(mm_camera_super_buf_t *recvd_frame, void *userdata);
|
D | QCamera3PostProc.h | 155 int32_t processRawImageImpl(mm_camera_super_buf_t *recvd_frame);
|
/hardware/qcom/camera/QCamera2/stack/mm-camera-test/inc/ |
D | mm_qcamera_app.h | 487 extern int encodeData(mm_camera_test_obj_t *test_obj, mm_camera_super_buf_t* recvd_frame,
|