| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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 | 10 |
| 11 #ifndef WEBRTC_VIDEO_RTC_EVENT_LOG_H_ | 11 #ifndef WEBRTC_CALL_RTC_EVENT_LOG_H_ |
| 12 #define WEBRTC_VIDEO_RTC_EVENT_LOG_H_ | 12 #define WEBRTC_CALL_RTC_EVENT_LOG_H_ |
| 13 | 13 |
| 14 #include <string> | 14 #include <string> |
| 15 | 15 |
| 16 #include "webrtc/base/scoped_ptr.h" | 16 #include "webrtc/base/scoped_ptr.h" |
| 17 #include "webrtc/video_receive_stream.h" | 17 #include "webrtc/video_receive_stream.h" |
| 18 #include "webrtc/video_send_stream.h" | 18 #include "webrtc/video_send_stream.h" |
| 19 | 19 |
| 20 namespace webrtc { | 20 namespace webrtc { |
| 21 | 21 |
| 22 // Forward declaration of storage class that is automatically generated from | 22 // Forward declaration of storage class that is automatically generated from |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 virtual void LogAudioPlayout(uint32_t ssrc) = 0; | 68 virtual void LogAudioPlayout(uint32_t ssrc) = 0; |
| 69 | 69 |
| 70 // Reads an RtcEventLog file and returns true when reading was successful. | 70 // Reads an RtcEventLog file and returns true when reading was successful. |
| 71 // The result is stored in the given EventStream object. | 71 // The result is stored in the given EventStream object. |
| 72 static bool ParseRtcEventLog(const std::string& file_name, | 72 static bool ParseRtcEventLog(const std::string& file_name, |
| 73 rtclog::EventStream* result); | 73 rtclog::EventStream* result); |
| 74 }; | 74 }; |
| 75 | 75 |
| 76 } // namespace webrtc | 76 } // namespace webrtc |
| 77 | 77 |
| 78 #endif // WEBRTC_VIDEO_RTC_EVENT_LOG_H_ | 78 #endif // WEBRTC_CALL_RTC_EVENT_LOG_H_ |
| OLD | NEW |