blob: e07907917b8631c52cd3367f6ba8a2c00388c04e [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"
Niels Möller6dcd4dc2019-08-26 08:45:2812#include "api/media_types.h"
phoglund37ebcf02016-01-08 13:04:5713
14namespace webrtc {
15
Niels Möller6dcd4dc2019-08-26 08:45:2816const char* const MediaStreamTrackInterface::kVideoKind =
17 cricket::kMediaTypeVideo;
18const char* const MediaStreamTrackInterface::kAudioKind =
19 cricket::kMediaTypeAudio;
phoglund37ebcf02016-01-08 13:04:5720
Danil Chapovalov2a5ce2b2018-02-07 08:38:3121VideoTrackInterface::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 15:57:0734const cricket::AudioOptions AudioSourceInterface::options() const {
35 return {};
36}
37
phoglund37ebcf02016-01-08 13:04:5738} // namespace webrtc