Home | History | Annotate | Download | only in api2

Lines Matching defs:streamInfo

650     OutputStreamInfo streamInfo;
664 res = createSurfaceFromGbp(streamInfo, isStreamInfoValid, surface, bufferProducer);
679 err = mDevice->createStream(surfaces, deferredConsumer, streamInfo.width,
680 streamInfo.height, streamInfo.format, streamInfo.dataSpace,
688 mCameraIdStr.string(), streamInfo.width, streamInfo.height, streamInfo.format,
689 streamInfo.dataSpace, strerror(-err), err);
700 mStreamInfoMap[streamId] = streamInfo;
704 __FUNCTION__, mCameraIdStr.string(), streamId, streamInfo.width,
705 streamInfo.height, streamInfo.format);
1023 OutputStreamInfo& streamInfo, bool isStreamInfoValid,
1110 streamInfo.width = width;
1111 streamInfo.height = height;
1112 streamInfo.format = format;
1113 streamInfo.dataSpace = dataSpace;
1114 streamInfo.consumerUsage = consumerUsage;
1117 if (width != streamInfo.width) {
1119 mCameraIdStr.string(), width, streamInfo.width);
1123 if (height != streamInfo.height) {
1125 mCameraIdStr.string(), height, streamInfo.height);
1129 if (format != streamInfo.format) {
1131 mCameraIdStr.string(), format, streamInfo.format);
1136 if (dataSpace != streamInfo.dataSpace) {
1138 mCameraIdStr.string(), dataSpace, streamInfo.dataSpace);
1144 if (consumerUsage != streamInfo.consumerUsage) {
1147 mCameraIdStr.string(), consumerUsage, streamInfo.consumerUsage);