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

Unified Diff: webrtc/test/fuzzers/audio_decoder_isacfix_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
« no previous file with comments | « webrtc/test/fuzzers/audio_decoder_isac_incoming_packet_fuzzer.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/test/fuzzers/audio_decoder_isacfix_fuzzer.cc
diff --git a/webrtc/test/fuzzers/audio_decoder_isacfix_fuzzer.cc b/webrtc/test/fuzzers/audio_decoder_isacfix_fuzzer.cc
index 25ab3f454ded804a2908204440f3e7dd8d8daa91..64cdccb2fc9b702aa856f80d7ec4d9340058bff7 100644
--- a/webrtc/test/fuzzers/audio_decoder_isacfix_fuzzer.cc
+++ b/webrtc/test/fuzzers/audio_decoder_isacfix_fuzzer.cc
@@ -16,7 +16,7 @@ void FuzzOneInput(const uint8_t* data, size_t size) {
static const int kSampleRateHz = 16000;
static const size_t kAllocatedOuputSizeSamples = 16000 / 10; // 100 ms.
int16_t output[kAllocatedOuputSizeSamples];
- AudioDecoderIsacFix dec(kSampleRateHz);
+ AudioDecoderIsacFixImpl dec(kSampleRateHz);
FuzzAudioDecoder(DecoderFunctionType::kNormalDecode, data, size, &dec,
kSampleRateHz, sizeof(output), output);
}
« no previous file with comments | « webrtc/test/fuzzers/audio_decoder_isac_incoming_packet_fuzzer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698