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

/*
 *  Copyright (c) 2014 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/constant_pcm_packet_source.h"

#include <algorithm>

#include "modules/audio_coding/codecs/pcm16b/pcm16b.h"
#include "modules/audio_coding/neteq/tools/packet.h"
#include "rtc_base/checks.h"

namespace webrtc {
namespace test {

ConstantPcmPacketSource::ConstantPcmPacketSource(size_t payload_len_samples,
                                                 int16_t sample_value,
                                                 int sample_rate_hz,
                                                 int payload_type)
    :{}

std::unique_ptr<Packet> ConstantPcmPacketSource::NextPacket() {}

void ConstantPcmPacketSource::WriteHeader(uint8_t* packet_memory) {}

}  // namespace test
}  // namespace webrtc