Searched defs:batchSize (Results 1 - 10 of 10) sorted by relevance

/hardware/interfaces/camera/device/3.2/default/
H A DCameraDeviceSession.h189 void registerBatch(uint32_t frameNumber, uint32_t batchSize);
210 BufferBatch(uint32_t batchSize) { argument
211 mBuffers.reserve(batchSize);
H A DCameraDeviceSession.cpp360 void CameraDeviceSession::ResultBatcher::registerBatch(uint32_t frameNumber, uint32_t batchSize) { argument
363 batch->mBatchSize = batchSize;
479 size_t batchSize = 0; local
487 if (bb.mBuffers.size() > batchSize) {
488 batchSize = bb.mBuffers.size();
496 if (batchSize == 0) {
511 results.resize(batchSize);
512 for (size_t i = 0; i < batchSize; i++) {
/hardware/qcom/camera/msm8998/QCamera2/HAL3/
H A DQCamera3Stream.cpp362 * @batchSize : Number of image buffers in a batch.
379 uint32_t batchSize,
388 LOGD("batch size is %d", batchSize);
456 } else if (batchSize) {
457 if (batchSize > MAX_BATCH_SIZE) {
458 LOGE("batchSize:%d is very large", batchSize);
463 mNumBatchBufs = MAX_INFLIGHT_HFR_REQUESTS / batchSize;
465 mStreamInfo->user_buf_info.frame_buf_cnt = batchSize;
472 LOGD("batch size is %d", batchSize);
371 init(cam_stream_type_t streamType, cam_format_t streamFormat, cam_dimension_t streamDim, cam_rotation_t streamRotation, cam_stream_reproc_config_t* reprocess_config, uint8_t minNumBuffers, cam_feature_mask_t postprocess_mask, cam_is_type_t is_type, uint32_t batchSize, hal3_stream_cb_routine stream_cb, void *userdata) argument
[all...]
H A DQCamera3Channel.cpp171 uint32_t batchSize)
195 LOGD("batch size is %d", batchSize);
198 NULL, minStreamBufNum, postprocessMask, isType, batchSize,
284 * @batchSize : Number of image buffers in a batch
290 int32_t QCamera3Channel::setBatchSize(uint32_t batchSize) argument
292 LOGD("Dummy method. batchSize: %d unused ", batchSize);
2058 * @batchSize : Number of image buffers in a batch
2064 int32_t QCamera3RegularChannel::setBatchSize(uint32_t batchSize) argument
2068 mBatchSize = batchSize;
164 addStream(cam_stream_type_t streamType, cam_format_t streamFormat, cam_dimension_t streamDim, cam_rotation_t streamRotation, uint8_t minStreamBufNum, cam_feature_mask_t postprocessMask, cam_is_type_t isType, uint32_t batchSize) argument
[all...]
H A DQCamera3HWI.cpp6719 uint8_t batchSize = mBatchSize; local
6721 if (batchSize) {
12582 * Eg: for 240fps at batchSize 4, preview = 60fps
12583 * for 120fps at batchSize 4, preview = 30fps
12614 LOGD("hfrMode: %d batchSize: %d", hfrMode, mBatchSize);
/hardware/interfaces/camera/device/1.0/default/
H A DCameraDevice.cpp461 uint32_t batchSize = 0; local
464 batchSize = mBatchSize;
467 if (batchSize == 0) { // non-batch mode
483 if (mInflightBatch.size() >= batchSize) {
/hardware/interfaces/camera/device/3.4/default/
H A DExternalCameraDeviceSession.cpp1417 const uint32_t batchSize = DCTSIZE * maxVSampFactor; local
1423 uint32_t done = jpeg_write_raw_data(&cinfo, planes, batchSize);
1425 if (done != batchSize) {
1427 __FUNCTION__, done, batchSize, cinfo.next_scanline,
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/venc/src/
H A Dvideo_encoder_device_v4l2.cpp7119 bool venc_dev::venc_set_batch_size(OMX_U32 batchSize) argument
7125 control.value = batchSize ? V4L2_VIDC_QBUF_BATCHED : V4L2_VIDC_QBUF_STANDARD;
7133 mBatchSize = batchSize;
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/venc/src/
H A Dvideo_encoder_device_v4l2.cpp7934 bool venc_dev::venc_set_batch_size(OMX_U32 batchSize) argument
7940 control.value = batchSize ? V4L2_VIDC_QBUF_BATCHED : V4L2_VIDC_QBUF_STANDARD;
7948 mBatchSize = batchSize;
/hardware/qcom/media/msm8998/mm-core/inc/
H A DOMX_QCOMExtns.h2100 static int getNumFdsForBatch(int batchSize) { argument
2101 return batchSize;
2103 static int getNumIntsForBatch(int batchSize) { argument
2104 return batchSize * INT_TOTAL;

Completed in 233 milliseconds