blob: 36dd0f193ded9754d9d756fb3ce2a74398049890 [file] [log] [blame]
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef REMOTING_PROTOCOL_CLIENT_VIDEO_DISPATCHER_H_
#define REMOTING_PROTOCOL_CLIENT_VIDEO_DISPATCHER_H_
#include <list>
#include "base/compiler_specific.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "remoting/base/constants.h"
#include "remoting/protocol/channel_dispatcher_base.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h"
namespace remoting::protocol {
class ClientStub;
class VideoStub;
class ClientVideoDispatcher : public ChannelDispatcherBase {
public:
ClientVideoDispatcher(VideoStub* video_stub, ClientStub* client_stub);
ClientVideoDispatcher(const ClientVideoDispatcher&) = delete;
ClientVideoDispatcher& operator=(const ClientVideoDispatcher&) = delete;
~ClientVideoDispatcher() override;
private:
struct PendingFrame;
typedef std::list<PendingFrame> PendingFramesList;
void OnIncomingMessage(std::unique_ptr<CompoundBuffer> message) override;
// Callback for VideoStub::ProcessVideoPacket().
void OnPacketDone(PendingFramesList::iterator pending_frame);
PendingFramesList pending_frames_;
raw_ptr<VideoStub> video_stub_;
raw_ptr<ClientStub> client_stub_;
webrtc::DesktopSize screen_size_;
webrtc::DesktopVector screen_dpi_ =
webrtc::DesktopVector(kDefaultDpi, kDefaultDpi);
base::WeakPtrFactory<ClientVideoDispatcher> weak_factory_{this};
};
} // namespace remoting::protocol
#endif // REMOTING_PROTOCOL_CLIENT_VIDEO_DISPATCHER_H_