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

Side by Side Diff: media/cast/net/rtp_sender/packet_storage/packet_storage.cc

Issue 112133002: Cast:Moving netwrok sender related code to a designated folder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: moving const' to .cc Created 7 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "media/cast/rtp_sender/packet_storage/packet_storage.h" 5 #include "media/cast/net/rtp_sender/packet_storage/packet_storage.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "media/cast/cast_defines.h" 10 #include "media/cast/cast_defines.h"
11 11
12 namespace media { 12 namespace media {
13 namespace cast { 13 namespace cast {
14 14
15 // Limit the max time delay to avoid frame id wrap around; 256 / 60 fps. 15 // Limit the max time delay to avoid frame id wrap around; 256 / 60 fps.
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 return false; 165 return false;
166 } 166 }
167 it->second->GetCopy(packets); 167 it->second->GetCopy(packets);
168 VLOG(1) << "Resend " << static_cast<int>(frame_id) 168 VLOG(1) << "Resend " << static_cast<int>(frame_id)
169 << ":" << packet_id; 169 << ":" << packet_id;
170 return true; 170 return true;
171 } 171 }
172 172
173 } // namespace cast 173 } // namespace cast
174 } // namespace media 174 } // namespace media
OLDNEW
« no previous file with comments | « media/cast/net/rtp_sender/packet_storage/packet_storage.h ('k') | media/cast/net/rtp_sender/packet_storage/packet_storage.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698