Index: Source/modules/webaudio/AudioContext.cpp |
diff --git a/Source/modules/webaudio/AudioContext.cpp b/Source/modules/webaudio/AudioContext.cpp |
index 6e4ddf65add102016812c4947f32b902ee144636..07d5e5eecb311820187e2930813cdea544cc3c39 100644 |
--- a/Source/modules/webaudio/AudioContext.cpp |
+++ b/Source/modules/webaudio/AudioContext.cpp |
@@ -80,9 +80,7 @@ namespace WebCore { |
bool AudioContext::isSampleRateRangeGood(float sampleRate) |
{ |
- // FIXME: It would be nice if the minimum sample-rate could be less than 44.1KHz, |
- // but that will require some fixes in HRTFPanner::fftSizeForSampleRate(), and some testing there. |
- return sampleRate >= 44100 && sampleRate <= 96000; |
+ return sampleRate >= 22050 && sampleRate <= 96000; |
} |
// Don't allow more than this number of simultaneous AudioContexts talking to hardware. |