1*d9f75844SAndroid Build Coastguard Worker /* 2*d9f75844SAndroid Build Coastguard Worker * Copyright 2017 The WebRTC project authors. All Rights Reserved. 3*d9f75844SAndroid Build Coastguard Worker * 4*d9f75844SAndroid Build Coastguard Worker * Use of this source code is governed by a BSD-style license 5*d9f75844SAndroid Build Coastguard Worker * that can be found in the LICENSE file in the root of the source 6*d9f75844SAndroid Build Coastguard Worker * tree. An additional intellectual property rights grant can be found 7*d9f75844SAndroid Build Coastguard Worker * in the file PATENTS. All contributing project authors may 8*d9f75844SAndroid Build Coastguard Worker * be found in the AUTHORS file in the root of the source tree. 9*d9f75844SAndroid Build Coastguard Worker */ 10*d9f75844SAndroid Build Coastguard Worker 11*d9f75844SAndroid Build Coastguard Worker #include "api/media_stream_interface.h" 12*d9f75844SAndroid Build Coastguard Worker #include "api/media_types.h" 13*d9f75844SAndroid Build Coastguard Worker 14*d9f75844SAndroid Build Coastguard Worker namespace webrtc { 15*d9f75844SAndroid Build Coastguard Worker 16*d9f75844SAndroid Build Coastguard Worker const char* const MediaStreamTrackInterface::kVideoKind = 17*d9f75844SAndroid Build Coastguard Worker cricket::kMediaTypeVideo; 18*d9f75844SAndroid Build Coastguard Worker const char* const MediaStreamTrackInterface::kAudioKind = 19*d9f75844SAndroid Build Coastguard Worker cricket::kMediaTypeAudio; 20*d9f75844SAndroid Build Coastguard Worker content_hint() const21*d9f75844SAndroid Build Coastguard WorkerVideoTrackInterface::ContentHint VideoTrackInterface::content_hint() const { 22*d9f75844SAndroid Build Coastguard Worker return ContentHint::kNone; 23*d9f75844SAndroid Build Coastguard Worker } 24*d9f75844SAndroid Build Coastguard Worker GetSignalLevel(int * level)25*d9f75844SAndroid Build Coastguard Workerbool AudioTrackInterface::GetSignalLevel(int* level) { 26*d9f75844SAndroid Build Coastguard Worker return false; 27*d9f75844SAndroid Build Coastguard Worker } 28*d9f75844SAndroid Build Coastguard Worker 29*d9f75844SAndroid Build Coastguard Worker rtc::scoped_refptr<AudioProcessorInterface> GetAudioProcessor()30*d9f75844SAndroid Build Coastguard WorkerAudioTrackInterface::GetAudioProcessor() { 31*d9f75844SAndroid Build Coastguard Worker return nullptr; 32*d9f75844SAndroid Build Coastguard Worker } 33*d9f75844SAndroid Build Coastguard Worker options() const34*d9f75844SAndroid Build Coastguard Workerconst cricket::AudioOptions AudioSourceInterface::options() const { 35*d9f75844SAndroid Build Coastguard Worker return {}; 36*d9f75844SAndroid Build Coastguard Worker } 37*d9f75844SAndroid Build Coastguard Worker 38*d9f75844SAndroid Build Coastguard Worker } // namespace webrtc 39