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.

audio: Fix up most of the red from a79bdaf462

The rest involves some wrangling.

Change-Id: I5459c255677cbacf8cc8b0c28492d27c58971cb1

+11 -8
+7 -7
firmware/SOURCES
··· 165 165 target/hosted/surfans/button-f28.c 166 166 target/hosted/surfans/debug-f28.c 167 167 target/hosted/surfans/powermgmt-f28.c 168 - target/hosted/surfanslinux_codec.c 168 + target/hosted/surfans/surfanslinux_codec.c 169 169 #endif 170 170 171 171 #if (defined(XDUOO_X3II) || defined(XDUOO_X20)) && !defined(SIMULATOR) ··· 180 180 target/hosted/button-devinput.c 181 181 #endif 182 182 183 - #if (defined(FIIO_M3K_LINUX)) && !defined(SIMULATOR) 183 + #if defined(FIIO_M3K_LINUX) && !defined(SIMULATOR) 184 184 target/hosted/fiio/buttonlight-fiio.c 185 185 target/hosted/fiio/button-fiio.c 186 186 target/hosted/fiio/debug-fiio.c ··· 558 558 drivers/audio/es9218.c 559 559 #endif /* defined(HAVE_*) */ 560 560 #else /* PLATFORM_HOSTED */ 561 - #if defined(HAVE_AS3514) 562 - drivers/audio/as3514.c 563 - #elif defined(HAVE_WM8978) 564 - drivers/audio/wm8978.c 565 - #elif defined(HAVE_SDL_AUDIO) 561 + #if defined(HAVE_SDL_AUDIO) || defined(SIMULATOR) 566 562 drivers/audio/sdl.c 567 563 #if (CONFIG_PLATFORM & PLATFORM_MAEMO5) 568 564 target/hosted/maemo/pcm-gstreamer.c 569 565 #else 570 566 target/hosted/sdl/pcm-sdl.c 571 567 #endif /* (CONFIG_PLATFORM & PLATFORM_MAEMO) */ 568 + #elif defined(SAMSUNG_YPR0) && defined(HAVE_AS3514) 569 + drivers/audio/as3514.c 570 + #elif defined(SAMSUNG_YPR1) && defined(HAVE_WM8978) 571 + drivers/audio/wm8978.c 572 572 #elif defined(CTRU) 573 573 drivers/audio/ctru.c 574 574 #endif
+2
firmware/target/hosted/android/android_codec.h
··· 21 21 #ifndef __ANDROID_CODEC_H 22 22 #define __ANDROID_CODEC_H 23 23 24 + #define AUDIOHW_HAVE_MONO_VOLUME 25 + 24 26 /* Bass and treble tone controls */ 25 27 #ifdef AUDIOHW_HAVE_BASS 26 28 AUDIOHW_SETTING(BASS, "dB", 0, 1, -24, 24, 0)
+2 -1
firmware/target/hosted/surfans/surfanslinux_codec.h
··· 3 3 4 4 #define AUDIOHW_CAPS (FILTER_ROLL_OFF_CAP) 5 5 AUDIOHW_SETTING(VOLUME, "dB", 1, 5, -102*10, 0, -30*10) 6 - #endif 7 6 8 7 //#define AUDIOHW_MUTE_ON_STOP 9 8 #define AUDIOHW_MUTE_ON_SRATE_CHANGE ··· 15 14 void audiohw_mute(int mute); 16 15 void surfans_set_output(int ps); 17 16 int surfans_get_outputs(void); 17 + 18 + #endif /* __SURFANSLINUX__CODEC__ */