Chromium Code Reviews| Index: webrtc/modules/audio_coding/include/audio_coding_module.h |
| diff --git a/webrtc/modules/audio_coding/include/audio_coding_module.h b/webrtc/modules/audio_coding/include/audio_coding_module.h |
| index 844bd57cd19a81d8f516cc361e519f26adf6531b..f36732f8a2191a526c1dd6efeb8892a1ee0a9372 100644 |
| --- a/webrtc/modules/audio_coding/include/audio_coding_module.h |
| +++ b/webrtc/modules/audio_coding/include/audio_coding_module.h |
| @@ -11,6 +11,7 @@ |
| #ifndef WEBRTC_MODULES_AUDIO_CODING_INCLUDE_AUDIO_CODING_MODULE_H_ |
| #define WEBRTC_MODULES_AUDIO_CODING_INCLUDE_AUDIO_CODING_MODULE_H_ |
| +#include <string> |
| #include <vector> |
| #include "webrtc/base/optional.h" |
| @@ -474,7 +475,8 @@ class AudioCodingModule { |
| virtual int RegisterExternalReceiveCodec(int rtp_payload_type, |
| AudioDecoder* external_decoder, |
| int sample_rate_hz, |
| - int num_channels) = 0; |
| + int num_channels, |
| + const std::string& name) = 0; |
|
kwiberg-webrtc
2015/12/02 09:50:42
You don't explain what the name is used for. (This
hlundin-webrtc
2015/12/02 16:19:24
Done.
|
| /////////////////////////////////////////////////////////////////////////// |
| // int32_t UnregisterReceiveCodec() |