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

Unified Diff: webrtc/modules/audio_processing/include/audio_processing.h

Issue 1338833002: Fix the maximum native sample rate in AudioProcessing (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_processing/include/audio_processing.h
diff --git a/webrtc/modules/audio_processing/include/audio_processing.h b/webrtc/modules/audio_processing/include/audio_processing.h
index 445d5c8c247886fbb8b7273ebc8ee48d9a433738..1408227474f8e91d5714f44a49c14facf110a5ba 100644
--- a/webrtc/modules/audio_processing/include/audio_processing.h
+++ b/webrtc/modules/audio_processing/include/audio_processing.h
@@ -128,7 +128,7 @@ struct Intelligibility {
bool enabled;
};
-static const int kAudioProcMaxNativeSampleRateHz = 32000;
+static const int kAudioProcMaxNativeSampleRateHz = 48000;
Andrew MacDonald 2015/09/11 18:06:23 Looks like this should only affect: https://code.g
aluebs-webrtc 2015/09/15 22:56:09 You were right, it was not working for 44100, than
// The Audio Processing Module (APM) provides a collection of voice processing
// components designed for real-time communications software.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698