blob: e07907917b8631c52cd3367f6ba8a2c00388c04e [file] [log] [blame]
phoglund37ebcf02016-01-08 05:04:57 -08001/*
ossu7bb87ee2017-01-23 04:56:25 -08002 * Copyright 2017 The WebRTC project authors. All Rights Reserved.
phoglund37ebcf02016-01-08 05:04:57 -08003 *
kjellanderb24317b2016-02-10 07:54:43 -08004 * 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 05:04:57 -08009 */
10
Steve Anton10542f22019-01-11 09:11:00 -080011#include "api/media_stream_interface.h"
Niels Möller6dcd4dc2019-08-26 10:45:28 +020012#include "api/media_types.h"
phoglund37ebcf02016-01-08 05:04:57 -080013
14namespace webrtc {
15
Niels Möller6dcd4dc2019-08-26 10:45:28 +020016const char* const MediaStreamTrackInterface::kVideoKind =
17 cricket::kMediaTypeVideo;
18const char* const MediaStreamTrackInterface::kAudioKind =
19 cricket::kMediaTypeAudio;
phoglund37ebcf02016-01-08 05:04:57 -080020
Danil Chapovalov2a5ce2b2018-02-07 09:38:31 +010021VideoTrackInterface::ContentHint VideoTrackInterface::content_hint() const {
22 return ContentHint::kNone;
23}
24
25bool AudioTrackInterface::GetSignalLevel(int* level) {
26 return false;
27}
28
29rtc::scoped_refptr<AudioProcessorInterface>
30AudioTrackInterface::GetAudioProcessor() {
31 return nullptr;
32}
33
Piotr (Peter) Slatala95ca6e12018-11-13 07:57:07 -080034const cricket::AudioOptions AudioSourceInterface::options() const {
35 return {};
36}
37
phoglund37ebcf02016-01-08 05:04:57 -080038} // namespace webrtc