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 cae56b386273c56fe00385d841fa3fa5849886cb..a6be3e8f5ecb2eda5e4153548bc20e28ff137a94 100644 |
| --- a/webrtc/modules/audio_coding/neteq/include/neteq.h |
| +++ b/webrtc/modules/audio_coding/neteq/include/neteq.h |
| @@ -252,6 +252,10 @@ class NetEq { |
| // (Config::sample_rate_hz) is returned. |
| virtual int last_output_sample_rate_hz() const = 0; |
| + // Return info about the decoder for the given payload type, or an empty |
|
hlundin-webrtc
2016/09/19 12:22:03
nit: Returns
kwiberg-webrtc
2016/09/20 08:15:02
I wonder how long I'll have to work on this code b
|
| + // value if we have no decoder for that payload type. |
| + virtual rtc::Optional<CodecInst> GetDecoder(int payload_type) const = 0; |
| + |
| // Not implemented. |
| virtual int SetTargetNumberOfChannels() = 0; |