Lines Matching defs:streamInfoVideo
846 StreamInfo streamInfoVideo = {};
847 streamInfoVideo.streamId_ = cameraBase_->STREAM_ID_VIDEO;
848 streamInfoVideo.width_ = 1280; // 1280:picture width
849 streamInfoVideo.height_ = 960; // 960:picture height
850 streamInfoVideo.format_ = PIXEL_FMT_RGBA_8888;
851 streamInfoVideo.dataspace_ = 8; // 8:picture dataspace
852 streamInfoVideo.intent_ = VIDEO;
853 streamInfoVideo.encodeType_ = ENCODE_TYPE_H264;
854 streamInfoVideo.tunneledMode_ = 5; // 5:tunnel mode
855 streamInfoVideo.bufferQueue_ = new BufferProducerSequenceable(cameraBase_->streamCustomerVideo_->CreateProducer());
856 ASSERT_NE(streamInfoVideo.bufferQueue_, nullptr);
857 streamInfoVideo.bufferQueue_->producer_->SetQueueSize(8); // 8:set bufferQueue size
858 streamInfos.push_back(streamInfoVideo);