Index: webrtc/modules/audio_coding/codecs/audio_format.h |
diff --git a/webrtc/modules/audio_coding/codecs/audio_format.h b/webrtc/modules/audio_coding/codecs/audio_format.h |
index 9b971778f8fff42aa04c170688aa841ce022eaf9..43f82dcf04153dc0c24f31227b0f9d775a84dc76 100644 |
--- a/webrtc/modules/audio_coding/codecs/audio_format.h |
+++ b/webrtc/modules/audio_coding/codecs/audio_format.h |
@@ -39,12 +39,17 @@ struct SdpAudioFormat { |
int clockrate_hz; |
int num_channels; |
Parameters parameters; |
- // Parameters feedback_parameters; ?? |
}; |
void swap(SdpAudioFormat& a, SdpAudioFormat& b); |
std::ostream& operator<<(std::ostream& os, const SdpAudioFormat& saf); |
+struct AudioCodecSpec { |
+ SdpAudioFormat format; |
+ bool allow_comfort_noise; // This encoder can be used with an external |
+ // comfort noise generator. |
+}; |
+ |
} // namespace webrtc |
#endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_AUDIO_FORMAT_H_ |