| OLD | NEW | 
|---|
| 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/base/ignore_wundef.h" | 
| 18 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" | 19 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" | 
| 19 #include "webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h" | 20 #include "webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h" | 
| 20 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" | 21 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" | 
| 21 #include "webrtc/rtc_base/ignore_wundef.h" |  | 
| 22 #include "webrtc/video_receive_stream.h" | 22 #include "webrtc/video_receive_stream.h" | 
| 23 #include "webrtc/video_send_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 | 
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 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_ | 
| OLD | NEW | 
|---|