diff options
author | Glenn Kasten <gkasten@google.com> | 2015-03-20 08:55:02 -0700 |
---|---|---|
committer | Glenn Kasten <gkasten@google.com> | 2015-03-23 14:51:28 -0700 |
commit | 1d8b3b684f469f346c2e0d4420e25a23aa1dda55 (patch) | |
tree | a14ee945d4f796d05fa4fac6fe621a057705e1c5 /include/media | |
parent | 4c36d6f48f4eecacc148317f775f65961a4f03d2 (diff) | |
download | frameworks_av-1d8b3b684f469f346c2e0d4420e25a23aa1dda55.zip frameworks_av-1d8b3b684f469f346c2e0d4420e25a23aa1dda55.tar.gz frameworks_av-1d8b3b684f469f346c2e0d4420e25a23aa1dda55.tar.bz2 |
Remove AudioRecord::notificationFrames()
This API was unused, and is not present in AudioTrack
Change-Id: I66a1eedc149af085269c0f438c3c8d4e226a0e5b
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/AudioRecord.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/media/AudioRecord.h b/include/media/AudioRecord.h index c503f25..f6832c9 100644 --- a/include/media/AudioRecord.h +++ b/include/media/AudioRecord.h @@ -249,11 +249,6 @@ public: */ uint32_t getSampleRate() const { return mSampleRate; } - /* Return the notification frame count. - * This is approximately how often the callback is invoked, for transfer type TRANSFER_CALLBACK. - */ - size_t notificationFrames() const { return mNotificationFramesAct; } - /* Sets marker position. When record reaches the number of frames specified, * a callback with event type EVENT_MARKER is called. Calling setMarkerPosition * with marker == 0 cancels marker notification callback. |