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

Side by Side Diff: webrtc/logging/rtc_event_log/rtc_event_log_parser.h

Issue 3000253002: Move video send/receive stream headers to webrtc/call. (Closed)
Patch Set: Headers moved to 'webrtc/call' instead of 'webrtc/api'. Created 3 years, 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 #ifndef WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_PARSER_H_ 10 #ifndef WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_PARSER_H_
11 #define WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_PARSER_H_ 11 #define WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_PARSER_H_
12 12
13 #include <map> 13 #include <map>
14 #include <string> 14 #include <string>
15 #include <utility> // pair 15 #include <utility> // pair
16 #include <vector> 16 #include <vector>
17 17
18 #include "webrtc/call/video_receive_stream.h"
19 #include "webrtc/call/video_send_stream.h"
18 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" 20 #include "webrtc/logging/rtc_event_log/rtc_event_log.h"
19 #include "webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h" 21 #include "webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h"
20 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" 22 #include "webrtc/modules/rtp_rtcp/source/byte_io.h"
21 #include "webrtc/rtc_base/ignore_wundef.h" 23 #include "webrtc/rtc_base/ignore_wundef.h"
22 #include "webrtc/video_receive_stream.h"
23 #include "webrtc/video_send_stream.h"
24 24
25 // Files generated at build-time by the protobuf compiler. 25 // Files generated at build-time by the protobuf compiler.
26 RTC_PUSH_IGNORING_WUNDEF() 26 RTC_PUSH_IGNORING_WUNDEF()
27 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD 27 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD
28 #include "external/webrtc/webrtc/logging/rtc_event_log/rtc_event_log.pb.h" 28 #include "external/webrtc/webrtc/logging/rtc_event_log/rtc_event_log.pb.h"
29 #else 29 #else
30 #include "webrtc/logging/rtc_event_log/rtc_event_log.pb.h" 30 #include "webrtc/logging/rtc_event_log/rtc_event_log.pb.h"
31 #endif 31 #endif
32 RTC_POP_IGNORING_WUNDEF() 32 RTC_POP_IGNORING_WUNDEF()
33 33
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 203
204 // To find configured extensions map for given stream, what are needed to 204 // To find configured extensions map for given stream, what are needed to
205 // parse a header. 205 // parse a header.
206 typedef std::pair<uint32_t, webrtc::PacketDirection> StreamId; 206 typedef std::pair<uint32_t, webrtc::PacketDirection> StreamId;
207 std::map<StreamId, webrtc::RtpHeaderExtensionMap*> rtp_extensions_maps_; 207 std::map<StreamId, webrtc::RtpHeaderExtensionMap*> rtp_extensions_maps_;
208 }; 208 };
209 209
210 } // namespace webrtc 210 } // namespace webrtc
211 211
212 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_PARSER_H_ 212 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_PARSER_H_
OLDNEW
« webrtc/BUILD.gn ('K') | « webrtc/logging/BUILD.gn ('k') | webrtc/media/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698