blob: 2d974c9987a386fe1f108eb0f43a83db9b0ddb2c (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// Copyright (c) the JPEG XL Project 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 LIB_JXL_DEC_GROUP_BORDER_H_
#define LIB_JXL_DEC_GROUP_BORDER_H_
#include <stddef.h>
#include <atomic>
#include "lib/jxl/base/arch_macros.h"
#include "lib/jxl/base/status.h"
#include "lib/jxl/common.h"
#include "lib/jxl/image.h"
namespace jxl {
class GroupBorderAssigner {
public:
// Prepare the GroupBorderAssigner to handle a given frame.
void Init(const FrameDimensions& frame_dim);
// Marks a group as done, and returns the (at most 3) rects to run
// FinalizeImageRect on. `block_rect` must be the rect corresponding
// to the given `group_id`, measured in blocks.
void GroupDone(size_t group_id, size_t padx, size_t pady,
Rect* rects_to_finalize, size_t* num_to_finalize);
// Marks a group as not-done, for running re-paints.
void ClearDone(size_t group_id);
static constexpr size_t kMaxToFinalize = 3;
private:
FrameDimensions frame_dim_;
std::unique_ptr<std::atomic<uint8_t>[]> counters_;
// Constants to identify group positions relative to the corners.
static constexpr uint8_t kTopLeft = 0x01;
static constexpr uint8_t kTopRight = 0x02;
static constexpr uint8_t kBottomRight = 0x04;
static constexpr uint8_t kBottomLeft = 0x08;
};
} // namespace jxl
#endif // LIB_JXL_DEC_GROUP_BORDER_H_
|