summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2013-12-19 16:34:04 -0800
committerGlenn Kasten <gkasten@google.com>2013-12-19 17:17:58 -0800
commit7c7be1e05634d96d08210efb4bdeb012ffba440d (patch)
tree662376e86a6d2890e18066065fd8cb031bcb6be4 /include
parentbd72d22097f78f5bd668b223bc8c94e351311e31 (diff)
downloadframeworks_av-7c7be1e05634d96d08210efb4bdeb012ffba440d.zip
frameworks_av-7c7be1e05634d96d08210efb4bdeb012ffba440d.tar.gz
frameworks_av-7c7be1e05634d96d08210efb4bdeb012ffba440d.tar.bz2
Fix some (but not all) unused parameter warnings
Change-Id: Ia99e23a0b46db3f3e6aa46f9018e63c14f4af369
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);