Welcome to mirror list, hosted at ThFree Co, Russian Federation.

adaptive_rans_bit_encoder.cc « bit_coders « compression « draco « src « draco « draco « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ce9dc388b85c821f4e33e96df647b107e78075f (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
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright 2016 The Draco Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#include "draco/compression/bit_coders/adaptive_rans_bit_encoder.h"

#include "draco/compression/bit_coders/adaptive_rans_bit_coding_shared.h"

namespace draco {

AdaptiveRAnsBitEncoder::AdaptiveRAnsBitEncoder() {}

AdaptiveRAnsBitEncoder::~AdaptiveRAnsBitEncoder() { Clear(); }

void AdaptiveRAnsBitEncoder::StartEncoding() { Clear(); }

void AdaptiveRAnsBitEncoder::EndEncoding(EncoderBuffer *target_buffer) {
  // Buffer for ans to write.
  std::vector<uint8_t> buffer(bits_.size() + 16);
  AnsCoder ans_coder;
  ans_write_init(&ans_coder, buffer.data());

  // Unfortunately we have to encode the bits in reversed order, while the
  // probabilities that should be given are those of the forward sequence.
  double p0_f = 0.5;
  std::vector<uint8_t> p0s;
  p0s.reserve(bits_.size());
  for (bool b : bits_) {
    p0s.push_back(clamp_probability(p0_f));
    p0_f = update_probability(p0_f, b);
  }
  auto bit = bits_.rbegin();
  auto pit = p0s.rbegin();
  while (bit != bits_.rend()) {
    rabs_write(&ans_coder, *bit, *pit);
    ++bit;
    ++pit;
  }

  const uint32_t size_in_bytes = ans_write_end(&ans_coder);
  target_buffer->Encode(size_in_bytes);
  target_buffer->Encode(buffer.data(), size_in_bytes);

  Clear();
}

void AdaptiveRAnsBitEncoder::Clear() { bits_.clear(); }

}  // namespace draco