OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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 "webrtc/modules/audio_coding/neteq/tools/rtp_file_source.h" | 11 #include "webrtc/modules/audio_coding/neteq/tools/rtp_file_source.h" |
12 | 12 |
13 #include <assert.h> | 13 #include <assert.h> |
14 #include <string.h> | 14 #include <string.h> |
15 #ifdef WIN32 | 15 #ifdef WIN32 |
16 #include <winsock2.h> | 16 #include <winsock2.h> |
17 #else | 17 #else |
18 #include <netinet/in.h> | 18 #include <netinet/in.h> |
19 #endif | 19 #endif |
20 | 20 |
21 #include "webrtc/base/checks.h" | 21 #include "webrtc/base/checks.h" |
22 #include "webrtc/modules/audio_coding/neteq/tools/packet.h" | 22 #include "webrtc/modules/audio_coding/neteq/tools/packet.h" |
23 #include "webrtc/modules/rtp_rtcp/interface/rtp_header_parser.h" | 23 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" |
24 #include "webrtc/test/rtp_file_reader.h" | 24 #include "webrtc/test/rtp_file_reader.h" |
25 | 25 |
26 namespace webrtc { | 26 namespace webrtc { |
27 namespace test { | 27 namespace test { |
28 | 28 |
29 RtpFileSource* RtpFileSource::Create(const std::string& file_name) { | 29 RtpFileSource* RtpFileSource::Create(const std::string& file_name) { |
30 RtpFileSource* source = new RtpFileSource(); | 30 RtpFileSource* source = new RtpFileSource(); |
31 RTC_CHECK(source->OpenFile(file_name)); | 31 RTC_CHECK(source->OpenFile(file_name)); |
32 return source; | 32 return source; |
33 } | 33 } |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 rtp_reader_.reset(RtpFileReader::Create(RtpFileReader::kPcap, file_name)); | 93 rtp_reader_.reset(RtpFileReader::Create(RtpFileReader::kPcap, file_name)); |
94 if (!rtp_reader_) { | 94 if (!rtp_reader_) { |
95 FATAL() << "Couldn't open input file as either a rtpdump or .pcap. Note " | 95 FATAL() << "Couldn't open input file as either a rtpdump or .pcap. Note " |
96 "that .pcapng is not supported."; | 96 "that .pcapng is not supported."; |
97 } | 97 } |
98 return true; | 98 return true; |
99 } | 99 } |
100 | 100 |
101 } // namespace test | 101 } // namespace test |
102 } // namespace webrtc | 102 } // namespace webrtc |
OLD | NEW |