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

Unified Diff: webrtc/test/fuzzers/audio_decoder_isac_incoming_packet_fuzzer.cc

Issue 2996593002: Give Audio{De,En}coderIsac* an "Impl" suffix, to free up the original names (Closed)
Patch Set: rebase Created 3 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/test/fuzzers/audio_decoder_isac_incoming_packet_fuzzer.cc
diff --git a/webrtc/test/fuzzers/audio_decoder_isac_incoming_packet_fuzzer.cc b/webrtc/test/fuzzers/audio_decoder_isac_incoming_packet_fuzzer.cc
index 9e490d3d4ad968a5fa0e81305bdd958e79e21d18..9acebbbaae2a833b040d9ef554cbbbbb3f254c8c 100644
--- a/webrtc/test/fuzzers/audio_decoder_isac_incoming_packet_fuzzer.cc
+++ b/webrtc/test/fuzzers/audio_decoder_isac_incoming_packet_fuzzer.cc
@@ -13,7 +13,7 @@
namespace webrtc {
void FuzzOneInput(const uint8_t* data, size_t size) {
- AudioDecoderIsac dec(16000);
+ AudioDecoderIsacFloatImpl dec(16000);
FuzzAudioDecoderIncomingPacket(data, size, &dec);
}
} // namespace webrtc
« no previous file with comments | « webrtc/test/fuzzers/audio_decoder_isac_fuzzer.cc ('k') | webrtc/test/fuzzers/audio_decoder_isacfix_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698