aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Wu <85952307+robertwu1@users.noreply.github.com>2023-02-17 19:02:34 +0000
committerGitHub <noreply@github.com>2023-02-17 11:02:34 -0800
commite0f24a024b2622deaaf14ce104fa6265006cbd72 (patch)
tree4b9705f5ff37b8f28172a00420a8590613ed1fb9
parenta3a972f4eb28e6325217efd69f796465cae3a668 (diff)
downloadoboe-e0f24a024b2622deaaf14ce104fa6265006cbd72.tar.gz
Comment out unused channelCount parameter (#1708)
Helps solve a build error in aosp/2441525
-rw-r--r--apps/OboeTester/app/src/main/cpp/analyzer/LatencyAnalyzer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/OboeTester/app/src/main/cpp/analyzer/LatencyAnalyzer.h b/apps/OboeTester/app/src/main/cpp/analyzer/LatencyAnalyzer.h
index a6a572f1..b920c89d 100644
--- a/apps/OboeTester/app/src/main/cpp/analyzer/LatencyAnalyzer.h
+++ b/apps/OboeTester/app/src/main/cpp/analyzer/LatencyAnalyzer.h
@@ -549,7 +549,7 @@ public:
ALOGD("latency: st = %d = %s", mState, convertStateToText(mState));
}
- result_code processInputFrame(const float *frameData, int channelCount) override {
+ result_code processInputFrame(const float *frameData, int /* channelCount */) override {
echo_state nextState = mState;
mLoopCounter++;
float input = frameData[0];