chromium/third_party/webrtc/pc/audio_track.cc

/*
 *  Copyright 2011 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 "pc/audio_track.h"

#include "rtc_base/checks.h"

namespace webrtc {

// static
rtc::scoped_refptr<AudioTrack> AudioTrack::Create(
    absl::string_view id,
    const rtc::scoped_refptr<AudioSourceInterface>& source) {}

AudioTrack::AudioTrack(absl::string_view label,
                       const rtc::scoped_refptr<AudioSourceInterface>& source)
    :{}

AudioTrack::~AudioTrack() {}

std::string AudioTrack::kind() const {}

AudioSourceInterface* AudioTrack::GetSource() const {}

void AudioTrack::AddSink(AudioTrackSinkInterface* sink) {}

void AudioTrack::RemoveSink(AudioTrackSinkInterface* sink) {}

void AudioTrack::OnChanged() {}

}  // namespace webrtc