summaryrefslogtreecommitdiff
path: root/src/audio
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2024-02-28 21:21:23 +1100
committerjacqueline <me@jacqueline.id.au>2024-02-28 21:21:23 +1100
commit77145e56f4062cd060ee7fa0af9ad1a2e46df5b1 (patch)
tree76a1e6734cd92d47362f2c04b539f20b47492641 /src/audio
parentf54347794f45261e0c0fde1104a70d1063c77305 (diff)
downloadtangara-fw-77145e56f4062cd060ee7fa0af9ad1a2e46df5b1.tar.gz
basic working flac and mp3 seeking
flac impl is fairly slow as it doesn't use the seek tables; for some reason miniflac seems to get *really* upset if you seek the stream.
Diffstat (limited to 'src/audio')
-rw-r--r--src/audio/audio_decoder.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/audio/audio_decoder.cpp b/src/audio/audio_decoder.cpp
index 6c26dec8..68a8a86b 100644
--- a/src/audio/audio_decoder.cpp
+++ b/src/audio/audio_decoder.cpp
@@ -167,7 +167,6 @@ auto Decoder::BeginDecoding(std::shared_ptr<TaggedStream> stream) -> bool {
auto Decoder::ContinueDecoding() -> bool {
auto res = codec_->DecodeTo(codec_buffer_);
if (res.has_error()) {
- ESP_LOGI(kTag, "RAN INTO DECODING ERROR");
return true;
}