summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorEric Laurent <elaurent@google.com>2013-01-17 17:36:00 -0800
committerEric Laurent <elaurent@google.com>2013-01-17 17:40:38 -0800
commit3a948fceb6b59121cc2e5eeb458064150870ffde (patch)
tree6ecb6c8e785b2f4dc1a4aae297e680e09a7e7385 /services
parent45490af027a15af9fe0fdfca21f423c74cd8e4e9 (diff)
downloadframeworks_av-3a948fceb6b59121cc2e5eeb458064150870ffde.zip
frameworks_av-3a948fceb6b59121cc2e5eeb458064150870ffde.tar.gz
frameworks_av-3a948fceb6b59121cc2e5eeb458064150870ffde.tar.bz2
AudioFlinger: fix build with debug log enabled
Change-Id: Id397155ec884c41cb84b35462ea09a97a04d3ed2
Diffstat (limited to 'services')
-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() &&