summaryrefslogtreecommitdiffstats
path: root/include/media/AudioRecord.h
diff options
context:
space:
mode:
authorEric Laurent <elaurent@google.com>2009-07-07 09:36:14 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2009-07-07 09:36:14 -0700
commit349dba337e07e129f6ba49a132999f0b73fedbe3 (patch)
tree8bd3262593f56c5fce1d6bced18f9f26a8220934 /include/media/AudioRecord.h
parent82827d70378961f30077d3a35a06aab58c368d52 (diff)
parent573266210fb2b2e7d86fbd46d0dfe16763611d91 (diff)
downloadframeworks_av-349dba337e07e129f6ba49a132999f0b73fedbe3.zip
frameworks_av-349dba337e07e129f6ba49a132999f0b73fedbe3.tar.gz
frameworks_av-349dba337e07e129f6ba49a132999f0b73fedbe3.tar.bz2
am 88e209dc: Fix issue 1743700: AudioTrack: setPlaybackRate can not set the playback rate to twice of the ouputSR
Merge commit '88e209dcf8c2ebddda5c272f46d1bd5478bc639c' * commit '88e209dcf8c2ebddda5c272f46d1bd5478bc639c': Fix issue 1743700: AudioTrack: setPlaybackRate can not set the playback rate to twice of the ouputSR
Diffstat (limited to 'include/media/AudioRecord.h')
-rw-r--r--include/media/AudioRecord.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/media/AudioRecord.h b/include/media/AudioRecord.h
index 106807e..83ff508 100644
--- a/include/media/AudioRecord.h
+++ b/include/media/AudioRecord.h
@@ -197,7 +197,6 @@ public:
/* getters, see constructor */
- uint32_t sampleRate() const;
int format() const;
int channelCount() const;
uint32_t frameCount() const;
@@ -217,7 +216,7 @@ public:
status_t stop();
bool stopped() const;
- /* get sample rate for this track
+ /* get sample rate for this record track
*/
uint32_t getSampleRate();
@@ -323,7 +322,6 @@ private:
sp<ClientRecordThread> mClientRecordThread;
Mutex mRecordThreadLock;
- uint32_t mSampleRate;
uint32_t mFrameCount;
audio_track_cblk_t* mCblk;