| 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 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 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/interface/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 CHECK(source->OpenFile(file_name)); | 31 RTC_CHECK(source->OpenFile(file_name)); |
| 32 return source; | 32 return source; |
| 33 } | 33 } |
| 34 | 34 |
| 35 RtpFileSource::~RtpFileSource() { | 35 RtpFileSource::~RtpFileSource() { |
| 36 } | 36 } |
| 37 | 37 |
| 38 bool RtpFileSource::RegisterRtpHeaderExtension(RTPExtensionType type, | 38 bool RtpFileSource::RegisterRtpHeaderExtension(RTPExtensionType type, |
| 39 uint8_t id) { | 39 uint8_t id) { |
| 40 assert(parser_.get()); | 40 assert(parser_.get()); |
| 41 return parser_->RegisterRtpHeaderExtension(type, id); | 41 return parser_->RegisterRtpHeaderExtension(type, id); |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 rtp_reader_.reset(RtpFileReader::Create(RtpFileReader::kPcap, file_name)); | 81 rtp_reader_.reset(RtpFileReader::Create(RtpFileReader::kPcap, file_name)); |
| 82 if (!rtp_reader_) { | 82 if (!rtp_reader_) { |
| 83 FATAL() << "Couldn't open input file as either a rtpdump or .pcap. Note " | 83 FATAL() << "Couldn't open input file as either a rtpdump or .pcap. Note " |
| 84 "that .pcapng is not supported."; | 84 "that .pcapng is not supported."; |
| 85 } | 85 } |
| 86 return true; | 86 return true; |
| 87 } | 87 } |
| 88 | 88 |
| 89 } // namespace test | 89 } // namespace test |
| 90 } // namespace webrtc | 90 } // namespace webrtc |
| OLD | NEW |