summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2013-12-20 23:47:09 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-12-20 23:47:09 +0000
commita36ff9fdf912b54f639118578e8d9582e1d70dca (patch)
treea0dbef5641c2e6e51fdc09503f3a26cbade6d748 /include
parent73b61d3c2906d6d70a0843c1f0470f514c312956 (diff)
parent7c7be1e05634d96d08210efb4bdeb012ffba440d (diff)
downloadframeworks_av-a36ff9fdf912b54f639118578e8d9582e1d70dca.zip
frameworks_av-a36ff9fdf912b54f639118578e8d9582e1d70dca.tar.gz
frameworks_av-a36ff9fdf912b54f639118578e8d9582e1d70dca.tar.bz2
Merge "Fix some (but not all) unused parameter warnings"
Diffstat (limited to 'include')
-rw-r--r--include/media/AudioRecord.h2
-rw-r--r--include/media/AudioTrack.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/media/AudioRecord.h b/include/media/AudioRecord.h
index fb47448..b2e4518 100644
--- a/include/media/AudioRecord.h
+++ b/include/media/AudioRecord.h
@@ -422,7 +422,7 @@ private:
// NS_INACTIVE inactive so don't run again until re-started
// NS_NEVER never again
static const nsecs_t NS_WHENEVER = -1, NS_INACTIVE = -2, NS_NEVER = -3;
- nsecs_t processAudioBuffer(const sp<AudioRecordThread>& thread);
+ nsecs_t processAudioBuffer();
// caller must hold lock on mLock for all _l methods
status_t openRecord_l(size_t epoch);
diff --git a/include/media/AudioTrack.h b/include/media/AudioTrack.h
index e163f88..9f631cf 100644
--- a/include/media/AudioTrack.h
+++ b/include/media/AudioTrack.h
@@ -626,7 +626,7 @@ protected:
// NS_INACTIVE inactive so don't run again until re-started
// NS_NEVER never again
static const nsecs_t NS_WHENEVER = -1, NS_INACTIVE = -2, NS_NEVER = -3;
- nsecs_t processAudioBuffer(const sp<AudioTrackThread>& thread);
+ nsecs_t processAudioBuffer();
status_t processStreamEnd(int32_t waitCount);