summaryrefslogtreecommitdiff
path: root/chromium/third_party/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc')
-rw-r--r--chromium/third_party/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/third_party/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc b/chromium/third_party/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc
index b83720d1a8f..1179f2e3b8b 100644
--- a/chromium/third_party/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc
+++ b/chromium/third_party/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc
@@ -86,9 +86,9 @@ void RemoteEstimatorProxy::IncomingPacket(int64_t arrival_time_ms,
RTC_LOG(LS_WARNING) << "Arrival time out of bounds: " << arrival_time_ms;
return;
}
- Packet packet = {.arrival_time = Timestamp::Millis(arrival_time_ms),
- .size = DataSize::Bytes(header.headerLength + payload_size),
- .ssrc = header.ssrc};
+ Packet packet = {/*.arrival_time =*/ Timestamp::Millis(arrival_time_ms),
+ /*.size =*/ DataSize::Bytes(header.headerLength + payload_size),
+ /*.ssrc =*/ header.ssrc};
if (header.extension.hasTransportSequenceNumber) {
packet.transport_sequence_number = header.extension.transportSequenceNumber;
}