forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
video_encoder_active_map.h
48 lines (32 loc) · 1.37 KB
/
video_encoder_active_map.h
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Copyright 2022 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_CODEC_VIDEO_ENCODER_ACTIVE_MAP_H_
#define REMOTING_CODEC_VIDEO_ENCODER_ACTIVE_MAP_H_
#include <memory>
#include <stdint.h>
#include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_region.h"
namespace remoting {
class VideoEncoderActiveMap {
public:
VideoEncoderActiveMap();
VideoEncoderActiveMap(const VideoEncoderActiveMap&) = delete;
VideoEncoderActiveMap& operator=(const VideoEncoderActiveMap&) = delete;
~VideoEncoderActiveMap();
// Initializes |active_map_| for an image of |size|.
void Initialize(const webrtc::DesktopSize& size);
// Clears |active_map_| without resetting the size.
void Clear();
// Updates the active map according to |updated_region|.
void Update(const webrtc::DesktopRegion& updated_region);
uint8_t* data() { return active_map_.get(); }
uint32_t width() { return active_map_size_.width(); }
uint32_t height() { return active_map_size_.height(); }
private:
// Active map used to optimize out processing of unchanged macroblocks.
std::unique_ptr<uint8_t[]> active_map_;
webrtc::DesktopSize active_map_size_;
};
} // namespace remoting
#endif // REMOTING_CODEC_VIDEO_ENCODER_ACTIVE_MAP_H_