chromium/third_party/webrtc/modules/audio_coding/neteq/reorder_optimizer.cc

/*
 *  Copyright (c) 2021 The WebRTC 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 in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#include "modules/audio_coding/neteq/reorder_optimizer.h"

#include <algorithm>
#include <limits>
#include <vector>

namespace webrtc {

namespace {

constexpr int kDelayBuckets =;
constexpr int kBucketSizeMs =;

}  // namespace

ReorderOptimizer::ReorderOptimizer(int forget_factor,
                                   int ms_per_loss_percent,
                                   absl::optional<int> start_forget_weight)
    :{}

void ReorderOptimizer::Update(int relative_delay_ms,
                              bool reordered,
                              int base_delay_ms) {}

void ReorderOptimizer::Reset() {}

int ReorderOptimizer::MinimizeCostFunction(int base_delay_ms) const {}

}  // namespace webrtc