Searched refs:mStreamInfo (Results 1 – 10 of 10) sorted by relevance
/hardware/qcom/camera/msm8998/QCamera2/HAL/ |
D | QCameraStream.cpp | 80 if (stream->mStreamInfo != NULL in get_bufs() 81 && stream->mStreamInfo->streaming_mode == CAM_STREAMING_MODE_BATCH) { in get_bufs() 152 if (stream->mStreamInfo != NULL in put_bufs() 153 && stream->mStreamInfo->streaming_mode == CAM_STREAMING_MODE_BATCH) { in put_bufs() 211 if (stream->mStreamInfo->is_secure == SECURE){ in invalidate_buf() 215 if (stream->mStreamInfo->streaming_mode == CAM_STREAMING_MODE_BATCH) { in invalidate_buf() 248 if (stream->mStreamInfo->is_secure == SECURE){ in clean_invalidate_buf() 252 if (stream->mStreamInfo->streaming_mode == CAM_STREAMING_MODE_BATCH) { in clean_invalidate_buf() 285 if (stream->mStreamInfo->is_secure == SECURE){ in clean_buf() 289 if (stream->mStreamInfo->streaming_mode == CAM_STREAMING_MODE_BATCH) { in clean_buf() [all …]
|
D | QCameraStream.h | 167 cam_stream_info_t *mStreamInfo; // ptr to stream info buf variable
|
/hardware/qcom/camera/msm8998/QCamera2/HAL3/ |
D | QCamera3Stream.cpp | 287 mStreamInfo(NULL), in QCamera3Stream() 411 mStreamInfo = in init() 413 memset(mStreamInfo, 0, sizeof(cam_stream_info_t)); in init() 414 mStreamInfo->stream_type = streamType; in init() 415 mStreamInfo->fmt = streamFormat; in init() 416 mStreamInfo->dim = streamDim; in init() 417 mStreamInfo->num_bufs = minNumBuffers; in init() 418 mStreamInfo->pp_config.feature_mask = postprocess_mask; in init() 419 mStreamInfo->is_type = is_type; in init() 420 mStreamInfo->pp_config.rotation = streamRotation; in init() [all …]
|
D | QCamera3Stream.h | 98 cam_stream_info_t* getStreamInfo() const {return mStreamInfo; }; in getStreamInfo() 102 void setBufStride(uint32_t stride) {mStreamInfo->buf_stride = stride;} in setBufStride() 109 cam_stream_info_t *mStreamInfo; // ptr to stream info buf variable
|
D | QCamera3HWI.cpp | 719 for (List<stream_info_t *>::iterator it = mStreamInfo.begin(); in ~QCamera3HardwareInterface() 720 it != mStreamInfo.end(); it++) { in ~QCamera3HardwareInterface() 739 for (List<stream_info_t *>::iterator it = mStreamInfo.begin(); in ~QCamera3HardwareInterface() 740 it != mStreamInfo.end(); it++) { in ~QCamera3HardwareInterface() 2173 for (List<stream_info_t*>::iterator it = mStreamInfo.begin(); in configureStreamsPerfLocked() 2174 it != mStreamInfo.end(); it++) { in configureStreamsPerfLocked() 2299 for (List<stream_info_t*>::iterator it=mStreamInfo.begin(); in configureStreamsPerfLocked() 2300 it != mStreamInfo.end(); it++) { in configureStreamsPerfLocked() 2326 mStreamInfo.push_back(stream_info); in configureStreamsPerfLocked() 2899 for (List<stream_info_t*>::iterator it=mStreamInfo.begin(); in configureStreamsPerfLocked() [all …]
|
D | QCamera3HWI.h | 687 List<stream_info_t*> mStreamInfo; variable
|
/hardware/google/av/media/codecs/aac/ |
D | C2SoftAacDec.cpp | 243 mStreamInfo(nullptr), in C2SoftAacDec() 268 mStreamInfo->sampleRate = 0; // TODO: mStreamInfo is read only in onStop() 295 mStreamInfo = aacDecoder_GetStreamInfo(mAACDecoder); in initDecoder() 296 if (mStreamInfo != nullptr) { in initDecoder() 316 mDrcWrap.submitStreamData(mStreamInfo); in initDecoder() 444 >= mStreamInfo->frameSize * mStreamInfo->numChannels) { in drainRingBuffer() 447 int samplesize __unused = mStreamInfo->numChannels * sizeof(int16_t); in drainRingBuffer() 451 int numSamples = numFrames * (mStreamInfo->frameSize * mStreamInfo->numChannels); in drainRingBuffer() 645 INT prevSampleRate = mStreamInfo->sampleRate; in process() 646 INT prevNumChannels = mStreamInfo->numChannels; in process() [all …]
|
D | C2SoftAacDec.h | 55 CStreamInfo *mStreamInfo; member
|
/hardware/google/av/media/codecs/flac/ |
D | C2SoftFlacDec.cpp | 119 memset(&mStreamInfo, 0, sizeof(mStreamInfo)); in onStop() 152 memset(&mStreamInfo, 0, sizeof(mStreamInfo)); in initDecoder() 235 mStreamInfo = mFLACDecoder->getStreamInfo(); in process() 236 if (mStreamInfo.sample_rate && mStreamInfo.max_blocksize && in process() 237 mStreamInfo.channels) { in process() 240 0u, mStreamInfo.sample_rate); in process() 242 0u, mStreamInfo.channels); in process() 260 " %d block size", mStreamInfo.sample_rate, mStreamInfo.channels, in process() 261 (int)mStreamInfo.total_samples, mStreamInfo.max_blocksize); in process() 268 outSize = mStreamInfo.max_blocksize * mStreamInfo.channels * sizeof(short); in process()
|
D | C2SoftFlacDec.h | 53 FLAC__StreamMetadata_StreamInfo mStreamInfo; member
|