| 10 | namespace buffer { |
| 11 | |
| 12 | class FromStream : public FromVector { |
| 13 | public: |
| 14 | FromStream(const std::shared_ptr<stream::Stream>& stream, int64_t size = -1); |
| 15 | |
| 16 | private: |
| 17 | static std::vector<Sample> bufferize_( |
| 18 | std::shared_ptr<stream::Stream> stream, |
| 19 | int64_t size); |
| 20 | }; |
| 21 | |
| 22 | } // namespace buffer |
| 23 | } // namespace data |
nothing calls this directly
no outgoing calls
no test coverage detected