diff options
author | Daniel Hillenbrand <codeworkx@cyanogenmod.org> | 2013-05-27 14:09:44 +0200 |
---|---|---|
committer | Daniel Hillenbrand <codeworkx@cyanogenmod.org> | 2013-05-27 14:09:44 +0200 |
commit | 0f3727e36a951f2b07f3651b544ba01440bf0606 (patch) | |
tree | 40a4de55bfe70e770c062caf79f6275bc24c539e /audio | |
parent | 850b646d59a836d7d8092793c27d9ab65bfd7fce (diff) | |
download | device_samsung_i9300-0f3727e36a951f2b07f3651b544ba01440bf0606.zip device_samsung_i9300-0f3727e36a951f2b07f3651b544ba01440bf0606.tar.gz device_samsung_i9300-0f3727e36a951f2b07f3651b544ba01440bf0606.tar.bz2 |
i9300: audio: fix capture period size and count
Change-Id: Ifca254e959f447a5794441ff0e6310a7f98e37c1
Diffstat (limited to 'audio')
-rw-r--r-- | audio/audio_hw.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/audio_hw.h b/audio/audio_hw.h index 4f0919a..7eabda0 100644 --- a/audio/audio_hw.h +++ b/audio/audio_hw.h @@ -32,8 +32,8 @@ #define PLAYBACK_PERIOD_COUNT 8 #define PLAYBACK_SHORT_PERIOD_COUNT 2 -#define CAPTURE_PERIOD_SIZE 1056 -#define CAPTURE_PERIOD_COUNT 2 +#define CAPTURE_PERIOD_SIZE 1024 +#define CAPTURE_PERIOD_COUNT 4 #define SHORT_PERIOD_SIZE 192 |