Skip to content

Commit

Permalink
revert increasing decoder out-rb size and task_prio
Browse files Browse the repository at this point in the history
  • Loading branch information
gnumpi committed Jun 17, 2024
1 parent 5f543d1 commit 8926065
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions esphome/components/adf_pipeline/adf_audio_sources.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ bool HTTPStreamReaderAndDecoder::init_adf_elements_() {
decoder_ = esp_decoder_init(&auto_dec_cfg, auto_decode, 10);
#else
mp3_decoder_cfg_t mp3_cfg = DEFAULT_MP3_DECODER_CONFIG();
mp3_cfg.out_rb_size = 256 * 1024;
mp3_cfg.task_prio = MP3_DECODER_TASK_PRIO; //2;
mp3_cfg.out_rb_size = 4 * 1024;
mp3_cfg.task_prio = 2;
decoder_ = mp3_decoder_init(&mp3_cfg);
#endif

Expand Down

0 comments on commit 8926065

Please sign in to comment.