summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuo Jinghua <sunmoon1997@gmail.com>2013-01-05 12:35:43 +0800
committerLuo Jinghua <sunmoon1997@gmail.com>2013-01-05 12:35:43 +0800
commit06abde77b6ad7f586a7c799c95fcba55ef8f2c7a (patch)
tree2e68d89761e0acc0e4ed4bf6ab041e3c54828250
parentda3db95be6fc7cf832fc4daa896bfc07d6804866 (diff)
Change buffer size to 8k for android
-rw-r--r--src/device_android.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device_android.cpp b/src/device_android.cpp
index cc21f4e..9ef38ca 100644
--- a/src/device_android.cpp
+++ b/src/device_android.cpp
@@ -16,7 +16,7 @@ namespace audiere {
int ret = AGAudioInit(44100, 2, 16);
if (ret < 0)
return 0;
- return new AndroidAudioDevice(44100, 4096);
+ return new AndroidAudioDevice(44100, 8192);
}