Increase kHasVoiceCountNear by one in audio_processing_unittest

I added more test cases here: https://codereview.webrtc.org/1862553002/
But one of these cases failed on Android64 Tests.
I am increasing a tolerance by 1 to make this test pass.

TBRing this, since the bot is red and it is a small fix.

TBR=peah@webrtc.org

Review URL: https://codereview.webrtc.org/1862933002 .

Cr-Commit-Position: refs/heads/master@{#12250}
This commit is contained in:
Alejandro Luebs 2016-04-05 18:16:54 -07:00
parent 40cbec5415
commit 2a5609de14

View File

@ -2174,7 +2174,7 @@ TEST_F(ApmTest, Process) {
// or generate a separate android reference.
#if defined(WEBRTC_ANDROID)
const int kHasVoiceCountOffset = 3;
const int kHasVoiceCountNear = 3;
const int kHasVoiceCountNear = 4;
const int kMaxOutputAverageOffset = 9;
const int kMaxOutputAverageNear = 9;
#else