Chromium Code Reviews| Index: webrtc/modules/audio_coding/codecs/opus/opus_inst.h |
| diff --git a/webrtc/modules/audio_coding/codecs/opus/opus_inst.h b/webrtc/modules/audio_coding/codecs/opus/opus_inst.h |
| index 373db392a6f3acbfeca4bca22f481aed56bffd82..de5e21aba4cc5ae8a005bfba3bef2de1898d03bf 100644 |
| --- a/webrtc/modules/audio_coding/codecs/opus/opus_inst.h |
| +++ b/webrtc/modules/audio_coding/codecs/opus/opus_inst.h |
| @@ -15,7 +15,11 @@ |
| struct WebRtcOpusEncInst { |
| OpusEncoder* encoder; |
| + int channels; |
| int in_dtx_mode; |
| + // Count consecutive zeros during DTX. We break long zero segment to prevent |
| + // DTX from going wrong. |
| + size_t* zero_counts; |
|
kwiberg-webrtc
2015/10/29 16:35:21
What is this number more exactly? The number of co
minyue-webrtc
2015/10/30 14:06:46
I made some change in wording. I hope it is cleare
|
| }; |
| struct WebRtcOpusDecInst { |