File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/AudioTools/AudioCodecs Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ class DecoderALAC : public AudioDecoder {
8888
8989 // / we expect the write is called for a complete frame!
9090 size_t write (const uint8_t * encodedFrame, size_t encodedLen) override {
91- LOGI (" DecoderALAC::write: %d" , (int )encodedLen);
91+ LOGD (" DecoderALAC::write: %d" , (int )encodedLen);
9292 // Safety check
9393 if (!is_init) {
9494 LOGE (" Decoder not initialized" );
@@ -256,7 +256,7 @@ class EncoderALAC : public AudioEncoder {
256256 // / Encode the audio samples into ALAC format
257257 size_t write (const uint8_t * data, size_t len) override {
258258 if (!is_started) return 0 ;
259- LOGI (" EncoderALAC::write: %d" , (int )len);
259+ LOGD (" EncoderALAC::write: %d" , (int )len);
260260 for (int j = 0 ; j < len; j++) {
261261 in_buffer.write (data[j]);
262262 if (in_buffer.isFull ()) {
You can’t perform that action at this time.
0 commit comments