diff options
author | Glenn Kasten <gkasten@google.com> | 2012-11-01 11:11:38 -0700 |
---|---|---|
committer | Glenn Kasten <gkasten@google.com> | 2012-11-01 12:19:25 -0700 |
commit | 8af901cdea0af7e536579dee6d56e69987035a01 (patch) | |
tree | 46df7448209503f57a43e8c63f2334edaaf80e04 /include/media/SoundPool.h | |
parent | 34238f2970c7630d173203662e0d572cc47b1ef7 (diff) | |
download | frameworks_av-8af901cdea0af7e536579dee6d56e69987035a01.zip frameworks_av-8af901cdea0af7e536579dee6d56e69987035a01.tar.gz frameworks_av-8af901cdea0af7e536579dee6d56e69987035a01.tar.bz2 |
Line length 100
Change-Id: Ib28fd7b9ce951a6933f006e7f8812ba617625530
Diffstat (limited to 'include/media/SoundPool.h')
-rw-r--r-- | include/media/SoundPool.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/media/SoundPool.h b/include/media/SoundPool.h index 002b045..7bf3069 100644 --- a/include/media/SoundPool.h +++ b/include/media/SoundPool.h @@ -65,8 +65,10 @@ public: sp<IMemory> getIMemory() { return mData; } // hack - void init(int numChannels, int sampleRate, audio_format_t format, size_t size, sp<IMemory> data ) { - mNumChannels = numChannels; mSampleRate = sampleRate; mFormat = format; mSize = size; mData = data; } + void init(int numChannels, int sampleRate, audio_format_t format, size_t size, + sp<IMemory> data ) { + mNumChannels = numChannels; mSampleRate = sampleRate; mFormat = format; mSize = size; + mData = data; } private: void init(); |