Home
last modified time | relevance | path

Searched refs:Streamer (Results 1 – 5 of 5) sorted by relevance

/device/google/cuttlefish/host/frontend/webrtc/libdevice/
Dstreamer.cpp139 class Streamer::Impl : public ServerConnectionObserver,
192 Streamer::Streamer(std::unique_ptr<Streamer::Impl> impl) in Streamer() function in cuttlefish::webrtc_streaming::Streamer
196 std::unique_ptr<Streamer> Streamer::Create( in Create()
201 std::unique_ptr<Streamer::Impl> impl(new Streamer::Impl()); in Create()
241 return std::unique_ptr<Streamer>(new Streamer(std::move(impl))); in Create()
244 std::shared_ptr<VideoSink> Streamer::AddDisplay(const std::string& label, in AddDisplay()
282 bool Streamer::RemoveDisplay(const std::string& label) { in RemoveDisplay()
299 bool Streamer::AddTouchpad(const std::string& label, int width, int height) { in AddTouchpad()
313 std::shared_ptr<AudioSink> Streamer::AddAudioStream(const std::string& label) { in AddAudioStream()
330 std::shared_ptr<AudioSource> Streamer::GetAudioSource() { in GetAudioSource()
[all …]
Dstreamer.h75 class Streamer {
80 static std::unique_ptr<Streamer> Create(
83 ~Streamer() = default;
132 Streamer(std::unique_ptr<Impl> impl);
/device/google/cuttlefish/host/frontend/webrtc/
Ddisplay_handler.h32 class Streamer; variable
37 DisplayHandler(webrtc_streaming::Streamer& streamer, int wayland_socket_fd,
48 webrtc_streaming::Streamer& streamer_;
Dmain.cpp78 using cuttlefish::webrtc_streaming::Streamer;
214 Streamer::Create(streamer_config, recording_manager, observer_factory); in main()
Ddisplay_handler.cpp30 DisplayHandler::DisplayHandler(webrtc_streaming::Streamer& streamer, in DisplayHandler()