forked from google/lyra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gilbert_model.cc
81 lines (70 loc) · 2.61 KB
/
gilbert_model.cc
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// Copyright 2021 Google LLC
//
// 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 "gilbert_model.h"
#include <memory>
#include <random>
#include "glog/logging.h"
#include "absl/memory/memory.h"
namespace chromemedia {
namespace codec {
std::unique_ptr<GilbertModel> GilbertModel::Create(float packet_loss_rate,
float average_burst_length,
bool random_seed) {
if (average_burst_length < 1.f) {
LOG(ERROR) << "Average Burst Length has to be at least 1, but was "
<< average_burst_length << ".";
return nullptr;
}
if (packet_loss_rate < 0.f) {
LOG(ERROR) << "Packet Loss Rate has to be positive, but was "
<< packet_loss_rate << ".";
return nullptr;
}
if (packet_loss_rate > average_burst_length / (average_burst_length + 1.f)) {
LOG(ERROR) << "Packet Loss Rate cannot be larger than "
<< "average_burst_length/(average_burst_length+1)="
<< average_burst_length / (average_burst_length + 1.f)
<< ", but was " << packet_loss_rate << ".";
return nullptr;
}
unsigned int seed = 5489u;
if (random_seed) {
std::random_device rd;
seed = rd();
}
return absl::WrapUnique(new GilbertModel(
packet_loss_rate / (average_burst_length * (1.f - packet_loss_rate)),
1.f / average_burst_length, seed));
}
GilbertModel::GilbertModel(float received2lost_probability,
float lost2received_probability, unsigned int seed)
: received2lost_probability_(received2lost_probability),
lost2received_probability_(lost2received_probability),
is_packet_received_(true),
gen_(seed) {}
bool GilbertModel::IsPacketReceived() {
bool current_packet_received = is_packet_received_;
if (is_packet_received_) {
if (prob_(gen_) < received2lost_probability_) {
is_packet_received_ = false;
}
} else {
if (prob_(gen_) < lost2received_probability_) {
is_packet_received_ = true;
}
}
return current_packet_received;
}
} // namespace codec
} // namespace chromemedia