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

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

#include "api/audio_codecs/audio_format.h"
#include "modules/audio_coding/neteq/decoder_database.h"
#include "rtc_base/checks.h"

namespace webrtc {

void TimestampScaler::Reset() {}

void TimestampScaler::ToInternal(Packet* packet) {}

void TimestampScaler::ToInternal(PacketList* packet_list) {}

uint32_t TimestampScaler::ToInternal(uint32_t external_timestamp,
                                     uint8_t rtp_payload_type) {}

uint32_t TimestampScaler::ToExternal(uint32_t internal_timestamp) const {}

}  // namespace webrtc