/hardware/qcom/camera/msm8998/QCamera2/HAL/ |
D | QCameraChannel.cpp | 458 int32_t QCameraChannel::bufDone(mm_camera_super_buf_t *recvd_frame) in bufDone() argument 461 for (uint32_t i = 0; i < recvd_frame->num_bufs; i++) { in bufDone() 462 if (recvd_frame->bufs[i] != NULL) { in bufDone() 466 recvd_frame->bufs[i]->stream_id))) { in bufDone() 467 rc = mStreams[j]->bufDone(recvd_frame->bufs[i]->buf_idx); in bufDone() 490 int32_t QCameraChannel::bufDone(mm_camera_super_buf_t *recvd_frame, uint32_t stream_id) in bufDone() argument 494 for (int32_t i = 0; i < (int32_t)recvd_frame->num_bufs; i++) { in bufDone() 496 if ((recvd_frame->bufs[i] != NULL) && in bufDone() 497 (recvd_frame->bufs[i]->stream_id == stream_id)) { in bufDone() 501 recvd_frame->bufs[i]->stream_id))) { in bufDone() [all …]
|
D | QCamera2HWICallbacks.cpp | 66 void QCamera2HardwareInterface::zsl_channel_cb(mm_camera_super_buf_t *recvd_frame, in zsl_channel_cb() argument 79 recvd_frame->camera_handle))) { in zsl_channel_cb() 87 recvd_frame->ch_id))) { in zsl_channel_cb() 94 pme->selectScene(pChannel, recvd_frame); in zsl_channel_cb() 95 pChannel->bufDone(recvd_frame); in zsl_channel_cb() 100 recvd_frame->bUnlockAEC, pme->m_bLedAfAecLock); in zsl_channel_cb() 101 if(recvd_frame->bUnlockAEC && pme->m_bLedAfAecLock) { in zsl_channel_cb() 121 if (recvd_frame->bReadyForPrepareSnapshot) { in zsl_channel_cb() 150 pChannel->bufDone(recvd_frame); in zsl_channel_cb() 153 *frame = *recvd_frame; in zsl_channel_cb() [all …]
|
D | QCameraChannel.h | 64 virtual int32_t bufDone(mm_camera_super_buf_t *recvd_frame); 65 virtual int32_t bufDone(mm_camera_super_buf_t *recvd_frame, uint32_t stream_id);
|
D | QCamera2HWI.h | 437 mm_camera_super_buf_t *recvd_frame); 468 mm_camera_buf_def_t *getSnapshotFrame(mm_camera_super_buf_t *recvd_frame); 531 static void zsl_channel_cb(mm_camera_super_buf_t *recvd_frame, void *userdata); 532 static void capture_channel_cb_routine(mm_camera_super_buf_t *recvd_frame, 534 static void postproc_channel_cb_routine(mm_camera_super_buf_t *recvd_frame,
|
D | QCameraPostProc.h | 225 int32_t processRawImageImpl(mm_camera_super_buf_t *recvd_frame); 234 int32_t setYUVFrameInfo(mm_camera_super_buf_t *recvd_frame);
|
D | QCameraStream.cpp | 1094 void QCameraStream::dataNotifySYNCCB(mm_camera_super_buf_t *recvd_frame, in dataNotifySYNCCB() argument 1100 recvd_frame == NULL || in dataNotifySYNCCB() 1101 recvd_frame->bufs[0] == NULL || in dataNotifySYNCCB() 1103 recvd_frame->bufs[0]->stream_id)) { in dataNotifySYNCCB() 1108 stream->mSYNCDataCB(recvd_frame, stream, stream->mUserData); in dataNotifySYNCCB() 1124 void QCameraStream::dataNotifyCB(mm_camera_super_buf_t *recvd_frame, in dataNotifyCB() argument 1130 recvd_frame == NULL || in dataNotifyCB() 1131 recvd_frame->bufs[0] == NULL || in dataNotifyCB() 1133 recvd_frame->bufs[0]->stream_id))) { in dataNotifyCB() 1142 stream->bufDone(recvd_frame); in dataNotifyCB() [all …]
|
D | QCameraPostProc.cpp | 2319 mm_camera_super_buf_t *recvd_frame = jpeg_job_data->src_frame; in encodeData() local 2329 QCameraChannel *pChannel = m_parent->getChannelByHandle(recvd_frame->ch_id); in encodeData() 2334 (validate_handle(mPPChannels[i]->getMyHandle(), recvd_frame->ch_id))) { in encodeData() 2343 recvd_frame->ch_id); in encodeData() 2352 recvd_frame, in encodeData() 2427 recvd_frame = jpeg_job_data->src_frame; in encodeData() 2871 int32_t QCameraPostProcessor::processRawImageImpl(mm_camera_super_buf_t *recvd_frame) in processRawImageImpl() argument 2875 QCameraChannel *pChannel = m_parent->getChannelByHandle(recvd_frame->ch_id); in processRawImageImpl() 2882 (validate_handle(mPPChannels[i]->getMyHandle(), recvd_frame->ch_id))) { in processRawImageImpl() 2890 recvd_frame->ch_id); in processRawImageImpl() [all …]
|
D | QCameraStream.h | 81 static void dataNotifyCB(mm_camera_super_buf_t *recvd_frame, void *userdata); 82 static void dataNotifySYNCCB(mm_camera_super_buf_t *recvd_frame,
|
/hardware/qcom/camera/msm8998/QCamera2/stack/mm-camera-test/src/ |
D | mm_qcamera_reprocess.c | 339 mm_camera_super_buf_t *recvd_frame = ( mm_camera_super_buf_t * ) data; in mm_app_release_ppinput() local 342 for ( i = 0 ; i < recvd_frame->num_bufs ; i++) { in mm_app_release_ppinput() 344 recvd_frame->ch_id, in mm_app_release_ppinput() 345 recvd_frame->bufs[i])) { in mm_app_release_ppinput() 348 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 | 80 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/msm8998/QCamera2/HAL3/ |
D | QCamera3PostProc.cpp | 1199 qcamera_fwk_input_pp_data_t *recvd_frame = NULL; in encodeFWKData() local 1211 recvd_frame = jpeg_job_data->fwk_frame; in encodeFWKData() 1212 if (NULL == recvd_frame) { in encodeFWKData() 1247 src_dim.width = recvd_frame->reproc_config.input_stream_dim.width; in encodeFWKData() 1248 src_dim.height = recvd_frame->reproc_config.input_stream_dim.height; in encodeFWKData() 1252 dst_dim.width = recvd_frame->reproc_config.output_stream_dim.width; in encodeFWKData() 1253 dst_dim.height = recvd_frame->reproc_config.output_stream_dim.height; in encodeFWKData() 1277 needJpegExifRotation = (hal_obj->needJpegExifRotation() || !needsReprocess(recvd_frame)); in encodeFWKData() 1307 getFWKJpegEncodeConfig(encodeParam, recvd_frame, jpeg_settings); in encodeFWKData() 1308 QCamera3StreamMem *memObj = (QCamera3StreamMem *)(recvd_frame->input_buffer.mem_info); in encodeFWKData() [all …]
|
D | QCamera3Channel.h | 98 int32_t bufDone(mm_camera_super_buf_t *recvd_frame); 235 virtual int32_t metadataBufDone(mm_camera_super_buf_t *recvd_frame); 579 static void dataNotifyCB(mm_camera_super_buf_t *recvd_frame, 584 int32_t metadataBufDone(mm_camera_super_buf_t *recvd_frame) override; 653 int32_t bufDone(mm_camera_super_buf_t *recvd_frame); 656 static void dataNotifyCB(mm_camera_super_buf_t *recvd_frame,
|
D | QCamera3Stream.cpp | 633 void QCamera3Stream::dataNotifyCB(mm_camera_super_buf_t *recvd_frame, in dataNotifyCB() argument 639 recvd_frame == NULL || in dataNotifyCB() 640 recvd_frame->bufs[0] == NULL || in dataNotifyCB() 641 recvd_frame->bufs[0]->stream_id != stream->getMyHandle()) { in dataNotifyCB() 650 stream->bufDone(recvd_frame->bufs[0]->buf_idx); in dataNotifyCB() 653 *frame = *recvd_frame; in dataNotifyCB()
|
D | QCamera3Channel.cpp | 360 int32_t QCamera3Channel::bufDone(mm_camera_super_buf_t *recvd_frame) in bufDone() argument 363 for (uint32_t i = 0; i < recvd_frame->num_bufs; i++) { in bufDone() 364 if (recvd_frame->bufs[i] != NULL) { in bufDone() 367 mStreams[j]->getMyHandle() == recvd_frame->bufs[i]->stream_id) { in bufDone() 368 rc = mStreams[j]->bufDone(recvd_frame->bufs[i]->buf_idx); in bufDone() 1576 int32_t QCamera3ProcessingChannel::metadataBufDone(mm_camera_super_buf_t *recvd_frame) in metadataBufDone() argument 1579 if ((NULL == m_pMetaChannel) || (NULL == recvd_frame)) { in metadataBufDone() 1584 rc = ((QCamera3MetadataChannel*)m_pMetaChannel)->bufDone(recvd_frame); in metadataBufDone() 3753 int32_t QCamera3PicChannel::metadataBufDone(mm_camera_super_buf_t *recvd_frame) in metadataBufDone() argument 3756 if (recvd_frame != nullptr && recvd_frame->num_bufs == 1) { in metadataBufDone() [all …]
|
D | QCamera3PostProc.h | 156 int32_t processRawImageImpl(mm_camera_super_buf_t *recvd_frame);
|
D | QCamera3Stream.h | 84 static void dataNotifyCB(mm_camera_super_buf_t *recvd_frame, void *userdata);
|
/hardware/qcom/camera/msm8998/QCamera2/stack/mm-camera-test/inc/ |
D | mm_qcamera_app.h | 515 extern int encodeData(mm_camera_test_obj_t *test_obj, mm_camera_super_buf_t* recvd_frame,
|