diff options
Diffstat (limited to 'src/server')
-rw-r--r-- | src/server/BlockImpl.hpp | 6 | ||||
-rw-r--r-- | src/server/Broadcaster.cpp | 2 | ||||
-rw-r--r-- | src/server/ControlBindings.hpp | 2 |
3 files changed, 3 insertions, 7 deletions
diff --git a/src/server/BlockImpl.hpp b/src/server/BlockImpl.hpp index 15d5a46e..cfffcb96 100644 --- a/src/server/BlockImpl.hpp +++ b/src/server/BlockImpl.hpp @@ -92,11 +92,7 @@ public: /** Do whatever needs doing in the process thread before process() is called */ virtual void pre_process(ProcessContext& context); - /** Run the block for @a nframes input/output. - * - * @a start and @a end are transport times: end is not redundant in the case - * of varispeed, where end-start != nframes. - */ + /** Run for the block of time specified by `context`. */ virtual void process(ProcessContext& context) = 0; /** Do whatever needs doing in the process thread after process() is called */ diff --git a/src/server/Broadcaster.cpp b/src/server/Broadcaster.cpp index fa8624df..02ca9518 100644 --- a/src/server/Broadcaster.cpp +++ b/src/server/Broadcaster.cpp @@ -71,7 +71,7 @@ Broadcaster::set_broadcast(const Raul::URI& client, bool broadcast) _must_broadcast.store(!_broadcastees.empty()); } -/** Looks up the client with the given source @a uri (which is used as the +/** Looks up the client with the given source `uri` (which is used as the * unique identifier for registered clients). */ SPtr<Interface> diff --git a/src/server/ControlBindings.hpp b/src/server/ControlBindings.hpp index 57a361c2..19f7f7d6 100644 --- a/src/server/ControlBindings.hpp +++ b/src/server/ControlBindings.hpp @@ -78,7 +78,7 @@ public: void pre_process(ProcessContext& context, Buffer* control_in); void post_process(ProcessContext& context, Buffer* control_out); - /** Remove all bindings for @a path or children of @a path. + /** Remove all bindings for `path` or children of `path`. * The caller must safely drop the returned reference in the * post-processing thread after at least one process thread has run. */ |