chromium/third_party/webrtc/modules/audio_coding/neteq/tools/initial_packet_inserter_neteq_input.cc

/*
 *  Copyright (c) 2019 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/tools/initial_packet_inserter_neteq_input.h"

#include <limits>
#include <memory>
#include <utility>

#include "rtc_base/checks.h"

namespace webrtc {
namespace test {

InitialPacketInserterNetEqInput::InitialPacketInserterNetEqInput(
    std::unique_ptr<NetEqInput> source,
    int number_of_initial_packets,
    int sample_rate_hz)
    :{}

absl::optional<int64_t> InitialPacketInserterNetEqInput::NextPacketTime()
    const {}

absl::optional<int64_t> InitialPacketInserterNetEqInput::NextOutputEventTime()
    const {}

absl::optional<NetEqInput::SetMinimumDelayInfo>
InitialPacketInserterNetEqInput::NextSetMinimumDelayInfo() const {}

std::unique_ptr<InitialPacketInserterNetEqInput::PacketData>
InitialPacketInserterNetEqInput::PopPacket() {}

void InitialPacketInserterNetEqInput::AdvanceSetMinimumDelay() {}

void InitialPacketInserterNetEqInput::AdvanceOutputEvent() {}

bool InitialPacketInserterNetEqInput::ended() const {}

absl::optional<RTPHeader> InitialPacketInserterNetEqInput::NextHeader() const {}

}  // namespace test
}  // namespace webrtc