diff options
| author | 2012-02-09 15:17:27 -0800 | |
|---|---|---|
| committer | 2012-02-09 15:17:27 -0800 | |
| commit | 468a971512f4665b13e83cc3c7dc24c9031b14eb (patch) | |
| tree | bb42ec4869adeb46f3c29030472aae3047fb253d /libs/rs/rsThreadIO.cpp | |
| parent | 8f0f10a80a89b2071b949f13ac6ff23514366d23 (diff) | |
| parent | 87e2721f89a7210c4382a2b444ade64f4a50f739 (diff) | |
Merge "Remove unused param."
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 *))) { |