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

Side by Side Diff: media/cast/net/rtp/frame_id_map.h

Issue 388663003: Cast: Reshuffle files under media/cast (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: missing includes Created 6 years, 5 months 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
« no previous file with comments | « media/cast/net/rtp/frame_buffer_unittest.cc ('k') | media/cast/net/rtp/frame_id_map.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef MEDIA_CAST_FRAMER_FRAME_ID_MAP_H_ 5 #ifndef MEDIA_CAST_FRAMER_FRAME_ID_MAP_H_
6 #define MEDIA_CAST_FRAMER_FRAME_ID_MAP_H_ 6 #define MEDIA_CAST_FRAMER_FRAME_ID_MAP_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 10
11 #include "base/memory/linked_ptr.h" 11 #include "base/memory/linked_ptr.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "media/cast/cast_config.h" 13 #include "media/cast/cast_config.h"
14 #include "media/cast/rtcp/rtcp_defines.h" 14 #include "media/cast/net/rtcp/rtcp_defines.h"
15 #include "media/cast/rtp_receiver/rtp_receiver_defines.h" 15 #include "media/cast/net/rtp/rtp_receiver_defines.h"
16 16
17 namespace media { 17 namespace media {
18 namespace cast { 18 namespace cast {
19 19
20 class FrameInfo { 20 class FrameInfo {
21 public: 21 public:
22 FrameInfo(uint32 frame_id, 22 FrameInfo(uint32 frame_id,
23 uint32 referenced_frame_id, 23 uint32 referenced_frame_id,
24 uint16 max_packet_id, 24 uint16 max_packet_id,
25 bool key_frame); 25 bool key_frame);
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 uint32 last_released_frame_; 81 uint32 last_released_frame_;
82 uint32 newest_frame_id_; 82 uint32 newest_frame_id_;
83 83
84 DISALLOW_COPY_AND_ASSIGN(FrameIdMap); 84 DISALLOW_COPY_AND_ASSIGN(FrameIdMap);
85 }; 85 };
86 86
87 } // namespace cast 87 } // namespace cast
88 } // namespace media 88 } // namespace media
89 89
90 #endif // MEDIA_CAST_FRAMER_FRAME_ID_MAP_H_ 90 #endif // MEDIA_CAST_FRAMER_FRAME_ID_MAP_H_
OLDNEW
« no previous file with comments | « media/cast/net/rtp/frame_buffer_unittest.cc ('k') | media/cast/net/rtp/frame_id_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698