blob: 0005a4ae1c96299ac34f09e567d56a6a03cb067a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef REMOTING_CODEC_VIDEO_ENCODER_VERBATIM_H_
#define REMOTING_CODEC_VIDEO_ENCODER_VERBATIM_H_
#include "remoting/codec/video_encoder.h"
#include "remoting/codec/video_encoder_helper.h"
namespace remoting {
// VideoEncoderVerbatim implements a VideoEncoder that sends image data as a
// sequence of RGB values, without compression.
class VideoEncoderVerbatim : public VideoEncoder {
public:
VideoEncoderVerbatim();
virtual ~VideoEncoderVerbatim();
// VideoEncoder interface.
virtual scoped_ptr<VideoPacket> Encode(
const webrtc::DesktopFrame& frame) OVERRIDE;
private:
VideoEncoderHelper helper_;
DISALLOW_COPY_AND_ASSIGN(VideoEncoderVerbatim);
};
} // namespace remoting
#endif // REMOTING_CODEC_VIDEO_ENCODER_VERBATIM_H_
|