| Index: webrtc/stats/rtcstats_objects.cc
|
| diff --git a/webrtc/stats/rtcstats_objects.cc b/webrtc/stats/rtcstats_objects.cc
|
| index 68b33f58c2514229345a6dbcb4364cab150437db..9a7ebede6e62aea5ba2384c14f54ec8c578c3c48 100644
|
| --- a/webrtc/stats/rtcstats_objects.cc
|
| +++ b/webrtc/stats/rtcstats_objects.cc
|
| @@ -72,10 +72,10 @@ RTCCertificateStats::~RTCCertificateStats() {
|
|
|
| WEBRTC_RTCSTATS_IMPL(RTCCodecStats, RTCStats, "codec",
|
| &payload_type,
|
| - &codec,
|
| + &mime_type,
|
| &clock_rate,
|
| &channels,
|
| - ¶meters,
|
| + &sdp_fmtp_line,
|
| &implementation);
|
|
|
| RTCCodecStats::RTCCodecStats(
|
| @@ -87,10 +87,10 @@ RTCCodecStats::RTCCodecStats(
|
| std::string&& id, int64_t timestamp_us)
|
| : RTCStats(std::move(id), timestamp_us),
|
| payload_type("payloadType"),
|
| - codec("codec"),
|
| + mime_type("mimeType"),
|
| clock_rate("clockRate"),
|
| channels("channels"),
|
| - parameters("parameters"),
|
| + sdp_fmtp_line("sdpFmtpLine"),
|
| implementation("implementation") {
|
| }
|
|
|
| @@ -98,10 +98,10 @@ RTCCodecStats::RTCCodecStats(
|
| const RTCCodecStats& other)
|
| : RTCStats(other.id(), other.timestamp_us()),
|
| payload_type(other.payload_type),
|
| - codec(other.codec),
|
| + mime_type(other.mime_type),
|
| clock_rate(other.clock_rate),
|
| channels(other.channels),
|
| - parameters(other.parameters),
|
| + sdp_fmtp_line(other.sdp_fmtp_line),
|
| implementation(other.implementation) {
|
| }
|
|
|
|
|