diff options
| author | jacqueline <me@jacqueline.id.au> | 2024-02-28 21:21:23 +1100 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2024-02-28 21:21:23 +1100 |
| commit | 77145e56f4062cd060ee7fa0af9ad1a2e46df5b1 (patch) | |
| tree | 76a1e6734cd92d47362f2c04b539f20b47492641 /src/audio | |
| parent | f54347794f45261e0c0fde1104a70d1063c77305 (diff) | |
| download | tangara-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.cpp | 1 |
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; } |
