| Index: webrtc/common_types.h
|
| diff --git a/webrtc/common_types.h b/webrtc/common_types.h
|
| index 803f2c263221aed64964fee391869086a7d26f5c..303c596943cbbdf4c54753975e1935c681fd0144 100644
|
| --- a/webrtc/common_types.h
|
| +++ b/webrtc/common_types.h
|
| @@ -299,6 +299,14 @@ class SendPacketObserver {
|
| uint32_t ssrc) = 0;
|
| };
|
|
|
| +// Callback, used to notify an observer when the overhead per packet
|
| +// has changed.
|
| +class OverheadObserver {
|
| + public:
|
| + virtual ~OverheadObserver() = default;
|
| + virtual void OnOverheadChanged(size_t overhead_bytes_per_packet) = 0;
|
| +};
|
| +
|
| // ==================================================================
|
| // Voice specific types
|
| // ==================================================================
|
|
|