summaryrefslogtreecommitdiffstats
path: root/media/cast/framer
diff options
context:
space:
mode:
Diffstat (limited to 'media/cast/framer')
-rw-r--r--media/cast/framer/cast_message_builder.cc2
-rw-r--r--media/cast/framer/frame_id_map.cc2
-rw-r--r--media/cast/framer/framer.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/media/cast/framer/cast_message_builder.cc b/media/cast/framer/cast_message_builder.cc
index 7d89f74..ef864ba 100644
--- a/media/cast/framer/cast_message_builder.cc
+++ b/media/cast/framer/cast_message_builder.cc
@@ -57,7 +57,7 @@ void CastMessageBuilder::CompleteFrameReceived(uint32 frame_id,
BuildPacketList();
}
// Send cast message.
- VLOG(1) << "Send cast message Ack:" << static_cast<int>(frame_id);
+ VLOG(2) << "Send cast message Ack:" << static_cast<int>(frame_id);
cast_feedback_->CastFeedback(cast_msg_);
}
diff --git a/media/cast/framer/frame_id_map.cc b/media/cast/framer/frame_id_map.cc
index bd9b943..64c2284 100644
--- a/media/cast/framer/frame_id_map.cc
+++ b/media/cast/framer/frame_id_map.cc
@@ -76,7 +76,7 @@ bool FrameIdMap::InsertPacket(const RtpCastHeader& rtp_header, bool* complete) {
waiting_for_key_ = false;
}
- VLOG(1) << "InsertPacket frame:" << frame_id
+ VLOG(3) << "InsertPacket frame:" << frame_id
<< " packet:" << static_cast<int>(rtp_header.packet_id)
<< " max packet:" << static_cast<int>(rtp_header.max_packet_id);
diff --git a/media/cast/framer/framer.cc b/media/cast/framer/framer.cc
index b06e60f..e8464c1 100644
--- a/media/cast/framer/framer.cc
+++ b/media/cast/framer/framer.cc
@@ -45,7 +45,7 @@ bool Framer::InsertPacket(const uint8* payload_data,
if (complete) {
// ACK as soon as possible.
- VLOG(1) << "Complete frame " << static_cast<int>(rtp_header.frame_id);
+ VLOG(2) << "Complete frame " << static_cast<int>(rtp_header.frame_id);
cast_msg_builder_->CompleteFrameReceived(rtp_header.frame_id,
rtp_header.is_key_frame);
}