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

Side by Side Diff: media/cast/rtp_receiver/rtp_parser/rtp_parser.h

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 #ifndef MEDIA_CAST_RTP_RECEIVER_RTP_PARSER_RTP_PARSER_H_ 5 #ifndef MEDIA_CAST_RTP_RECEIVER_RTP_PARSER_RTP_PARSER_H_
6 #define MEDIA_CAST_RTP_RECEIVER_RTP_PARSER_RTP_PARSER_H_ 6 #define MEDIA_CAST_RTP_RECEIVER_RTP_PARSER_RTP_PARSER_H_
7 7
8 #include "media/cast/rtp_common/rtp_defines.h" 8 #include "media/cast/net/cast_net_defines.h"
9 #include "media/cast/rtp_receiver/rtp_receiver_defines.h"
9 10
10 namespace media { 11 namespace media {
11 namespace cast { 12 namespace cast {
12 13
13 class RtpData; 14 class RtpData;
14 15
15 struct RtpParserConfig { 16 struct RtpParserConfig {
16 RtpParserConfig() { 17 RtpParserConfig() {
17 ssrc = 0; 18 ssrc = 0;
18 payload_type = 0; 19 payload_type = 0;
(...skipping 27 matching lines...) Expand all
46 RtpData* data_callback_; 47 RtpData* data_callback_;
47 RtpParserConfig parser_config_; 48 RtpParserConfig parser_config_;
48 FrameIdWrapHelper frame_id_wrap_helper_; 49 FrameIdWrapHelper frame_id_wrap_helper_;
49 FrameIdWrapHelper reference_frame_id_wrap_helper_; 50 FrameIdWrapHelper reference_frame_id_wrap_helper_;
50 }; 51 };
51 52
52 } // namespace cast 53 } // namespace cast
53 } // namespace media 54 } // namespace media
54 55
55 #endif // MEDIA_CAST_RTP_RECEIVER_RTP_PARSER_RTP_PARSER_H_ 56 #endif // MEDIA_CAST_RTP_RECEIVER_RTP_PARSER_RTP_PARSER_H_
OLDNEW
« no previous file with comments | « media/cast/rtp_receiver/receiver_stats_unittest.cc ('k') | media/cast/rtp_receiver/rtp_parser/rtp_parser_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698