Rename FATAL() into RTC_FATAL().

No-Try: True
Bug: webrtc:8454
Change-Id: I9130487a92463a2128cf1493e6c5117b2fab313a
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/193703
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#32620}
This commit is contained in:
Mirko Bonadei
2020-11-17 14:50:54 +01:00
committed by Commit Bot
parent 11ab77d14f
commit 9653d26f8e
10 changed files with 28 additions and 27 deletions

View File

@ -51,12 +51,12 @@ void DefaultNetEqTestErrorCallback::OnInsertPacketError(
const NetEqInput::PacketData& packet) {
std::cerr << "InsertPacket returned an error." << std::endl;
std::cerr << "Packet data: " << packet.ToString() << std::endl;
FATAL();
RTC_FATAL();
}
void DefaultNetEqTestErrorCallback::OnGetAudioError() {
std::cerr << "GetAudio returned an error." << std::endl;
FATAL();
RTC_FATAL();
}
NetEqTest::NetEqTest(const NetEq::Config& config,