Roc Toolkit internal modules
Roc Toolkit: real-time audio streaming
Loading...
Searching...
No Matches
poison_reader.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2019 Roc Streaming authors
3 *
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 */
8
9//! @file roc_audio/poison_reader.h
10//! @brief Poison reader.
11
12#ifndef ROC_AUDIO_POISON_READER_H_
13#define ROC_AUDIO_POISON_READER_H_
14
15#include "roc_audio/frame.h"
18
19namespace roc {
20namespace audio {
21
22//! Poisons audio frames before reading them.
24public:
25 //! Initialize.
27
28 //! Read audio frame.
29 virtual bool read(Frame&);
30
31private:
32 IFrameReader& reader_;
33};
34
35} // namespace audio
36} // namespace roc
37
38#endif // ROC_AUDIO_POISON_READER_H_
Audio frame.
Definition frame.h:25
Frame reader interface.
Poisons audio frames before reading them.
PoisonReader(IFrameReader &reader)
Initialize.
virtual bool read(Frame &)
Read audio frame.
Base class for non-copyable objects.
Definition noncopyable.h:23
Audio frame.
Frame reader interface.
Root namespace.
Non-copyable object.