diff options
| author | jacqueline <me@jacqueline.id.au> | 2023-08-07 18:22:15 +1000 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2023-08-07 18:22:15 +1000 |
| commit | c38754401b95642b5e61fd273c2adf7d76a829fe (patch) | |
| tree | 2dc23008f6b2b471ce54fbc61d96b7b8c508b0dd /src/audio/stream_info.cpp | |
| parent | a66c3428063017f2233b6b15d5ce6c920d5c9095 (diff) | |
| download | tangara-fw-c38754401b95642b5e61fd273c2adf7d76a829fe.tar.gz | |
Downscaling working!
Diffstat (limited to 'src/audio/stream_info.cpp')
| -rw-r--r-- | src/audio/stream_info.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/audio/stream_info.cpp b/src/audio/stream_info.cpp index 749e880e..73dbf91b 100644 --- a/src/audio/stream_info.cpp +++ b/src/audio/stream_info.cpp @@ -33,8 +33,7 @@ RawStream::RawStream(std::size_t size) RawStream::RawStream(std::size_t size, uint32_t caps) : info_(), buffer_size_(size), - buffer_(reinterpret_cast<std::byte*>( - heap_caps_malloc(size, caps))) { + buffer_(reinterpret_cast<std::byte*>(heap_caps_malloc(size, caps))) { assert(buffer_ != NULL); } |
