Lines Matching refs:streamInfo

5244     const cam_stream_info_t* streamInfo = stream->getStreamInfo();  in fillPbStreamConfig()  local
5245 if (streamInfo == nullptr) { in fillPbStreamConfig()
5251 config->image.width = streamInfo->dim.width; in fillPbStreamConfig()
5252 config->image.height = streamInfo->dim.height; in fillPbStreamConfig()
5257 switch (streamInfo->fmt) { in fillPbStreamConfig()
5268 ALOGE("%s: Stream format %d not supported.", __FUNCTION__, streamInfo->fmt); in fillPbStreamConfig()
5275 for (uint32_t i = 0; i < streamInfo->buf_planes.plane_info.num_planes; i++) { in fillPbStreamConfig()
5277 plane.stride = streamInfo->buf_planes.plane_info.mp[i].stride * bytesPerPixel; in fillPbStreamConfig()
5278 plane.scanline = streamInfo->buf_planes.plane_info.mp[i].scanline; in fillPbStreamConfig()
5284 config->image.padding = streamInfo->buf_planes.plane_info.frame_len - totalPlaneSize; in fillPbStreamConfig()
9104 for (auto streamInfo : mStreamInfo) { in cleanAndSortStreamInfo() local
9105 streamInfo->id = id++; in cleanAndSortStreamInfo()
15818 for (auto streamInfo : mStreamInfo) { in abortPendingHdrplusRequest() local
15819 if (streamInfo->id == outputBufferIter.first) { in abortPendingHdrplusRequest()
15820 if (streamInfo->channel == mPictureChannel) { in abortPendingHdrplusRequest()
15826 streamInfo->channel->unregisterBuffer(outputBufferIter.second.get()); in abortPendingHdrplusRequest()
15914 for (auto streamInfo : mStreamInfo) { in trySubmittingHdrPlusRequestLocked() local
15915 if (streamInfo->stream == request.output_buffers[i].stream) { in trySubmittingHdrPlusRequestLocked()
15916 pbStreamId = streamInfo->id; in trySubmittingHdrPlusRequestLocked()
16129 for (auto streamInfo : mStreamInfo) { in isSessionHdrPlusModeCompatible() local
16130 if (streamInfo != nullptr && streamInfo->stream != nullptr) { in isSessionHdrPlusModeCompatible()
16131 if (streamInfo->stream->stream_type == CAMERA3_STREAM_OUTPUT && in isSessionHdrPlusModeCompatible()
16132 (streamInfo->stream->format == HAL_PIXEL_FORMAT_BLOB || in isSessionHdrPlusModeCompatible()
16133 streamInfo->stream->format == HAL_PIXEL_FORMAT_YCbCr_420_888 || in isSessionHdrPlusModeCompatible()
16134 streamInfo->stream->format == HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED)) { in isSessionHdrPlusModeCompatible()
16170 for (auto streamInfo : mStreamInfo) { in configureHdrPlusStreamsLocked() local
16172 if (streamInfo->stream->stream_type == CAMERA3_STREAM_OUTPUT) { in configureHdrPlusStreamsLocked()
16173 switch (streamInfo->stream->format) { in configureHdrPlusStreamsLocked()
16177 res = fillPbStreamConfig(&outputConfig, streamInfo->id, in configureHdrPlusStreamsLocked()
16178 streamInfo->channel, /*stream index*/0); in configureHdrPlusStreamsLocked()