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

Side by Side Diff: webrtc/logging/rtc_event_log/rtc_event_log2rtp_dump.cc

Issue 2380683005: Moved RtcEventLog files from call/ to logging/ (new top level dir) (Closed)
Patch Set: Rebase to master Created 4 years, 2 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 <memory>
13 #include <sstream> 13 #include <sstream>
14 #include <string> 14 #include <string>
15 15
16 #include "gflags/gflags.h" 16 #include "gflags/gflags.h"
17 #include "webrtc/base/checks.h" 17 #include "webrtc/base/checks.h"
18 #include "webrtc/call.h" 18 #include "webrtc/call.h"
19 #include "webrtc/call/rtc_event_log.h" 19 #include "webrtc/logging/rtc_event_log/rtc_event_log.h"
20 #include "webrtc/call/rtc_event_log_parser.h" 20 #include "webrtc/logging/rtc_event_log/rtc_event_log_parser.h"
21 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" 21 #include "webrtc/modules/rtp_rtcp/source/byte_io.h"
22 #include "webrtc/test/rtp_file_writer.h" 22 #include "webrtc/test/rtp_file_writer.h"
23 23
24 namespace { 24 namespace {
25 25
26 DEFINE_bool(noaudio, 26 DEFINE_bool(noaudio,
27 false, 27 false,
28 "Excludes audio packets from the converted RTPdump file."); 28 "Excludes audio packets from the converted RTPdump file.");
29 DEFINE_bool(novideo, 29 DEFINE_bool(novideo,
30 false, 30 false,
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 177
178 rtp_writer->WritePacket(&packet); 178 rtp_writer->WritePacket(&packet);
179 rtcp_counter++; 179 rtcp_counter++;
180 } 180 }
181 } 181 }
182 std::cout << "Wrote " << rtp_counter << (header_only ? " header-only" : "") 182 std::cout << "Wrote " << rtp_counter << (header_only ? " header-only" : "")
183 << " RTP packets and " << rtcp_counter << " RTCP packets to the " 183 << " RTP packets and " << rtcp_counter << " RTCP packets to the "
184 << "output file." << std::endl; 184 << "output file." << std::endl;
185 return 0; 185 return 0;
186 } 186 }
OLDNEW
« no previous file with comments | « webrtc/logging/rtc_event_log/rtc_event_log.proto ('k') | webrtc/logging/rtc_event_log/rtc_event_log_helper_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698