summaryrefslogtreecommitdiff
path: root/src/tangara/audio/audio_source.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tangara/audio/audio_source.cpp')
-rw-r--r--src/tangara/audio/audio_source.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/tangara/audio/audio_source.cpp b/src/tangara/audio/audio_source.cpp
index ee2f617f..4989c470 100644
--- a/src/tangara/audio/audio_source.cpp
+++ b/src/tangara/audio/audio_source.cpp
@@ -4,7 +4,7 @@
* SPDX-License-Identifier: GPL-3.0-only
*/
-#include "audio_source.hpp"
+#include "audio/audio_source.hpp"
#include "codec.hpp"
#include "types.hpp"
@@ -14,7 +14,11 @@ TaggedStream::TaggedStream(std::shared_ptr<database::TrackTags> t,
std::unique_ptr<codecs::IStream> w,
std::string filepath,
uint32_t offset)
- : codecs::IStream(w->type()), tags_(t), wrapped_(std::move(w)), filepath_(filepath), offset_(offset) {}
+ : codecs::IStream(w->type()),
+ tags_(t),
+ wrapped_(std::move(w)),
+ filepath_(filepath),
+ offset_(offset) {}
auto TaggedStream::tags() -> std::shared_ptr<database::TrackTags> {
return tags_;