* 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:
wu@webrtc.org
2014-04-24 20:33:08 +00:00
parent 439a4c49f9
commit 93fd25c20c
6 changed files with 56 additions and 1 deletions

View File

@ -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: {