Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

[FixRed] Reove HAVE_PITCHCONTROL from bootloaders, fix warble

Change-Id: I85a3580bd5fac881ca36efc260791d03f0b8c83a

+5 -3
+2
firmware/export/config.h
··· 1364 1364 #define HAVE_PCM_FULL_DUPLEX 1365 1365 #endif 1366 1366 1367 + #if !defined(BOOTLOADER) 1367 1368 #define HAVE_PITCHCONTROL 1369 + #endif 1368 1370 1369 1371 /* enable logging messages to disk*/ 1370 1372 #if !defined(BOOTLOADER) && !defined(__PCTOOL__)
+1 -1
firmware/sound.c
··· 637 637 638 638 audiohw_set_pitch(pitch); 639 639 /* filter out invalid by grabbing the value actually set */ 640 - global_status.resume_pitch = dsp_get_pitch(); 640 + global_status.resume_pitch = audiohw_get_pitch(); 641 641 } 642 642 643 643 int32_t sound_get_pitch(void)
+2 -2
lib/rbcodec/dsp/tdspeed.c
··· 27 27 #include "dsp-util.h" 28 28 #include "dsp_proc_entry.h" 29 29 #include "tdspeed.h" 30 - #ifdef ROCKBOX 30 + #if defined(ROCKBOX) && !defined(WARBLE) 31 31 #include "settings.h" 32 32 #endif 33 33 ··· 405 405 406 406 struct dsp_config *dsp = dsp_get_config(CODEC_IDX_AUDIO); 407 407 dsp_configure(dsp, TIMESTRETCH_SET_FACTOR, percent); 408 - #ifdef ROCKBOX /* filter out invalid by grabbing the value actually set */ 408 + #if defined(ROCKBOX) && !defined(WARBLE) /* filter out invalid by grabbing the value actually set */ 409 409 global_status.resume_speed = st->factor; 410 410 #endif 411 411 }