blob: 73566c4a2ff9e1baddfd13062ce48eafb4ba123b [file] [log] [blame]
phoglund37ebcf02016-01-08 13:04:571/*
ossu7bb87ee2017-01-23 12:56:252 * Copyright 2017 The WebRTC project authors. All Rights Reserved.
phoglund37ebcf02016-01-08 13:04:573 *
kjellanderb24317b2016-02-10 15:54:434 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
phoglund37ebcf02016-01-08 13:04:579 */
10
Steve Anton10542f22019-01-11 17:11:0011#include "api/media_stream_interface.h"
phoglund37ebcf02016-01-08 13:04:5712
13namespace webrtc {
14
ossu7bb87ee2017-01-23 12:56:2515const char MediaStreamTrackInterface::kVideoKind[] = "video";
16const char MediaStreamTrackInterface::kAudioKind[] = "audio";
phoglund37ebcf02016-01-08 13:04:5717
Danil Chapovalov2a5ce2b2018-02-07 08:38:3118VideoTrackInterface::ContentHint VideoTrackInterface::content_hint() const {
19 return ContentHint::kNone;
20}
21
22bool AudioTrackInterface::GetSignalLevel(int* level) {
23 return false;
24}
25
26rtc::scoped_refptr<AudioProcessorInterface>
27AudioTrackInterface::GetAudioProcessor() {
28 return nullptr;
29}
30
Piotr (Peter) Slatala95ca6e12018-11-13 15:57:0731const cricket::AudioOptions AudioSourceInterface::options() const {
32 return {};
33}
34
phoglund37ebcf02016-01-08 13:04:5735} // namespace webrtc