diff options
author | Max Kellermann <max@musicpd.org> | 2017-05-23 00:31:13 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2017-05-23 00:32:03 +0200 |
commit | ebecee3d8569f1a9b17ee86c626898f5ef059b77 (patch) | |
tree | 19d13a4c0ea08345a696caf86415a59a5431d0e0 /src/output/Thread.cxx | |
parent | 194f733ca74cf5987aa783f165499ded9c56ce88 (diff) |
output/Internal: move "client" to struct AudioOutputControl
Diffstat (limited to 'src/output/Thread.cxx')
-rw-r--r-- | src/output/Thread.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output/Thread.cxx b/src/output/Thread.cxx index c9530b7ee..918d94b63 100644 --- a/src/output/Thread.cxx +++ b/src/output/Thread.cxx @@ -365,7 +365,7 @@ AudioOutputControl::Play() noexcept give it a chance to refill the pipe before it runs empty */ const ScopeUnlock unlock(mutex); - output->client->ChunksConsumed(); + client.ChunksConsumed(); n = 0; } @@ -374,7 +374,7 @@ AudioOutputControl::Play() noexcept } while (FillSourceOrClose()); const ScopeUnlock unlock(mutex); - output->client->ChunksConsumed(); + client.ChunksConsumed(); return true; } |