* Add webrtc::VoERTP_RTCP::SetReceiveAudioLevelIndicationStatus.
* Cast rtp header extension to int in log in rtp_utility.cc. BUG=3237 TEST=try bots R=stefan@webrtc.org, xians@webrtc.org Review URL: https://webrtc-codereview.appspot.com/12129004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5975 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -472,7 +472,8 @@ void RTPHeaderParser::ParseOneByteExtensionHeader(
|
||||
RTPExtensionType type;
|
||||
if (ptrExtensionMap->GetType(id, &type) != 0) {
|
||||
// If we encounter an unknown extension, just skip over it.
|
||||
LOG(LS_WARNING) << "Failed to find extension id: " << id;
|
||||
LOG(LS_WARNING) << "Failed to find extension id: "
|
||||
<< static_cast<int>(id);
|
||||
} else {
|
||||
switch (type) {
|
||||
case kRtpExtensionTransmissionTimeOffset: {
|
||||
|
||||
Reference in New Issue
Block a user