diff options
author | 2012-02-09 14:36:14 -0800 | |
---|---|---|
committer | 2012-02-09 14:50:50 -0800 | |
commit | 87e2721f89a7210c4382a2b444ade64f4a50f739 (patch) | |
tree | 192322ba40483a90367b163bba918dc7092a1ef7 /libs/rs/rsThreadIO.cpp | |
parent | f4aaf1f56247289838f4bb25ee704196464be4f2 (diff) |
Remove unused param.
Change-Id: Idf26c3bf4eec7ed17dbfb99b40c314bce7996101
Diffstat (limited to 'libs/rs/rsThreadIO.cpp')
-rw-r--r-- | libs/rs/rsThreadIO.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libs/rs/rsThreadIO.cpp b/libs/rs/rsThreadIO.cpp index 8e4b9883a353..4f3057317ab9 100644 --- a/libs/rs/rsThreadIO.cpp +++ b/libs/rs/rsThreadIO.cpp @@ -89,7 +89,7 @@ void ThreadIO::setTimeoutCallback(void (*cb)(void *), void *dat, uint64_t timeou //mToCore.setTimeoutCallback(cb, dat, timeout); } -bool ThreadIO::playCoreCommands(Context *con, bool waitForCommand, int waitFd) { +bool ThreadIO::playCoreCommands(Context *con, int waitFd) { bool ret = false; uint8_t buf[2 * 1024]; @@ -132,7 +132,6 @@ bool ThreadIO::playCoreCommands(Context *con, bool waitForCommand, int waitFd) { if (con->props.mLogTimes) { con->timerSet(Context::RS_TIMER_INTERNAL); } - waitForCommand = false; //ALOGV("playCoreCommands 3 %i %i", cmd->cmdID, cmd->bytes); if (cmd->cmdID >= (sizeof(gPlaybackFuncs) / sizeof(void *))) { |