Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(950)

Unified Diff: media/cast/framer/framer.cc

Issue 62843002: Cast: Added support for AES-CTR crypto. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed nits Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/cast/framer/framer.cc
diff --git a/media/cast/framer/framer.cc b/media/cast/framer/framer.cc
index fb16e6602179ad5322136e8905be154b39cc3a53..0482b7aef19c681671733f7609979060d38e149b 100644
--- a/media/cast/framer/framer.cc
+++ b/media/cast/framer/framer.cc
@@ -35,7 +35,7 @@ bool Framer::InsertPacket(const uint8* payload_data,
FrameList::iterator it = frames_.find(rtp_header.frame_id);
if (it == frames_.end()) {
// New frame.
- linked_ptr<FrameBuffer> frame_buffer(new FrameBuffer());
+ linked_ptr<FrameBuffer> frame_buffer(new FrameBuffer()); // TODO wrap count?
Alpha Left Google 2013/11/07 01:10:11 What does this mean?
pwestin 2013/11/07 17:16:04 I have a separate cl coming changing frame id to b
frame_buffer->InsertPacket(payload_data, payload_size, rtp_header);
frames_.insert(std::make_pair(rtp_header.frame_id, frame_buffer));
} else {

Powered by Google App Engine
This is Rietveld 408576698