| Index: webrtc/modules/remote_bitrate_estimator/tools/rtp_to_text.cc
|
| diff --git a/webrtc/modules/remote_bitrate_estimator/tools/rtp_to_text.cc b/webrtc/modules/remote_bitrate_estimator/tools/rtp_to_text.cc
|
| index bf698728e8150f1eb999e694040c911b0847d06f..2b8c5b056c601f72a1d531c611976da14f1bc20e 100644
|
| --- a/webrtc/modules/remote_bitrate_estimator/tools/rtp_to_text.cc
|
| +++ b/webrtc/modules/remote_bitrate_estimator/tools/rtp_to_text.cc
|
| @@ -9,10 +9,11 @@
|
| */
|
|
|
| #include <stdio.h>
|
| +
|
| +#include <memory>
|
| #include <sstream>
|
|
|
| #include "webrtc/base/format_macros.h"
|
| -#include "webrtc/base/scoped_ptr.h"
|
| #include "webrtc/modules/remote_bitrate_estimator/tools/bwe_rtp.h"
|
| #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h"
|
| #include "webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h"
|
| @@ -26,8 +27,8 @@ int main(int argc, char** argv) {
|
| return -1;
|
| }
|
| bool arrival_time_only = (argc >= 5 && strncmp(argv[4], "-t", 2) == 0);
|
| - rtc::scoped_ptr<webrtc::test::RtpFileReader> rtp_reader(reader);
|
| - rtc::scoped_ptr<webrtc::RtpHeaderParser> rtp_parser(parser);
|
| + std::unique_ptr<webrtc::test::RtpFileReader> rtp_reader(reader);
|
| + std::unique_ptr<webrtc::RtpHeaderParser> rtp_parser(parser);
|
| fprintf(stdout, "seqnum timestamp ts_offset abs_sendtime recvtime "
|
| "markerbit ssrc size original_size\n");
|
| int packet_counter = 0;
|
|
|