summaryrefslogtreecommitdiffstats
path: root/services/audioflinger/Threads.h
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2014-02-17 14:31:46 -0800
committerGlenn Kasten <gkasten@google.com>2014-02-18 12:57:27 -0800
commit4cc0a6a835c806d200ef83ef31fe5bef327c355c (patch)
tree2ad9fe27444e838f08acbae31d54cf4d1739b4a5 /services/audioflinger/Threads.h
parent25f4aa83efaa9179e65a20583a6d441de2c3ff3f (diff)
downloadframeworks_av-4cc0a6a835c806d200ef83ef31fe5bef327c355c.zip
frameworks_av-4cc0a6a835c806d200ef83ef31fe5bef327c355c.tar.gz
frameworks_av-4cc0a6a835c806d200ef83ef31fe5bef327c355c.tar.bz2
Multi-client recording continued
Remove mReqChannelCount and mReqSampleRate. Increase number of input frames needed for sample rate converter. Add TODO comments to investigate later. Fix bugs in sample rate conversion. Change-Id: I3aa54b862843d518b6e4ece9a7f52fd27d741629
Diffstat (limited to 'services/audioflinger/Threads.h')
-rw-r--r--services/audioflinger/Threads.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/services/audioflinger/Threads.h b/services/audioflinger/Threads.h
index 8d81174..fa3563c 100644
--- a/services/audioflinger/Threads.h
+++ b/services/audioflinger/Threads.h
@@ -861,8 +861,6 @@ public:
RecordThread(const sp<AudioFlinger>& audioFlinger,
AudioStreamIn *input,
- uint32_t sampleRate,
- audio_channel_mask_t channelMask,
audio_io_handle_t id,
audio_devices_t outDevice,
audio_devices_t inDevice
@@ -959,10 +957,6 @@ private:
// rolling index that is never cleared
int32_t mRsmpInRear; // last filled frame + 1
- // client's requested configuration, which may differ from the HAL configuration
- const uint32_t mReqChannelCount;
- const uint32_t mReqSampleRate;
-
// For dumpsys
const sp<NBAIO_Sink> mTeeSink;
};