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

Side by Side Diff: webrtc/call/rtc_event_log2rtp_dump.cc

Issue 1789903003: Replace scoped_ptr with unique_ptr in webrtc/call/ (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 9 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) 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 #include <iostream> 11 #include <iostream>
12 #include <memory>
12 #include <sstream> 13 #include <sstream>
13 #include <string> 14 #include <string>
14 15
15 #include "gflags/gflags.h" 16 #include "gflags/gflags.h"
16 #include "webrtc/base/checks.h" 17 #include "webrtc/base/checks.h"
17 #include "webrtc/base/scoped_ptr.h"
18 #include "webrtc/call/rtc_event_log.h" 18 #include "webrtc/call/rtc_event_log.h"
19 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" 19 #include "webrtc/modules/rtp_rtcp/source/byte_io.h"
20 #include "webrtc/test/rtp_file_writer.h" 20 #include "webrtc/test/rtp_file_writer.h"
21 21
22 // Files generated at build-time by the protobuf compiler. 22 // Files generated at build-time by the protobuf compiler.
23 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD 23 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD
24 #include "external/webrtc/webrtc/call/rtc_event_log.pb.h" 24 #include "external/webrtc/webrtc/call/rtc_event_log.pb.h"
25 #else 25 #else
26 #include "webrtc/call/rtc_event_log.pb.h" 26 #include "webrtc/call/rtc_event_log.pb.h"
27 #endif 27 #endif
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 if (!FLAGS_ssrc.empty()) 93 if (!FLAGS_ssrc.empty())
94 RTC_CHECK(ParseSsrc(FLAGS_ssrc, &ssrc_filter)) 94 RTC_CHECK(ParseSsrc(FLAGS_ssrc, &ssrc_filter))
95 << "Flag verification has failed."; 95 << "Flag verification has failed.";
96 96
97 webrtc::rtclog::EventStream event_stream; 97 webrtc::rtclog::EventStream event_stream;
98 if (!webrtc::RtcEventLog::ParseRtcEventLog(input_file, &event_stream)) { 98 if (!webrtc::RtcEventLog::ParseRtcEventLog(input_file, &event_stream)) {
99 std::cerr << "Error while parsing input file: " << input_file << std::endl; 99 std::cerr << "Error while parsing input file: " << input_file << std::endl;
100 return -1; 100 return -1;
101 } 101 }
102 102
103 rtc::scoped_ptr<webrtc::test::RtpFileWriter> rtp_writer( 103 std::unique_ptr<webrtc::test::RtpFileWriter> rtp_writer(
104 webrtc::test::RtpFileWriter::Create( 104 webrtc::test::RtpFileWriter::Create(
105 webrtc::test::RtpFileWriter::FileFormat::kRtpDump, output_file)); 105 webrtc::test::RtpFileWriter::FileFormat::kRtpDump, output_file));
106 106
107 if (!rtp_writer.get()) { 107 if (!rtp_writer.get()) {
108 std::cerr << "Error while opening output file: " << output_file 108 std::cerr << "Error while opening output file: " << output_file
109 << std::endl; 109 << std::endl;
110 return -1; 110 return -1;
111 } 111 }
112 112
113 std::cout << "Found " << event_stream.stream_size() 113 std::cout << "Found " << event_stream.stream_size()
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 } else { 198 } else {
199 std::cout << "Skipping malformed event." << std::endl; 199 std::cout << "Skipping malformed event." << std::endl;
200 } 200 }
201 } 201 }
202 } 202 }
203 std::cout << "Wrote " << rtp_counter << (header_only ? " header-only" : "") 203 std::cout << "Wrote " << rtp_counter << (header_only ? " header-only" : "")
204 << " RTP packets and " << rtcp_counter << " RTCP packets to the " 204 << " RTP packets and " << rtcp_counter << " RTCP packets to the "
205 << "output file." << std::endl; 205 << "output file." << std::endl;
206 return 0; 206 return 0;
207 } 207 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698