Chromium Code Reviews| Index: webrtc/api/call/audio_send_stream.h |
| diff --git a/webrtc/api/call/audio_send_stream.h b/webrtc/api/call/audio_send_stream.h |
| index b309f7a221c6c07298f0a13133dfbb2389a5b746..f7b13cbd6b0e1afbecc21d6314ebf89af7e299f2 100644 |
| --- a/webrtc/api/call/audio_send_stream.h |
| +++ b/webrtc/api/call/audio_send_stream.h |
| @@ -111,6 +111,13 @@ class AudioSendStream { |
| virtual Stats GetStats() const = 0; |
| + virtual bool EnableAudioNetworkAdaptor(const std::string& config_string) = 0; |
|
the sun
2016/10/06 08:03:46
One of the major ideas with the new API is to have
minyue-webrtc
2016/10/06 08:16:53
Actually, this is audio network adaptor is a codec
|
| + |
| + virtual void DisableAudioNetworkAdaptor() = 0; |
| + |
| + virtual void SetReceiverFrameLengthRange(int min_frame_length_ms, |
| + int max_frame_length_ms) = 0; |
| + |
| protected: |
| virtual ~AudioSendStream() {} |
| }; |