• Home
  • Raw
  • Download

Lines Matching refs:streamInfo

5237     const cam_stream_info_t* streamInfo = stream->getStreamInfo();  in fillPbStreamConfig()  local
5238 if (streamInfo == nullptr) { in fillPbStreamConfig()
5244 config->image.width = streamInfo->dim.width; in fillPbStreamConfig()
5245 config->image.height = streamInfo->dim.height; in fillPbStreamConfig()
5250 switch (streamInfo->fmt) { in fillPbStreamConfig()
5261 ALOGE("%s: Stream format %d not supported.", __FUNCTION__, streamInfo->fmt); in fillPbStreamConfig()
5268 for (uint32_t i = 0; i < streamInfo->buf_planes.plane_info.num_planes; i++) { in fillPbStreamConfig()
5270 plane.stride = streamInfo->buf_planes.plane_info.mp[i].stride * bytesPerPixel; in fillPbStreamConfig()
5271 plane.scanline = streamInfo->buf_planes.plane_info.mp[i].scanline; in fillPbStreamConfig()
5277 config->image.padding = streamInfo->buf_planes.plane_info.frame_len - totalPlaneSize; in fillPbStreamConfig()
9059 for (auto streamInfo : mStreamInfo) { in cleanAndSortStreamInfo() local
9060 streamInfo->id = id++; in cleanAndSortStreamInfo()
15729 for (auto streamInfo : mStreamInfo) { in abortPendingHdrplusRequest() local
15730 if (streamInfo->id == outputBufferIter.first) { in abortPendingHdrplusRequest()
15731 if (streamInfo->channel == mPictureChannel) { in abortPendingHdrplusRequest()
15737 streamInfo->channel->unregisterBuffer(outputBufferIter.second.get()); in abortPendingHdrplusRequest()
15825 for (auto streamInfo : mStreamInfo) { in trySubmittingHdrPlusRequestLocked() local
15826 if (streamInfo->stream == request.output_buffers[i].stream) { in trySubmittingHdrPlusRequestLocked()
15827 pbStreamId = streamInfo->id; in trySubmittingHdrPlusRequestLocked()
16022 for (auto streamInfo : mStreamInfo) { in isSessionHdrPlusModeCompatible() local
16023 if (streamInfo != nullptr && streamInfo->stream != nullptr) { in isSessionHdrPlusModeCompatible()
16024 if (streamInfo->stream->stream_type == CAMERA3_STREAM_OUTPUT && in isSessionHdrPlusModeCompatible()
16025 (streamInfo->stream->format == HAL_PIXEL_FORMAT_BLOB || in isSessionHdrPlusModeCompatible()
16026 streamInfo->stream->format == HAL_PIXEL_FORMAT_YCbCr_420_888 || in isSessionHdrPlusModeCompatible()
16027 streamInfo->stream->format == HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED)) { in isSessionHdrPlusModeCompatible()
16063 for (auto streamInfo : mStreamInfo) { in configureHdrPlusStreamsLocked() local
16065 if (streamInfo->stream->stream_type == CAMERA3_STREAM_OUTPUT) { in configureHdrPlusStreamsLocked()
16066 switch (streamInfo->stream->format) { in configureHdrPlusStreamsLocked()
16070 res = fillPbStreamConfig(&outputConfig, streamInfo->id, in configureHdrPlusStreamsLocked()
16071 streamInfo->channel, /*stream index*/0); in configureHdrPlusStreamsLocked()