Chromium Code Reviews| Index: webrtc/modules/audio_coding/neteq/include/neteq.h |
| diff --git a/webrtc/modules/audio_coding/neteq/include/neteq.h b/webrtc/modules/audio_coding/neteq/include/neteq.h |
| index 88677d83558735a7643e57f89d9971ec16537b9b..0856f8f802b82a08bd4edb04ebcbc2cb846e0ff6 100644 |
| --- a/webrtc/modules/audio_coding/neteq/include/neteq.h |
| +++ b/webrtc/modules/audio_coding/neteq/include/neteq.h |
| @@ -181,10 +181,12 @@ class NetEq { |
| // Provides an externally created decoder object |decoder| to insert in the |
| // decoder database. The decoder implements a decoder of type |codec| and |
| - // associates it with |rtp_payload_type|. The decoder will produce samples |
| - // at the rate |sample_rate_hz|. Returns kOK on success, kFail on failure. |
| + // associates it with |rtp_payload_type| and |codec_name|. The decoder will |
| + // produce samples at the rate |sample_rate_hz|. Returns kOK on success, kFail |
| + // on failure. |
|
kwiberg-webrtc
2015/12/02 09:50:42
You don't explain what the name is used for. Will
hlundin-webrtc
2015/12/02 16:19:24
Done.
|
| virtual int RegisterExternalDecoder(AudioDecoder* decoder, |
| NetEqDecoder codec, |
| + const std::string& codec_name, |
| uint8_t rtp_payload_type, |
| int sample_rate_hz) = 0; |