Home
last modified time | relevance | path

Searched refs:streamInfo_video (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/drivers/peripheral/camera/test/mpi/src/
H A Dresolution_test.cpp190 Test_->streamInfo_video->streamId_ = Test_->streamId_video;
194 Test_->streamInfo_video->format_ = IMAGE_PIXEL_FORMAT_NV21;
196 Test_->streamInfo_video->format_ = PIXEL_FMT_YCRCB_420_SP;
199 Test_->streamInfo_video->intent_ = Camera::VIDEO;
200 Test_->streamInfo_video->encodeType_ = ENCODE_TYPE_H265;
217 Test_->streamInfos.push_back(Test_->streamInfo_video);
297 Test_->streamInfo_video->streamId_ = Test_->streamId_video;
303 Test_->streamInfo_video->format_ = PIXEL_FMT_YCRCB_420_SP;
306 Test_->streamInfo_video->intent_ = Camera::VIDEO;
307 Test_->streamInfo_video->encodeType_ = ENCODE_TYPE_H265;
[all …]
H A Dcommon.cpp274 streamInfo_video = std::make_shared<Camera::StreamInfo>(); in StartStream()
300 streamInfo_video->streamId_ = streamId_video; in StartStream()
301 streamInfo_video->width_ = 1280; // 1280:width of stream in StartStream()
302 streamInfo_video->height_ = 960; // 960: height of stream in StartStream()
303 streamInfo_video->dataspace_ = 8; // 8:dataspace of stream in StartStream()
304 streamInfo_video->intent_ = intent; in StartStream()
305 streamInfo_video->encodeType_ = ENCODE_TYPE_H265; in StartStream()
306 streamInfo_video->tunneledMode_ = 5; // 5:tunneledMode of stream in StartStream()
308 streamInfo_video->format_ = IMAGE_PIXEL_FORMAT_NV21; in StartStream()
310 streamInfo_video->format_ = PIXEL_FMT_YCRCB_420_SP; in StartStream()
[all …]
/ohos5.0/drivers/peripheral/camera/test/mpi/include/
H A Dcommon.h88 std::shared_ptr<OHOS::Camera::StreamInfo> streamInfo_video = nullptr; variable