aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPhil Burk <philburk@google.com>2019-08-29 12:05:45 -0700
committerPhil Burk <philburk@google.com>2019-08-29 12:05:45 -0700
commit252abe0799f05c69dd0db53d2fed79133b7ea387 (patch)
treeadbce0f596ffa73ebad095e4a35e1a4b84f7349e /include
parent5927398b77bfbf36c571279b402e905a43f4cf35 (diff)
downloadoboe-252abe0799f05c69dd0db53d2fed79133b7ea387.tar.gz
OboeTester: fix SRC quality menu
Diffstat (limited to 'include')
-rw-r--r--include/oboe/AudioStreamBase.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/oboe/AudioStreamBase.h b/include/oboe/AudioStreamBase.h
index 1c62a141..21e75760 100644
--- a/include/oboe/AudioStreamBase.h
+++ b/include/oboe/AudioStreamBase.h
@@ -142,7 +142,7 @@ public:
/**
* @return whether and how Oboe can convert sample rates to achieve optimal results.
*/
- SampleRateConversionQuality getSampleRateConversionType() const {
+ SampleRateConversionQuality getSampleRateConversionQuality() const {
return mSampleRateConversionQuality;
}
@@ -191,7 +191,7 @@ protected:
// Control whether Oboe can convert data formats to achieve optimal results.
bool mFormatConversionAllowed = false;
// Control whether and how Oboe can convert sample rates to achieve optimal results.
- SampleRateConversionQuality mSampleRateConversionQuality = SampleRateConversionQuality::None;
+ SampleRateConversionQuality mSampleRateConversionQuality = SampleRateConversionQuality::None;
};
} // namespace oboe