summaryrefslogtreecommitdiff
path: root/src/audio/audio_decoder.cpp
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2023-06-15 10:34:41 +1000
committerjacqueline <me@jacqueline.id.au>2023-06-15 10:34:41 +1000
commit0024bb1dbe0df319bc7bf022f0c4614cc9c8e0ed (patch)
treebce86f22a5c0d0c69b6ee9479b3b515085b382cd /src/audio/audio_decoder.cpp
parenta2c1dfbabddc2b4abaf8bf27c9ed9d1b99594859 (diff)
downloadtangara-fw-0024bb1dbe0df319bc7bf022f0c4614cc9c8e0ed.tar.gz
Remove chatty loggin
Diffstat (limited to 'src/audio/audio_decoder.cpp')
-rw-r--r--src/audio/audio_decoder.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/audio/audio_decoder.cpp b/src/audio/audio_decoder.cpp
index 310f5740..abb94e85 100644
--- a/src/audio/audio_decoder.cpp
+++ b/src/audio/audio_decoder.cpp
@@ -157,17 +157,10 @@ auto AudioDecoder::Process(const std::vector<InputStream>& inputs,
return;
}
- ESP_LOGI(kTag, "enc read: %u", res.first);
-
codecs::ICodec::OutputInfo out_info = res.second.value();
output->add(out_info.bytes_written);
has_samples_to_send_ = !out_info.is_finished_writing;
- ESP_LOGI(kTag, "enc wrote: %u", out_info.bytes_written);
- if (out_info.is_finished_writing) {
- ESP_LOGI(kTag, "(write finished)");
- }
-
if (has_samples_to_send_) {
// We weren't able to fit all the generated samples into the output
// buffer. Stop trying; we'll finish up during the next pass.