X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Faudio_delay.h;h=5f3f89a6596d9037e86a1c217ce1f8008c60e20a;hb=323b8cbb0b95297fbd027ffdc4ea5003b59ef25f;hp=44e8c009b9464dcb205d03e931d3bff011328da9;hpb=e530b2e36d7646f7fd7bd0ca0ebcc0a40ddf52c1;p=dcpomatic.git diff --git a/src/lib/audio_delay.h b/src/lib/audio_delay.h index 44e8c009b..5f3f89a65 100644 --- a/src/lib/audio_delay.h +++ b/src/lib/audio_delay.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2015 Carl Hetherington + Copyright (C) 2015-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,21 +18,24 @@ */ -#include + +#include + class AudioBuffers; + /** @class AudioDelay - * @brief An audio delay line. + * @brief An audio delay line */ class AudioDelay { public: explicit AudioDelay (int samples); - boost::shared_ptr run (boost::shared_ptr in); + std::shared_ptr run (std::shared_ptr in); void flush (); private: - boost::shared_ptr _tail; + std::shared_ptr _tail; int _samples; };