2016-01-08 05:04:57 -08:00
|
|
|
/*
|
2017-01-23 04:56:25 -08:00
|
|
|
* Copyright 2017 The WebRTC project authors. All Rights Reserved.
|
2016-01-08 05:04:57 -08:00
|
|
|
*
|
2016-02-10 07:54:43 -08:00
|
|
|
* 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.
|
2016-01-08 05:04:57 -08:00
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "api/mediastreaminterface.h"
|
2017-12-12 10:45:51 +01:00
|
|
|
#include "rtc_base/checks.h"
|
|
|
|
|
#include "rtc_base/logging.h"
|
2016-01-08 05:04:57 -08:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
2017-01-23 04:56:25 -08:00
|
|
|
const char MediaStreamTrackInterface::kVideoKind[] = "video";
|
|
|
|
|
const char MediaStreamTrackInterface::kAudioKind[] = "audio";
|
2016-01-08 05:04:57 -08:00
|
|
|
|
2018-02-07 09:38:31 +01:00
|
|
|
VideoTrackInterface::ContentHint VideoTrackInterface::content_hint() const {
|
|
|
|
|
return ContentHint::kNone;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool AudioTrackInterface::GetSignalLevel(int* level) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rtc::scoped_refptr<AudioProcessorInterface>
|
|
|
|
|
AudioTrackInterface::GetAudioProcessor() {
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-08 05:04:57 -08:00
|
|
|
} // namespace webrtc
|