| Index: webrtc/api/call/audio_send_stream.h
|
| diff --git a/webrtc/api/call/audio_send_stream.h b/webrtc/api/call/audio_send_stream.h
|
| index 658c9de37165a06e200b442e7417f6bc1620a983..44b6771a6530ce8518f1ff7e975afc16803388bf 100644
|
| --- a/webrtc/api/call/audio_send_stream.h
|
| +++ b/webrtc/api/call/audio_send_stream.h
|
| @@ -15,6 +15,7 @@
|
| #include <string>
|
| #include <vector>
|
|
|
| +#include "webrtc/base/optional.h"
|
| #include "webrtc/config.h"
|
| #include "webrtc/modules/audio_coding/codecs/audio_encoder.h"
|
| #include "webrtc/transport.h"
|
| @@ -31,6 +32,7 @@ class AudioSendStream {
|
| public:
|
| struct Stats {
|
| Stats();
|
| + ~Stats();
|
|
|
| // TODO(solenberg): Harmonize naming and defaults with receive stream stats.
|
| uint32_t local_ssrc = 0;
|
| @@ -39,6 +41,7 @@ class AudioSendStream {
|
| int32_t packets_lost = -1;
|
| float fraction_lost = -1.0f;
|
| std::string codec_name;
|
| + rtc::Optional<uint32_t> codec_payload_type;
|
| int32_t ext_seqnum = -1;
|
| int32_t jitter_ms = -1;
|
| int64_t rtt_ms = -1;
|
|
|