summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Laurent <elaurent@google.com>2013-01-18 02:08:52 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-01-18 02:08:52 +0000
commit5faf610fa384a81dbefb7ac67d2452216e3acead (patch)
treeaad7da514c31c7bfe4f64506ce050c8bc46499da
parent2ba042ff8a8bb5aa0320580119771e11e64ba2cd (diff)
parent2592f6e68edbed386e004d5b045233f15e7b9ba1 (diff)
downloadframeworks_av-5faf610fa384a81dbefb7ac67d2452216e3acead.zip
frameworks_av-5faf610fa384a81dbefb7ac67d2452216e3acead.tar.gz
frameworks_av-5faf610fa384a81dbefb7ac67d2452216e3acead.tar.bz2
Merge "AudioFlinger: fix build with debug log enabled"
-rw-r--r--services/audioflinger/Threads.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/audioflinger/Threads.cpp b/services/audioflinger/Threads.cpp
index 783327f..744a7df 100644
--- a/services/audioflinger/Threads.cpp
+++ b/services/audioflinger/Threads.cpp
@@ -2589,7 +2589,7 @@ AudioFlinger::PlaybackThread::mixer_state AudioFlinger::MixerThread::prepareTrac
// the minimum track buffer size is normally twice the number of frames necessary
// to fill one buffer and the resampler should not leave more than one buffer worth
// of unreleased frames after each pass, but just in case...
- ALOG_ASSERT(minFrames <= cblk->frameCount);
+ ALOG_ASSERT(minFrames <= cblk->frameCount_);
}
}
if ((track->framesReady() >= minFrames) && track->isReady() &&