Home
last modified time | relevance | path

Searched refs:bufCount (Results 1 – 9 of 9) sorted by relevance

/aosp12/frameworks/av/media/libstagefright/
H A DAudioSource.cpp122 size_t bufCount = 2; in set() local
123 while ((bufCount * frameCount) < minFrameCount) { in set()
124 bufCount++; in set()
131 (size_t) (bufCount * frameCount), in set()
/aosp12/frameworks/base/core/java/android/util/proto/
H A DEncodedBuffer.java577 final int bufCount = size / mChunkSize;
581 for (bufIndex=0; bufIndex<bufCount; bufIndex++) {
586 final int lastSize = size - (bufCount * mChunkSize);
/aosp12/hardware/qcom/camera/msm8998/QCamera2/HAL/
H A DQCameraAllocator.h54 cam_stream_type_t stream_type, uint8_t bufCount = 1,
H A DQCameraParametersIntf.h70 int32_t allocate(uint8_t bufCount = 1);
H A DQCameraParametersIntf.cpp65 int32_t QCameraParametersIntf::allocate(uint8_t bufCount) in allocate() argument
74 return mImpl->allocate(bufCount); in allocate()
H A DQCamera2HWI.h291 cam_stream_type_t stream_type, uint8_t bufCount = 1,
H A DQCamera2HWI.cpp3494 cam_stream_type_t stream_type, uint8_t bufCount, uint32_t cam_type) in allocateStreamInfoBuf() argument
3504 if (bufCount > MM_CAMERA_MAX_CAM_CNT) { in allocateStreamInfoBuf()
3505 LOGE("buffer count should be lesser than max camera : %d", bufCount); in allocateStreamInfoBuf()
3508 rc = streamInfoBuf->allocate(bufCount, sizeof(cam_stream_info_t)); in allocateStreamInfoBuf()
3515 for (uint8_t i = 0; i < bufCount; i++) { in allocateStreamInfoBuf()
3527 if (bufCount == MM_CAMERA_MAX_CAM_CNT) { in allocateStreamInfoBuf()
H A DQCameraParameters.h637 int32_t allocate(uint8_t bufCount);
H A DQCameraParameters.cpp6303 int32_t QCameraParameters::allocate(uint8_t bufCount) in allocate() argument
6317 rc = m_pParamHeap->allocate(bufCount, sizeof(parm_buffer_t)); in allocate()