X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Faudiographer%2Faudiographer%2Fsink.h;h=da9e7350eed125c6fd470c2f455291edb473d8f4;hb=c1bd70d8b085acf3895303459cbe50d7dcdd95fe;hp=e4248e8c33be80f605cd0d5d2cf84c3ed9123229;hpb=a882e96db1367c26660fd3d3079e9e3e19b1e149;p=ardour.git diff --git a/libs/audiographer/audiographer/sink.h b/libs/audiographer/audiographer/sink.h index e4248e8c33..da9e7350ee 100644 --- a/libs/audiographer/audiographer/sink.h +++ b/libs/audiographer/audiographer/sink.h @@ -17,17 +17,17 @@ template class /*LIBAUDIOGRAPHER_API*/ Sink { public: virtual ~Sink () {} - + /** Process given data. * The data can not be modified, so in-place processing is not allowed. * At least this function must be implemented by deriving classes */ virtual void process (ProcessContext const & context) = 0; - + /** Process given data * Data may be modified, so in place processing is allowed. * The default implementation calls the non-modifying version, - * so this function does not need to be overriden. + * so this function does not need to be overridden. * However, if the sink can do in-place processing, * overriding this is highly recommended. *