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

Side by Side Diff: webrtc/modules/audio_coding/neteq/tools/rtp_file_source.cc

Issue 1335923002: Add RTC_ prefix to (D)CHECKs and related macros. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase. Created 5 years, 3 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) 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
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
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
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.cc ('k') | webrtc/modules/audio_coding/neteq/tools/rtpcat.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698